diff options
author | Ted Gould <ted@canonical.com> | 2009-02-06 16:26:20 +0100 |
---|---|---|
committer | Ted Gould <ted@canonical.com> | 2009-02-06 16:26:20 +0100 |
commit | 93bf960b2b8d0460a50ed1678d7065a3f5e3f02e (patch) | |
tree | cf95c8673c09d12d185355ccd3d2d93b42a4e8d2 /src/app-menu-item.h | |
parent | c06fbefb69e7b678b080b9bf8311cebf5c76f327 (diff) | |
download | ayatana-indicator-messages-93bf960b2b8d0460a50ed1678d7065a3f5e3f02e.tar.gz ayatana-indicator-messages-93bf960b2b8d0460a50ed1678d7065a3f5e3f02e.tar.bz2 ayatana-indicator-messages-93bf960b2b8d0460a50ed1678d7065a3f5e3f02e.zip |
Adding in an application menu item to start building those
Diffstat (limited to 'src/app-menu-item.h')
-rw-r--r-- | src/app-menu-item.h | 35 |
1 files changed, 35 insertions, 0 deletions
diff --git a/src/app-menu-item.h b/src/app-menu-item.h new file mode 100644 index 0000000..c514366 --- /dev/null +++ b/src/app-menu-item.h @@ -0,0 +1,35 @@ +#ifndef __APP_MENU_ITEM_H__ +#define __APP_MENU_ITEM_H__ + +#include <glib.h> +#include <glib-object.h> + +#include <libindicate/listener.h> + +G_BEGIN_DECLS + +#define APP_MENU_ITEM_TYPE (app_menu_item_get_type ()) +#define APP_MENU_ITEM(obj) (G_TYPE_CHECK_INSTANCE_CAST ((obj), APP_MENU_ITEM_TYPE, AppMenuItem)) +#define APP_MENU_ITEM_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST ((klass), APP_MENU_ITEM_TYPE, AppMenuItemClass)) +#define IS_APP_MENU_ITEM(obj) (G_TYPE_CHECK_INSTANCE_TYPE ((obj), APP_MENU_ITEM_TYPE)) +#define IS_APP_MENU_ITEM_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE ((klass), APP_MENU_ITEM_TYPE)) +#define APP_MENU_ITEM_GET_CLASS(obj) (G_TYPE_INSTANCE_GET_CLASS ((obj), APP_MENU_ITEM_TYPE, AppMenuItemClass)) + +typedef struct _AppMenuItem AppMenuItem; +typedef struct _AppMenuItemClass AppMenuItemClass; + +struct _AppMenuItemClass { + GtkMenuItemClass parent_class; +}; + +struct _AppMenuItem { + GtkMenuItem parent; +}; + +GType app_menu_item_get_type (void); +AppMenuItem * app_menu_item_new (IndicateListener * listener, IndicateListenerServer * server, IndicateListenerIndicator * indicator); + +G_END_DECLS + +#endif + |