aboutsummaryrefslogtreecommitdiff
path: root/example
diff options
context:
space:
mode:
authorCody Russell <crussell@canonical.com>2009-12-07 13:31:36 -0600
committerCody Russell <crussell@canonical.com>2009-12-07 13:31:36 -0600
commit95ecb480de8da2e06b07be2313537093bb47069a (patch)
tree90ac61e11c32c5ed8ff18ab4cce195744053d436 /example
parentfe16a243e5f101635bc3ec89d1cbfe0edd4e49ad (diff)
downloadayatana-indicator-application-95ecb480de8da2e06b07be2313537093bb47069a.tar.gz
ayatana-indicator-application-95ecb480de8da2e06b07be2313537093bb47069a.tar.bz2
ayatana-indicator-application-95ecb480de8da2e06b07be2313537093bb47069a.zip
Add 'activate' signal support
Diffstat (limited to 'example')
-rw-r--r--example/simple-client.c14
1 files changed, 14 insertions, 0 deletions
diff --git a/example/simple-client.c b/example/simple-client.c
index ab2e24d..ea4da9d 100644
--- a/example/simple-client.c
+++ b/example/simple-client.c
@@ -26,6 +26,14 @@ with this program. If not, see <http://www.gnu.org/licenses/>.
GMainLoop * mainloop = NULL;
+static void
+item_clicked_cb (GtkWidget *widget, gpointer data)
+{
+ const gchar *text = (const gchar *)data;
+
+ g_print ("%s clicked!\n", text);
+}
+
int
main (int argc, char ** argv)
{
@@ -46,12 +54,18 @@ main (int argc, char ** argv)
menu = gtk_menu_new ();
GtkWidget *item = gtk_menu_item_new_with_label ("1");
+ g_signal_connect (item, "activate",
+ G_CALLBACK (item_clicked_cb), "1");
gtk_menu_shell_append (GTK_MENU_SHELL (menu), item);
item = gtk_menu_item_new_with_label ("2");
+ g_signal_connect (item, "activate",
+ G_CALLBACK (item_clicked_cb), "2");
gtk_menu_shell_append (GTK_MENU_SHELL (menu), item);
item = gtk_menu_item_new_with_label ("3");
+ g_signal_connect (item, "activate",
+ G_CALLBACK (item_clicked_cb), "3");
gtk_menu_shell_append (GTK_MENU_SHELL (menu), item);
app_indicator_set_menu (ci, GTK_MENU (menu));