diff options
author | nobody <nobody@localhost> | 2001-02-22 03:34:27 +0800 |
---|---|---|
committer | nobody <nobody@localhost> | 2001-02-22 03:34:27 +0800 |
commit | 9207094d8365c41ebe28a9a2bc7a435bfd8bacfa (patch) | |
tree | f1ea97702781d0b26bb97bd28213ed46368377b6 /calendar/gui/popup-menu.c | |
parent | 535fea211a9a35f5b04017124a71764daf926723 (diff) | |
download | gsoc2013-evolution-guikachu-0_1.tar gsoc2013-evolution-guikachu-0_1.tar.gz gsoc2013-evolution-guikachu-0_1.tar.bz2 gsoc2013-evolution-guikachu-0_1.tar.lz gsoc2013-evolution-guikachu-0_1.tar.xz gsoc2013-evolution-guikachu-0_1.tar.zst gsoc2013-evolution-guikachu-0_1.zip |
This commit was manufactured by cvs2svn to create tag 'guikachu-0_1'.guikachu-0_1
svn path=/tags/guikachu-0_1/; revision=8336
Diffstat (limited to 'calendar/gui/popup-menu.c')
-rw-r--r-- | calendar/gui/popup-menu.c | 43 |
1 files changed, 0 insertions, 43 deletions
diff --git a/calendar/gui/popup-menu.c b/calendar/gui/popup-menu.c deleted file mode 100644 index 550fede0f3..0000000000 --- a/calendar/gui/popup-menu.c +++ /dev/null @@ -1,43 +0,0 @@ -/* Popup menu utilities for gncal - * - * Copyright (C) 1998 The Free Software Foundation - * - * Author: Federico Mena <quartic@gimp.org> - */ - -#include <config.h> -#include <gtk/gtkmenuitem.h> -#include <libgnome/gnome-defs.h> -#include <libgnome/gnome-i18n.h> -#include <gal/widgets/e-gui-utils.h> -#include "popup-menu.h" - - -void -popup_menu (struct menu_item *items, int nitems, GdkEventButton *event) -{ - GtkWidget *menu; - GtkWidget *item; - int i; - - menu = gtk_menu_new (); - - /* Make sure the menu is destroyed when it disappears. */ - e_auto_kill_popup_menu_on_hide (GTK_MENU (menu)); - - for (i = 0; i < nitems; i++) { - if (items[i].text) { - item = gtk_menu_item_new_with_label (_(items[i].text)); - gtk_signal_connect (GTK_OBJECT (item), "activate", - items[i].callback, - items[i].data); - gtk_widget_set_sensitive (item, items[i].sensitive); - } else - item = gtk_menu_item_new (); - - gtk_widget_show (item); - gtk_menu_append (GTK_MENU (menu), item); - } - - gtk_menu_popup (GTK_MENU (menu), NULL, NULL, NULL, NULL, event->button, event->time); -} |