aboutsummaryrefslogtreecommitdiffstats
path: root/calendar
diff options
context:
space:
mode:
authorMilan Crha <mcrha@redhat.com>2010-06-07 19:45:39 +0800
committerMilan Crha <mcrha@redhat.com>2010-06-07 19:45:39 +0800
commit69bd2980626a89ee9e2755f05c76ce8e306b53df (patch)
treea70439e91f46678575a3390b5ef2996fbe875dba /calendar
parente074b85ae93dfb832eb3e31ded775defccf06c11 (diff)
downloadgsoc2013-evolution-69bd2980626a89ee9e2755f05c76ce8e306b53df.tar
gsoc2013-evolution-69bd2980626a89ee9e2755f05c76ce8e306b53df.tar.gz
gsoc2013-evolution-69bd2980626a89ee9e2755f05c76ce8e306b53df.tar.bz2
gsoc2013-evolution-69bd2980626a89ee9e2755f05c76ce8e306b53df.tar.lz
gsoc2013-evolution-69bd2980626a89ee9e2755f05c76ce8e306b53df.tar.xz
gsoc2013-evolution-69bd2980626a89ee9e2755f05c76ce8e306b53df.tar.zst
gsoc2013-evolution-69bd2980626a89ee9e2755f05c76ce8e306b53df.zip
Bug #573228 - Make the "This event has alarms" icon clickable
Diffstat (limited to 'calendar')
-rw-r--r--calendar/gui/dialogs/event-page.c37
1 files changed, 28 insertions, 9 deletions
diff --git a/calendar/gui/dialogs/event-page.c b/calendar/gui/dialogs/event-page.c
index d2b25c6280..615ebf15d0 100644
--- a/calendar/gui/dialogs/event-page.c
+++ b/calendar/gui/dialogs/event-page.c
@@ -705,19 +705,38 @@ event_page_set_view_rsvp (EventPage *epage, gboolean state)
e_meeting_list_view_column_set_visible (priv->list_view, E_MEETING_STORE_RSVP_COL, state);
}
+static void
+alarm_image_button_clicked_cb (GtkWidget *button, EventPage *epage)
+{
+ CompEditor *editor;
+ GtkAction *action;
+
+ g_return_if_fail (epage != NULL);
+ g_return_if_fail (IS_EVENT_PAGE (epage));
+
+ editor = comp_editor_page_get_editor (COMP_EDITOR_PAGE (epage));
+ action = comp_editor_get_action (editor, "alarms");
+ gtk_action_activate (action);
+}
+
static GtkWidget *
-create_image_event_box (const gchar *image_text, const gchar *tip_text)
+create_alarm_image_button (const gchar *image_text, const gchar *tip_text, EventPage *epage)
{
- GtkWidget *image, *box;
+ GtkWidget *image, *button;
+
+ button = gtk_button_new ();
+ gtk_button_set_relief (GTK_BUTTON (button), GTK_RELIEF_NONE);
+ gtk_widget_set_can_focus (button, FALSE);
- box = gtk_event_box_new ();
image = gtk_image_new_from_icon_name (image_text, GTK_ICON_SIZE_MENU);
- gtk_container_add ((GtkContainer *) box, image);
- gtk_widget_show_all (box);
- gtk_widget_set_tooltip_text (box, tip_text);
+ gtk_container_add ((GtkContainer *) button, image);
+ gtk_widget_show_all (button);
+ gtk_widget_set_tooltip_text (button, tip_text);
+
+ g_signal_connect (button, "clicked", G_CALLBACK (alarm_image_button_clicked_cb), epage);
- return box;
+ return button;
}
/* returns whether changed info text */
@@ -801,7 +820,7 @@ sensitize_widgets (EventPage *epage)
e_dialog_combo_box_get (priv->alarm_time_combo, priv->alarm_map) == ALARM_CUSTOM ? TRUE:FALSE;
if (alarm && !priv->alarm_icon) {
- priv->alarm_icon = create_image_event_box ("stock_bell", _("This event has alarms"));
+ priv->alarm_icon = create_alarm_image_button ("stock_bell", _("This event has alarms"), epage);
gtk_box_pack_start ((GtkBox *)priv->status_icons, priv->alarm_icon, FALSE, FALSE, 6);
}
@@ -2753,7 +2772,7 @@ alarm_changed_cb (GtkWidget *widget,
e_alarm_list_append (priv->alarm_list_store, NULL, ca);
}
if (!priv->alarm_icon) {
- priv->alarm_icon = create_image_event_box ("stock_bell", _("This event has alarms"));
+ priv->alarm_icon = create_alarm_image_button ("stock_bell", _("This event has alarms"), epage);
gtk_box_pack_start ((GtkBox *)priv->status_icons, priv->alarm_icon, FALSE, FALSE, 6);
}
} else {