aboutsummaryrefslogtreecommitdiff
path: root/src/app-menu-item.c
diff options
context:
space:
mode:
authorTed Gould <ted@canonical.com>2009-02-06 16:26:20 +0100
committerTed Gould <ted@canonical.com>2009-02-06 16:26:20 +0100
commit93bf960b2b8d0460a50ed1678d7065a3f5e3f02e (patch)
treecf95c8673c09d12d185355ccd3d2d93b42a4e8d2 /src/app-menu-item.c
parentc06fbefb69e7b678b080b9bf8311cebf5c76f327 (diff)
downloadayatana-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.c')
-rw-r--r--src/app-menu-item.c91
1 files changed, 91 insertions, 0 deletions
diff --git a/src/app-menu-item.c b/src/app-menu-item.c
new file mode 100644
index 0000000..654f869
--- /dev/null
+++ b/src/app-menu-item.c
@@ -0,0 +1,91 @@
+#ifdef HAVE_CONFIG_H
+#include "config.h"
+#endif
+
+#include <glib/gi18n.h>
+#include <gtk/gtk.h>
+#include "app-menu-item.h"
+
+typedef struct _AppMenuItemPrivate AppMenuItemPrivate;
+
+struct _AppMenuItemPrivate
+{
+ IndicateListener * listener;
+ IndicateListenerServer * server;
+ IndicateListenerIndicator * indicator;
+
+};
+
+#define APP_MENU_ITEM_GET_PRIVATE(o) (G_TYPE_INSTANCE_GET_PRIVATE ((o), APP_MENU_ITEM_TYPE, AppMenuItemPrivate))
+
+/* Prototypes */
+static void app_menu_item_class_init (AppMenuItemClass *klass);
+static void app_menu_item_init (AppMenuItem *self);
+static void app_menu_item_dispose (GObject *object);
+static void app_menu_item_finalize (GObject *object);
+static void activate_cb (AppMenuItem * self, gpointer data);
+
+
+
+G_DEFINE_TYPE (AppMenuItem, app_menu_item, GTK_TYPE_MENU_ITEM);
+
+static void
+app_menu_item_class_init (AppMenuItemClass *klass)
+{
+ GObjectClass *object_class = G_OBJECT_CLASS (klass);
+
+ g_type_class_add_private (klass, sizeof (AppMenuItemPrivate));
+
+ object_class->dispose = app_menu_item_dispose;
+ object_class->finalize = app_menu_item_finalize;
+}
+
+static void
+app_menu_item_init (AppMenuItem *self)
+{
+ g_debug("Building new IM Menu Item");
+ AppMenuItemPrivate * priv = APP_MENU_ITEM_GET_PRIVATE(self);
+
+ priv->listener = NULL;
+ priv->server = NULL;
+ priv->indicator = NULL;
+
+
+ return;
+}
+
+static void
+app_menu_item_dispose (GObject *object)
+{
+ G_OBJECT_CLASS (app_menu_item_parent_class)->dispose (object);
+}
+
+static void
+app_menu_item_finalize (GObject *object)
+{
+ G_OBJECT_CLASS (app_menu_item_parent_class)->finalize (object);
+}
+
+AppMenuItem *
+app_menu_item_new (IndicateListener * listener, IndicateListenerServer * server, IndicateListenerIndicator * indicator)
+{
+ g_debug("Building a new IM Menu Item");
+ AppMenuItem * self = g_object_new(APP_MENU_ITEM_TYPE, NULL);
+
+ AppMenuItemPrivate * priv = APP_MENU_ITEM_GET_PRIVATE(self);
+
+ priv->listener = listener;
+ priv->server = server;
+ priv->indicator = indicator;
+
+ g_signal_connect(G_OBJECT(self), "activate", G_CALLBACK(activate_cb), NULL);
+
+ return self;
+}
+
+static void
+activate_cb (AppMenuItem * self, gpointer data)
+{
+ AppMenuItemPrivate * priv = APP_MENU_ITEM_GET_PRIVATE(self);
+
+}