aboutsummaryrefslogtreecommitdiff
path: root/libdbusmenu-gtk/client.h
diff options
context:
space:
mode:
authorKen VanDine <ken.vandine@canonical.com>2010-11-17 15:35:34 -0500
committerKen VanDine <ken.vandine@canonical.com>2010-11-17 15:35:34 -0500
commitca1881e6cf5180215a3222f95b387c48f265184c (patch)
tree2075e0d9976ea51c39964137ef5dfca5c2e6e3d0 /libdbusmenu-gtk/client.h
parentb353628b2659d06ad6e356cfbf017aa96cb4697e (diff)
parent395db9878504b28778b246ea658be5287e758e1f (diff)
downloadlibdbusmenu-ca1881e6cf5180215a3222f95b387c48f265184c.tar.gz
libdbusmenu-ca1881e6cf5180215a3222f95b387c48f265184c.tar.bz2
libdbusmenu-ca1881e6cf5180215a3222f95b387c48f265184c.zip
* New upstream release.
* Breaking ABI and getting reserved back * Adding build support for GTK2/3 builds * Only force a flush of top level items, allow others to be based on the count. * debian/control, debian/libdbusmenu-glib2.install, debian/libdbusmenu-gtk2.install: Switching package names to match .so bump.
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);