From f0046400b0afc01694454e0b4c865803f03acdd3 Mon Sep 17 00:00:00 2001 From: Sergio Villar Senin Date: Thu, 18 Jun 2009 19:00:25 +0200 Subject: [PATCH 1/1] Added option to folders window menu --- src/hildon2/modest-folder-window.c | 15 ++++++++++++--- 1 file changed, 12 insertions(+), 3 deletions(-) diff --git a/src/hildon2/modest-folder-window.c b/src/hildon2/modest-folder-window.c index 181ae00..c7493bc 100644 --- a/src/hildon2/modest-folder-window.c +++ b/src/hildon2/modest-folder-window.c @@ -463,6 +463,13 @@ modest_folder_window_set_mailbox (ModestFolderWindow *self, } static void +edit_account (GtkButton *button, + ModestFolderWindow *self) +{ + +} + +static void setup_menu (ModestFolderWindow *self) { g_return_if_fail (MODEST_IS_FOLDER_WINDOW(self)); @@ -482,15 +489,17 @@ setup_menu (ModestFolderWindow *self) MODEST_DIMMING_CALLBACK (modest_ui_dimming_rules_on_folder_window_delete)); /* send receive actions should be only one visible always */ - modest_hildon2_window_add_to_menu (MODEST_HILDON2_WINDOW (self), - _("mcen_me_inbox_sendandreceive"), - NULL, + modest_hildon2_window_add_to_menu (MODEST_HILDON2_WINDOW (self), _("mcen_me_inbox_sendandreceive"), NULL, APP_MENU_CALLBACK (modest_ui_actions_on_send_receive), MODEST_DIMMING_CALLBACK (modest_ui_dimming_rules_on_send_receive)); modest_hildon2_window_add_to_menu (MODEST_HILDON2_WINDOW (self), _("mcen_me_outbox_cancelsend"), NULL, APP_MENU_CALLBACK (modest_ui_actions_cancel_send), MODEST_DIMMING_CALLBACK (modest_ui_dimming_rules_on_cancel_sending_all)); + + modest_hildon2_window_add_to_menu (MODEST_HILDON2_WINDOW (self), _("mcen_me_edit_account"), NULL, + APP_MENU_CALLBACK (edit_account), + MODEST_DIMMING_CALLBACK (modest_ui_dimming_rules_on_edit_accounts)); } static void -- 1.7.9.5