From 8172d77c914b3d2cdbf1ff51f728f5c8860b64d9 Mon Sep 17 00:00:00 2001 From: Michael Terry Date: Mon, 19 Apr 2004 15:19:32 +0000 Subject: Update the calendar to use the icon theme through the EIconFactory object 2004-04-19 Michael Terry * gui/GNOME_Evolution_Calendar.server.in.in: * gui/calendar-commands.c: * gui/calendar-component.c: * gui/e-calendar-table.c: * gui/e-calendar-view.c: * gui/e-day-view-main-item.c: * gui/e-day-view-top-item.c: * gui/e-day-view.c: * gui/e-day-view.h: * gui/e-itip-control.c: * gui/e-timezone-entry.c: * gui/e-week-view-event-item.c: * gui/e-week-view.c: * gui/e-week-view.h: * gui/tasks-component.c: * gui/alarm-notify/alarm-notify-dialog.c: * gui/alarm-notify/alarm-queue.c: * gui/dialogs/comp-editor.c: * gui/dialogs/event-editor.c: Update the calendar to use the icon theme through the EIconFactory object in e-util svn path=/trunk/; revision=25515 --- calendar/gui/alarm-notify/alarm-notify-dialog.c | 18 +++++++++++++++--- 1 file changed, 15 insertions(+), 3 deletions(-) (limited to 'calendar/gui/alarm-notify/alarm-notify-dialog.c') diff --git a/calendar/gui/alarm-notify/alarm-notify-dialog.c b/calendar/gui/alarm-notify/alarm-notify-dialog.c index c315781e6f..da523e72f3 100644 --- a/calendar/gui/alarm-notify/alarm-notify-dialog.c +++ b/calendar/gui/alarm-notify/alarm-notify-dialog.c @@ -31,7 +31,6 @@ #if 0 # include #endif -#include #include #include #include @@ -40,6 +39,7 @@ #include "alarm-notify-dialog.h" #include "config-data.h" #include "util.h" +#include GtkWidget *make_html_display (gchar *widget_name, char *s1, char *s2, int scroll, int shadow); @@ -223,9 +223,14 @@ write_html_heading (GtkHTMLStream *stream, const char *message, char *buf; char *start, *end; char *bg_path = "file://" EVOLUTION_IMAGESDIR "/bcg.png"; - char *image_path = "file://" EVOLUTION_IMAGESDIR "/alarm.png"; + gchar *image_path; + gchar *icon_path; icaltimezone *current_zone; + icon_path = e_icon_factory_get_icon_filename ("stock_alarm", 48); + image_path = g_strdup_printf ("file://%s", icon_path); + g_free (icon_path); + /* Stringize the times */ current_zone = config_data_get_timezone (); @@ -273,6 +278,7 @@ write_html_heading (GtkHTMLStream *stream, const char *message, g_free (start); g_free (end); + g_free (image_path); } /** @@ -299,6 +305,7 @@ alarm_notify_dialog (time_t trigger, time_t occur_start, time_t occur_end, GtkHTMLStream *stream; icaltimezone *current_zone; char *buf, *title; + GList *icon_list; g_return_val_if_fail (trigger != -1, NULL); @@ -377,7 +384,12 @@ alarm_notify_dialog (time_t trigger, time_t occur_start, time_t occur_end, if (!GTK_WIDGET_REALIZED (an->dialog)) gtk_widget_realize (an->dialog); - gtk_window_set_icon_from_file (GTK_WINDOW (an->dialog), EVOLUTION_IMAGESDIR "/alarm.png", NULL); + icon_list = e_icon_factory_get_icon_list ("stock_alarm"); + if (icon_list) { + gtk_window_set_icon_list (GTK_WINDOW (an->dialog), icon_list); + g_list_foreach (icon_list, (GFunc) g_object_unref, NULL); + g_list_free (icon_list); + } gtk_widget_show (an->dialog); return an; -- cgit v1.2.3