aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRodrigo Moya <rodrigo@ximian.com>2003-08-20 20:02:32 +0800
committerRodrigo Moya <rodrigo@src.gnome.org>2003-08-20 20:02:32 +0800
commita61f069da98e89f6e9b3d0fffdc1daa7f8079379 (patch)
treea9588fc905a8819f71f66b38615a0db84bc01f5a
parentba4e2baca496463bde3393e58a6951811946042a (diff)
downloadgsoc2013-evolution-a61f069da98e89f6e9b3d0fffdc1daa7f8079379.tar
gsoc2013-evolution-a61f069da98e89f6e9b3d0fffdc1daa7f8079379.tar.gz
gsoc2013-evolution-a61f069da98e89f6e9b3d0fffdc1daa7f8079379.tar.bz2
gsoc2013-evolution-a61f069da98e89f6e9b3d0fffdc1daa7f8079379.tar.lz
gsoc2013-evolution-a61f069da98e89f6e9b3d0fffdc1daa7f8079379.tar.xz
gsoc2013-evolution-a61f069da98e89f6e9b3d0fffdc1daa7f8079379.tar.zst
gsoc2013-evolution-a61f069da98e89f6e9b3d0fffdc1daa7f8079379.zip
set more icons for the popup menu.
2003-08-20 Rodrigo Moya <rodrigo@ximian.com> * gui/e-cal-view.c (setup_popup_icons): set more icons for the popup menu. svn path=/trunk/; revision=22310
-rw-r--r--calendar/ChangeLog5
-rw-r--r--calendar/gui/e-cal-view.c28
-rw-r--r--calendar/gui/e-calendar-view.c28
3 files changed, 59 insertions, 2 deletions
diff --git a/calendar/ChangeLog b/calendar/ChangeLog
index aa452faf12..4fdba556e0 100644
--- a/calendar/ChangeLog
+++ b/calendar/ChangeLog
@@ -1,3 +1,8 @@
+2003-08-20 Rodrigo Moya <rodrigo@ximian.com>
+
+ * gui/e-cal-view.c (setup_popup_icons): set more icons for the
+ popup menu.
+
2003-08-20 Bolian Yin <bolian.yin@sun.com>
* gui/Makefile.am : Add a11y dependency.
diff --git a/calendar/gui/e-cal-view.c b/calendar/gui/e-cal-view.c
index f91b7fd60e..381dca2542 100644
--- a/calendar/gui/e-cal-view.c
+++ b/calendar/gui/e-cal-view.c
@@ -1169,10 +1169,36 @@ setup_popup_icons (EPopupMenu *context_menu)
for (i = 0; context_menu[i].name; i++) {
GtkWidget *pixmap_widget = NULL;
- if (!strcmp (context_menu[i].name, _("_Paste")))
+ if (!strcmp (context_menu[i].name, _("_Copy")))
+ pixmap_widget = gtk_image_new_from_stock (GTK_STOCK_COPY, GTK_ICON_SIZE_MENU);
+ else if (!strcmp (context_menu[i].name, _("C_ut")))
+ pixmap_widget = gtk_image_new_from_stock (GTK_STOCK_CUT, GTK_ICON_SIZE_MENU);
+ else if (!strcmp (context_menu[i].name, _("_Delete")) ||
+ !strcmp (context_menu[i].name, _("Delete this _Occurrence")) ||
+ !strcmp (context_menu[i].name, _("Delete _All Occurrences")))
+ pixmap_widget = gtk_image_new_from_stock (GTK_STOCK_DELETE, GTK_ICON_SIZE_MENU);
+ else if (!strcmp (context_menu[i].name, _("Go to _Today")))
+ pixmap_widget = gtk_image_new_from_stock (GTK_STOCK_HOME, GTK_ICON_SIZE_MENU);
+ else if (!strcmp (context_menu[i].name, _("_Go to Date...")))
+ pixmap_widget = gtk_image_new_from_stock (GTK_STOCK_JUMP_TO, GTK_ICON_SIZE_MENU);
+ else if (!strcmp (context_menu[i].name, _("New _Appointment...")))
+ pixmap_widget = gtk_image_new_from_file (EVOLUTION_IMAGESDIR "/new_appointment.xpm");
+ else if (!strcmp (context_menu[i].name, _("New All Day _Event")))
+ pixmap_widget = gtk_image_new_from_file (EVOLUTION_IMAGESDIR "/new_all_day_event.png");
+ else if (!strcmp (context_menu[i].name, _("New Meeting")))
+ pixmap_widget = gtk_image_new_from_file (EVOLUTION_IMAGESDIR "/meeting-request-16.png");
+ else if (!strcmp (context_menu[i].name, _("New Task")))
+ pixmap_widget = gtk_image_new_from_file (EVOLUTION_IMAGESDIR "/new_task-16.png");
+ else if (!strcmp (context_menu[i].name, _("_Open")))
+ pixmap_widget = gtk_image_new_from_stock (GTK_STOCK_OPEN, GTK_ICON_SIZE_MENU);
+ else if (!strcmp (context_menu[i].name, _("_Paste")))
pixmap_widget = gtk_image_new_from_stock (GTK_STOCK_PASTE, GTK_ICON_SIZE_MENU);
else if (!strcmp (context_menu[i].name, _("_Print...")))
pixmap_widget = gtk_image_new_from_stock (GTK_STOCK_PRINT, GTK_ICON_SIZE_MENU);
+ else if (!strcmp (context_menu[i].name, _("_Save As...")))
+ pixmap_widget = gtk_image_new_from_stock (GTK_STOCK_SAVE_AS, GTK_ICON_SIZE_MENU);
+ else if (!strcmp (context_menu[i].name, _("_Settings...")))
+ pixmap_widget = gtk_image_new_from_stock (GTK_STOCK_PREFERENCES, GTK_ICON_SIZE_MENU);
if (pixmap_widget)
gtk_widget_show (pixmap_widget);
diff --git a/calendar/gui/e-calendar-view.c b/calendar/gui/e-calendar-view.c
index f91b7fd60e..381dca2542 100644
--- a/calendar/gui/e-calendar-view.c
+++ b/calendar/gui/e-calendar-view.c
@@ -1169,10 +1169,36 @@ setup_popup_icons (EPopupMenu *context_menu)
for (i = 0; context_menu[i].name; i++) {
GtkWidget *pixmap_widget = NULL;
- if (!strcmp (context_menu[i].name, _("_Paste")))
+ if (!strcmp (context_menu[i].name, _("_Copy")))
+ pixmap_widget = gtk_image_new_from_stock (GTK_STOCK_COPY, GTK_ICON_SIZE_MENU);
+ else if (!strcmp (context_menu[i].name, _("C_ut")))
+ pixmap_widget = gtk_image_new_from_stock (GTK_STOCK_CUT, GTK_ICON_SIZE_MENU);
+ else if (!strcmp (context_menu[i].name, _("_Delete")) ||
+ !strcmp (context_menu[i].name, _("Delete this _Occurrence")) ||
+ !strcmp (context_menu[i].name, _("Delete _All Occurrences")))
+ pixmap_widget = gtk_image_new_from_stock (GTK_STOCK_DELETE, GTK_ICON_SIZE_MENU);
+ else if (!strcmp (context_menu[i].name, _("Go to _Today")))
+ pixmap_widget = gtk_image_new_from_stock (GTK_STOCK_HOME, GTK_ICON_SIZE_MENU);
+ else if (!strcmp (context_menu[i].name, _("_Go to Date...")))
+ pixmap_widget = gtk_image_new_from_stock (GTK_STOCK_JUMP_TO, GTK_ICON_SIZE_MENU);
+ else if (!strcmp (context_menu[i].name, _("New _Appointment...")))
+ pixmap_widget = gtk_image_new_from_file (EVOLUTION_IMAGESDIR "/new_appointment.xpm");
+ else if (!strcmp (context_menu[i].name, _("New All Day _Event")))
+ pixmap_widget = gtk_image_new_from_file (EVOLUTION_IMAGESDIR "/new_all_day_event.png");
+ else if (!strcmp (context_menu[i].name, _("New Meeting")))
+ pixmap_widget = gtk_image_new_from_file (EVOLUTION_IMAGESDIR "/meeting-request-16.png");
+ else if (!strcmp (context_menu[i].name, _("New Task")))
+ pixmap_widget = gtk_image_new_from_file (EVOLUTION_IMAGESDIR "/new_task-16.png");
+ else if (!strcmp (context_menu[i].name, _("_Open")))
+ pixmap_widget = gtk_image_new_from_stock (GTK_STOCK_OPEN, GTK_ICON_SIZE_MENU);
+ else if (!strcmp (context_menu[i].name, _("_Paste")))
pixmap_widget = gtk_image_new_from_stock (GTK_STOCK_PASTE, GTK_ICON_SIZE_MENU);
else if (!strcmp (context_menu[i].name, _("_Print...")))
pixmap_widget = gtk_image_new_from_stock (GTK_STOCK_PRINT, GTK_ICON_SIZE_MENU);
+ else if (!strcmp (context_menu[i].name, _("_Save As...")))
+ pixmap_widget = gtk_image_new_from_stock (GTK_STOCK_SAVE_AS, GTK_ICON_SIZE_MENU);
+ else if (!strcmp (context_menu[i].name, _("_Settings...")))
+ pixmap_widget = gtk_image_new_from_stock (GTK_STOCK_PREFERENCES, GTK_ICON_SIZE_MENU);
if (pixmap_widget)
gtk_widget_show (pixmap_widget);