/usr/include/gnome-panel/libpanel-applet/panel-applet.h is in libpanel-applet-dev 1:3.18.2-1ubuntu1.
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 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 | /*
* panel-applet.h: panel applet writing API.
*
* Copyright (C) 2001 Sun Microsystems, Inc.
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Library General Public
* License as published by the Free Software Foundation; either
* version 2 of the License, or (at your option) any later version.
*
* This library 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
* Library General Public License for more details.
*
* You should have received a copy of the GNU Library General Public
* License along with this library; if not, see <http://www.gnu.org/licenses/>.
*
* Authors:
* Mark McLoughlin <mark@skynet.ie>
*/
#ifndef __PANEL_APPLET_H__
#define __PANEL_APPLET_H__
#include <glib.h>
#include <gtk/gtk.h>
G_BEGIN_DECLS
/**
* PanelAppletOrient:
* @PANEL_APPLET_ORIENT_UP: The #PanelApplet is on a horizontal panel, at the
* bottom of the screen. It is oriented towards the top of the screen.
* @PANEL_APPLET_ORIENT_DOWN: The #PanelApplet is on a horizontal panel, at the
* top of the screen. It is oriented towards the bottom of the screen.
* @PANEL_APPLET_ORIENT_LEFT: The #PanelApplet is on a vertical panel, at the
* right of the screen. It is oriented towards the left of the screen.
* @PANEL_APPLET_ORIENT_RIGHT: The #PanelApplet is on a vertical panel, at the
* left of the screen. It is oriented towards the right of the screen.
*
* Type defining the orientation of the applet. The values may seem backward
* (e.g. %PANEL_APPLET_ORIENT_RIGHT means the panel is on the left side), but
* this represents the direction the applet is oriented to.
**/
typedef enum {
PANEL_APPLET_ORIENT_UP,
PANEL_APPLET_ORIENT_DOWN,
PANEL_APPLET_ORIENT_LEFT,
PANEL_APPLET_ORIENT_RIGHT
} PanelAppletOrient;
/**
* PANEL_APPLET_ORIENT_FIRST:
*
* This macro is an alias for #PANEL_APPLET_ORIENT_UP
**/
#define PANEL_APPLET_ORIENT_FIRST PANEL_APPLET_ORIENT_UP
/**
* PANEL_APPLET_ORIENT_LAST:
*
* This macro is an alias for #PANEL_APPLET_ORIENT_RIGHT
**/
#define PANEL_APPLET_ORIENT_LAST PANEL_APPLET_ORIENT_RIGHT
#define PANEL_TYPE_APPLET (panel_applet_get_type ())
#define PANEL_APPLET(o) (G_TYPE_CHECK_INSTANCE_CAST ((o), PANEL_TYPE_APPLET, PanelApplet))
#define PANEL_APPLET_CLASS(k) (G_TYPE_CHECK_CLASS_CAST((k), PANEL_TYPE_APPLET, PanelAppletClass))
#define PANEL_IS_APPLET(o) (G_TYPE_CHECK_INSTANCE_TYPE ((o), PANEL_TYPE_APPLET))
#define PANEL_IS_APPLET_CLASS(k) (G_TYPE_CHECK_CLASS_TYPE ((k), PANEL_TYPE_APPLET))
#define PANEL_APPLET_GET_CLASS(o) (G_TYPE_INSTANCE_GET_CLASS ((o), PANEL_TYPE_APPLET, PanelAppletClass))
/**
* PanelAppletFlags:
* @PANEL_APPLET_FLAGS_NONE: No flags set.
* @PANEL_APPLET_EXPAND_MAJOR: On horizontal panels, the #PanelApplet will be
* allocated as much width as possible. On vertical panels, it will be
* allocated as much height as possible.
* @PANEL_APPLET_EXPAND_MINOR: On horizontal panels, the #PanelApplet will be
* allocated the full height of the panel. On vertical panels, it will be
* allocated the full width. Most applets should set this flag in order to use
* the full panel size and allow the applet to be Fitt's Law compliant.
* @PANEL_APPLET_HAS_HANDLE: The panel will draw a handle for the
* #PanelApplet. This handle will be usable to move the applet, and to open the
* context menu of the applet.
*
* Flags to be used with panel_applet_get_flags()/panel_applet_set_flags(), to
* indicate to the panel a specific behavior requested by the #PanelApplet.
**/
typedef enum {
PANEL_APPLET_FLAGS_NONE = 0,
PANEL_APPLET_EXPAND_MAJOR = 1 << 0,
PANEL_APPLET_EXPAND_MINOR = 1 << 1,
PANEL_APPLET_HAS_HANDLE = 1 << 2
} PanelAppletFlags;
/**
* PANEL_APPLET_FLAGS_ALL:
*
* A convenience macro that combines #PANEL_APPLET_EXPAND_MAJOR, #PANEL_APPLET_EXPAND_MINOR and
* #PANEL_APPLET_HAS_HANDLE from #PanelAppletFlags
**/
#define PANEL_APPLET_FLAGS_ALL (PANEL_APPLET_EXPAND_MAJOR | \
PANEL_APPLET_EXPAND_MINOR | \
PANEL_APPLET_HAS_HANDLE)
typedef struct _PanelApplet PanelApplet;
typedef struct _PanelAppletClass PanelAppletClass;
typedef struct _PanelAppletPrivate PanelAppletPrivate;
/**
* PanelAppletFactoryCallback:
* @applet: a newly-created #PanelApplet.
* @iid: identifier of the requested applet type.
* @user_data: user data.
*
* The type used for callbacks after. The callback will usually check that @iid
* is a valid applet type identifier for the applet factory, and will then fill
* @applet with widgets, connect to signals, etc.
*
* Returns: %TRUE if @iid is a valid applet type identifier for the applet
* factory and if the creation of @applet was successfully completed, %FALSE
* otherwise.
**/
typedef gboolean (*PanelAppletFactoryCallback) (PanelApplet *applet,
const gchar *iid,
gpointer user_data);
/**
* PanelApplet:
*
* #PanelApplet is an opaque data structure and can only be accessed using
* the following functions.
*/
struct _PanelApplet {
GtkEventBox event_box;
/*< private >*/
PanelAppletPrivate *priv;
};
/**
* PanelAppletClass:
* @event_box_class: The parent class.
* @change_orient: Signal is emitted when the orientation of applet
* has changed.
* @change_background: Signal is emmited when the background af applet
* has changed.
* @move_focus_out_of_applet: Signal is emmited when the focus is moved
* out of applet. This is an implementation detail.
*
* The class structure for the #PanelApplet class.
*/
struct _PanelAppletClass {
GtkEventBoxClass event_box_class;
void (*change_orient) (PanelApplet *applet,
PanelAppletOrient orient);
void (*change_background) (PanelApplet *applet,
cairo_pattern_t *pattern);
void (*move_focus_out_of_applet) (PanelApplet *frame,
GtkDirectionType direction);
};
GType panel_applet_get_type (void) G_GNUC_CONST;
PanelAppletOrient panel_applet_get_orient (PanelApplet *applet);
GtkOrientation panel_applet_get_gtk_orientation (PanelApplet *applet);
cairo_pattern_t *panel_applet_get_background (PanelApplet *applet);
void panel_applet_set_background_widget (PanelApplet *applet,
GtkWidget *widget);
GSettings *panel_applet_settings_new (PanelApplet *applet,
const char *schema);
PanelAppletFlags panel_applet_get_flags (PanelApplet *applet);
void panel_applet_set_flags (PanelApplet *applet,
PanelAppletFlags flags);
void panel_applet_set_size_hints (PanelApplet *applet,
const int *size_hints,
int n_elements,
int base_size);
gboolean panel_applet_get_locked_down (PanelApplet *applet);
void panel_applet_request_focus (PanelApplet *applet,
guint32 timestamp);
void panel_applet_setup_menu (PanelApplet *applet,
const gchar *xml,
GSimpleActionGroup *action_group,
const gchar *translation_domain);
void panel_applet_setup_menu_from_file (PanelApplet *applet,
const gchar *filename,
GSimpleActionGroup *action_group,
const gchar *translation_domain);
void panel_applet_setup_menu_from_resource (PanelApplet *applet,
const gchar *resource_path,
GSimpleActionGroup *action_group,
const gchar *translation_domain);
int panel_applet_factory_main (const gchar *factory_id,
GType applet_type,
PanelAppletFactoryCallback callback,
gpointer data);
int panel_applet_factory_setup_in_process (const gchar *factory_id,
GType applet_type,
PanelAppletFactoryCallback callback,
gpointer data);
/*
* These macros are getting a bit unwieldy.
*
* Things to define for these:
* + required if Native Language Support is enabled (ENABLE_NLS):
* GETTEXT_PACKAGE and GNOMELOCALEDIR
*/
#if !defined(ENABLE_NLS)
#define _PANEL_APPLET_SETUP_GETTEXT(call_textdomain) \
do { } while (0)
#else /* defined(ENABLE_NLS) */
#include <libintl.h>
#define _PANEL_APPLET_SETUP_GETTEXT(call_textdomain) \
do { \
bindtextdomain (GETTEXT_PACKAGE, GNOMELOCALEDIR); \
bind_textdomain_codeset (GETTEXT_PACKAGE, "UTF-8"); \
if (call_textdomain) \
textdomain (GETTEXT_PACKAGE); \
} while (0)
#endif /* !defined(ENABLE_NLS) */
/**
* PANEL_APPLET_OUT_PROCESS_FACTORY:
* @factory_id: identifier of an applet factory.
* @type: GType of the applet this factory creates.
* @callback: (scope call): a %PanelAppletFactoryCallback to be called
* when a new applet is created.
* @data: (closure): callback data.
*
* Convenience macro providing a main() function for an out-of-process applet.
* Internally, it will call panel_applet_factory_main() to create the
* @factory_id applet factory.
*
* Applet instances created by the applet factory will use @applet_type as
* GType. Unless you subclass #PanelApplet, you should use %PANEL_TYPE_APPLET
* as @applet_type.
*
* On creation of the applet instances, @callback is called to setup the
* applet. If @callback returns %FALSE, the creation of the applet instance is
* cancelled.
*
* It can only be used once, and is incompatible with the use of
* %PANEL_APPLET_IN_PROCESS_FACTORY and panel_applet_factory_main().
**/
#define PANEL_APPLET_OUT_PROCESS_FACTORY(factory_id, type, callback, data) \
int main (int argc, char *argv []) \
{ \
GOptionContext *context; \
GError *error; \
int retval; \
\
g_setenv ("UBUNTU_MENUPROXY", "0", TRUE); \
_PANEL_APPLET_SETUP_GETTEXT (TRUE); \
\
context = g_option_context_new (""); \
g_option_context_add_group (context, gtk_get_option_group (TRUE)); \
\
error = NULL; \
if (!g_option_context_parse (context, &argc, &argv, &error)) { \
if (error) { \
g_printerr ("Cannot parse arguments: %s.\n", \
error->message); \
g_error_free (error); \
} else \
g_printerr ("Cannot parse arguments.\n"); \
g_option_context_free (context); \
return 1; \
} \
\
gtk_init (&argc, &argv); \
\
retval = panel_applet_factory_main (factory_id, type, callback, data); \
g_option_context_free (context); \
\
return retval; \
}
/**
* PANEL_APPLET_IN_PROCESS_FACTORY:
* @factory_id: identifier of an applet factory.
* @type: GType of the applet this factory creates.
* @callback: (scope call): a %PanelAppletFactoryCallback to be called
* when a new applet is created.
* @data: (closure): callback data.
*
* Convenience macro providing the symbol needed to automatically register the
* @factory_id applet factory for an in-process applet.
*
* Applet instances created by the applet factory will use @applet_type as
* GType. Unless you subclass #PanelApplet, you should use %PANEL_TYPE_APPLET
* as @applet_type.
*
* On creation of the applet instances, @callback is called to setup the
* applet. If @callback returns %FALSE, the creation of the applet instance is
* cancelled.
*
* It can only be used once, and is incompatible with the use of
* %PANEL_APPLET_OUT_PROCESS_FACTORY and panel_applet_factory_main().
**/
#define PANEL_APPLET_IN_PROCESS_FACTORY(factory_id, type, callback, data) \
gboolean _panel_applet_shlib_factory (void); \
G_MODULE_EXPORT gint \
_panel_applet_shlib_factory (void) \
{ \
_PANEL_APPLET_SETUP_GETTEXT (FALSE); \
return panel_applet_factory_setup_in_process (factory_id, type, \
callback, data); \
}
G_END_DECLS
#endif /* __PANEL_APPLET_H__ */
|