aboutsummaryrefslogtreecommitdiff
path: root/libdbusmenu-gtk/client.h
diff options
context:
space:
mode:
authorTed Gould <ted@gould.cx>2011-02-11 22:03:16 -0600
committerTed Gould <ted@gould.cx>2011-02-11 22:03:16 -0600
commit274b3a49d6f516dfb038bc2b2b3de2d4e2511e51 (patch)
tree4dbfbfc17fd4e82d4b0879d8ceaf31bdeec7f70a /libdbusmenu-gtk/client.h
parent3a572218ff8520ca284966d9395c2fd06544d233 (diff)
parente417951544c716a7f8ed3f7b348135e409cf1356 (diff)
downloadlibdbusmenu-274b3a49d6f516dfb038bc2b2b3de2d4e2511e51.tar.gz
libdbusmenu-274b3a49d6f516dfb038bc2b2b3de2d4e2511e51.tar.bz2
libdbusmenu-274b3a49d6f516dfb038bc2b2b3de2d4e2511e51.zip
Updating to group prop change signals branch to get the changes there (oh, pull in some trunk too)
Diffstat (limited to 'libdbusmenu-gtk/client.h')
-rw-r--r--libdbusmenu-gtk/client.h11
1 files changed, 10 insertions, 1 deletions
diff --git a/libdbusmenu-gtk/client.h b/libdbusmenu-gtk/client.h
index a7c96ee..c986a5d 100644
--- a/libdbusmenu-gtk/client.h
+++ b/libdbusmenu-gtk/client.h
@@ -43,6 +43,8 @@ G_BEGIN_DECLS
#define DBUSMENU_GTKCLIENT_SIGNAL_ROOT_CHANGED DBUSMENU_CLIENT_SIGNAL_ROOT_CHANGED
+typedef struct _DbusmenuGtkClientPrivate DbusmenuGtkClientPrivate;
+
/**
DbusmenuGtkClientClass:
@parent_class: #GtkMenuClass
@@ -50,6 +52,8 @@ G_BEGIN_DECLS
@reserved2: Reserved for future use.
@reserved3: Reserved for future use.
@reserved4: Reserved for future use.
+ @reserved5: Reserved for future use.
+ @reserved6: Reserved for future use.
*/
typedef struct _DbusmenuGtkClientClass DbusmenuGtkClientClass;
struct _DbusmenuGtkClientClass {
@@ -58,11 +62,13 @@ struct _DbusmenuGtkClientClass {
/* Signals */
void (*root_changed) (DbusmenuMenuitem * newroot);
- /* Reserved */
+ /*< Private >*/
void (*reserved1) (void);
void (*reserved2) (void);
void (*reserved3) (void);
void (*reserved4) (void);
+ void (*reserved5) (void);
+ void (*reserved6) (void);
};
/**
@@ -72,6 +78,9 @@ struct _DbusmenuGtkClientClass {
typedef struct _DbusmenuGtkClient DbusmenuGtkClient;
struct _DbusmenuGtkClient {
DbusmenuClient parent;
+
+ /*< Private >*/
+ DbusmenuGtkClientPrivate * priv;
};
GType dbusmenu_gtkclient_get_type (void);