diff options
author | Arturo Espinosa <unammx@src.gnome.org> | 1998-04-22 13:19:51 +0800 |
---|---|---|
committer | Arturo Espinosa <unammx@src.gnome.org> | 1998-04-22 13:19:51 +0800 |
commit | 821548d922e719881f5dff34a34b3d6285b10855 (patch) | |
tree | 54c20eeb1fc960a4a0d5ea864741efb8215d09e5 /calendar/gncal-full-day.c | |
parent | 6b159ed2c33a1a208395f9b57b7d61d7c1d04842 (diff) | |
download | gsoc2013-evolution-821548d922e719881f5dff34a34b3d6285b10855.tar.gz gsoc2013-evolution-821548d922e719881f5dff34a34b3d6285b10855.tar.zst gsoc2013-evolution-821548d922e719881f5dff34a34b3d6285b10855.zip |
1. Calendar property configuration is finally here with nice live-updates.
1. Calendar property configuration is finally here with
nice live-updates.
2. Double clicking on week view jumps to that day in the
day view; Context menu allows adding an appointment
on that day.
Miguel.
svn path=/trunk/; revision=182
Diffstat (limited to 'calendar/gncal-full-day.c')
-rw-r--r-- | calendar/gncal-full-day.c | 34 |
1 files changed, 0 insertions, 34 deletions
diff --git a/calendar/gncal-full-day.c b/calendar/gncal-full-day.c index 2aa614c70a..02ac1aece2 100644 --- a/calendar/gncal-full-day.c +++ b/calendar/gncal-full-day.c @@ -61,14 +61,6 @@ struct drag_info { guint32 click_time; }; -struct menu_item { - char *text; - GtkSignalFunc callback; - gpointer data; - int sensitive; -}; - - enum { RANGE_ACTIVATED, LAST_SIGNAL @@ -313,32 +305,6 @@ child_range_changed (GncalFullDay *fullday, Child *child) } static void -popup_menu (struct menu_item *items, int nitems, guint32 time) -{ - GtkWidget *menu; - GtkWidget *item; - int i; - - menu = gtk_menu_new (); /* FIXME: this baby is never freed */ - - 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, 3, time); -} - -static void new_appointment (GtkWidget *widget, gpointer data) { GncalFullDay *fullday; |