/usr/include/lxpanel/panel.h is in lxpanel-dev 0.9.3-1ubuntu3.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 | /*
* Copyright (C) 2006-2010 Hong Jen Yee (PCMan) <pcman.tw@gmail.com>
* 2006-2008 Jim Huang <jserv.tw@gmail.com>
* 2008 Fred Chien <fred@lxde.org>
* 2009-2010 Marty Jack <martyj19@comcast.net>
* 2010 Lajos Kamocsay <lajos@panka.com>
* 2012 Piotr Sipika <Piotr.Sipika@gmail.com>
* 2012 Michael Rawson <michaelrawson76@gmail.com>
* 2013 Henry Gebhardt <hsggebhardt@gmail.com>
* 2013 Rouslan <rouslan-k@users.sourceforge.net>
* 2014 Andriy Grytsenko <andrej@rep.kiev.ua>
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software Foundation,
* Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
*/
#ifndef __PANEL_H__
#define __PANEL_H__ 1
#include <X11/Xlib.h>
#include <gtk/gtk.h>
G_BEGIN_DECLS
/**
* LXPANEL_CHECK_VERSION
*
* A simple macro for plugins to check features.
*
* Since: 0.8.0
*/
#define LXPANEL_CHECK_VERSION(_a,_b,_c) \
(0 > _a || \
(0 == _a && 9 > _b) || \
(0 == _a && 9 == _b && 3 >= _c))
#define LX_TYPE_PANEL (lxpanel_get_type())
#define LXPANEL(obj) (G_TYPE_CHECK_INSTANCE_CAST((obj), \
LX_TYPE_PANEL, LXPanel))
#define LXPANEL_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST((klass), \
LX_TYPE_PANEL, LXPanelClass))
#define LX_IS_PANEL(obj) (G_TYPE_CHECK_INSTANCE_TYPE ((obj), \
LX_TYPE_PANEL))
extern GType lxpanel_get_type (void) G_GNUC_CONST;
/* A little trick to be compatible with some themes which rely on the
PanelToplevel class, so we use LXPanel as alias for PanelToplevel */
typedef struct _LXPanel LXPanel;
typedef struct _LXPanel PanelToplevel;
typedef struct _LXPanelClass PanelToplevelClass;
typedef struct _Panel Panel;
struct _LXPanel
{
GtkWindow window;
Panel *priv;
};
/**
* LXPanelClass:
* @parent_class: The parent class.
* @icon_size_changed: callback for "icon-size-changed" signal, emitted when
* icons size for panel is changed in the configuration dialog.
* @panel_font_changed: callback for "panel-font-changed" signal, emitted when
* custom font enabled, disabled or its metrics or color changed
* in the panel configuration dialog.
*/
struct _LXPanelClass
{
GtkWindowClass parent_class;
void (*icon_size_changed)(LXPanel *panel);
void (*panel_font_changed)(LXPanel *panel);
};
/**
* panel_apply_icon
* @w: a window to apply
*
* Sets appropriate icon as the window icon for @w.
*/
extern void panel_apply_icon(GtkWindow *w);
/**
* lxpanel_draw_label_text
* @p: a panel instance
* @label: a label widget
* @text: (allow-none): text for the label
* @bold: %TRUE if text should be bold
* @custom_size_factor: scale factor for font size
* @custom_color: %TRUE to use font color from panel settings
*
* Changes @label to contain @text with appropriate attributes using the
* panel @p settings.
*/
extern void lxpanel_draw_label_text(LXPanel * p, GtkWidget * label, const char * text,
gboolean bold, float custom_size_factor,
gboolean custom_color);
/**
* lxpanel_config_save
* @p: a panel instance
*
* Immediately saves current configuration for panel @p.
*/
void lxpanel_config_save(LXPanel *p); /* defined in configurator.c */
/* Accessors APIs for Panel* */
extern GtkOrientation panel_get_orientation(LXPanel *panel);
extern gint panel_get_icon_size(LXPanel *panel);
extern gint panel_get_height(LXPanel *panel);
extern Window panel_get_xwindow(LXPanel *panel);
extern gint panel_get_monitor(LXPanel *panel);
extern GtkStyle *panel_get_defstyle(LXPanel *panel);
extern GtkIconTheme *panel_get_icon_theme(LXPanel *panel);
extern gboolean panel_is_at_bottom(LXPanel *panel);
extern gboolean panel_is_dynamic(LXPanel *panel);
extern GtkWidget *panel_box_new(LXPanel *panel, gboolean homogeneous, gint spacing);
extern GtkWidget *panel_separator_new(LXPanel *panel);
G_END_DECLS
#endif
|