diff options
author | Ted Gould <ted@canonical.com> | 2009-06-08 14:05:23 -0500 |
---|---|---|
committer | Ted Gould <ted@canonical.com> | 2009-06-08 14:05:23 -0500 |
commit | f139786bfc781296cff3faf1eb6e9fdd8402695f (patch) | |
tree | 0c9966d27138ea9e03f2bb73d5726e272b5a0c55 /src | |
parent | cfbfb0f5d246fad7881538bfc617e06e9136c8e5 (diff) | |
download | ayatana-indicator-session-f139786bfc781296cff3faf1eb6e9fdd8402695f.tar.gz ayatana-indicator-session-f139786bfc781296cff3faf1eb6e9fdd8402695f.tar.bz2 ayatana-indicator-session-f139786bfc781296cff3faf1eb6e9fdd8402695f.zip |
Heh, forgot to put that file in.
Diffstat (limited to 'src')
-rw-r--r-- | src/indicator-fusa.c | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/src/indicator-fusa.c b/src/indicator-fusa.c new file mode 100644 index 0000000..21c0817 --- /dev/null +++ b/src/indicator-fusa.c @@ -0,0 +1,26 @@ + +#include <gtk/gtk.h> + +GtkWidget * +get_menu_item (void) +{ + GtkWidget * mainmenu = gtk_menu_item_new(); + + GtkWidget * hbox = gtk_hbox_new(FALSE, 3); + + GtkWidget * label = gtk_label_new("Ted Gould"); + gtk_box_pack_start(GTK_BOX(hbox), label, FALSE, FALSE, 3); + gtk_widget_show(label); + + GtkWidget * icon = gtk_image_new_from_icon_name("gnome-logout", + GTK_ICON_SIZE_MENU); + gtk_box_pack_start(GTK_BOX(hbox), icon, FALSE, FALSE, 0); + gtk_widget_show(icon); + + gtk_container_add(GTK_CONTAINER(mainmenu), hbox); + gtk_widget_show(hbox); + + gtk_widget_show(mainmenu); + return mainmenu; +} + |