X-Git-Url: http://git.maemo.org/git/?a=blobdiff_plain;f=src%2Fwidgets%2Fmodest-msg-edit-window.h;h=b8e49d15e9d67ffd6c13a0ba7cea6635788d6799;hb=82a8a24cd7ae31c19e9eb787cd6cd43a918e148e;hp=a364da00d86356f4dc86b1f2903531ea57604d0d;hpb=1f49ac9df5635e0427ef1c2e1b2cc0c30c7c0cd2;p=modest diff --git a/src/widgets/modest-msg-edit-window.h b/src/widgets/modest-msg-edit-window.h index a364da0..b8e49d1 100644 --- a/src/widgets/modest-msg-edit-window.h +++ b/src/widgets/modest-msg-edit-window.h @@ -34,6 +34,8 @@ #include #ifdef MODEST_TOOLKIT_HILDON2 #include +#else +#include #endif #include @@ -54,7 +56,7 @@ struct _ModestMsgEditWindow { #ifdef MODEST_TOOLKIT_HILDON2 ModestHildon2Window parent; #else - ModestWindow parent; + ModestShellWindow parent; #endif /* insert public members, if any */ }; @@ -63,7 +65,7 @@ struct _ModestMsgEditWindowClass { #ifdef MODEST_TOOLKIT_HILDON2 ModestHildon2WindowClass parent_class; #else - ModestWindowClass parent_class; + ModestShellWindowClass parent_class; #endif /* insert signal callback declarations, eg. */ /* void (* my_event) (ModestMsgEditWindow* obj); */ @@ -374,6 +376,15 @@ gboolean modest_msg_edit_window_can_redo (ModestMsgEdit void modest_msg_edit_window_select_contacts (ModestMsgEditWindow *window); /** + * modest_msg_edit_window_add_to_contacts: + * @self: a #ModestMsgEditWindow + * + * activates the add to contacts use. It shows the add to contacts + * dialog to select the recipient to add. + */ +void modest_msg_edit_window_add_to_contacts (ModestMsgEditWindow *self); + +/** * modest_msg_edit_window_check_names: * @window: a #ModestMsgEditWindow * @add_to_addressbook: if TRUE, add valid addresses to the addressbook @@ -387,14 +398,26 @@ gboolean modest_msg_edit_window_check_names (ModestMsgEditWindow *wind gboolean add_to_addressbook); /** - * modest_msg_edit_window_toggle_find_toolbar: + * modest_msg_edit_window_has_pending_addresses: + * @window: a #ModestMsgEditWindow + * @add_to_addressbook: if TRUE, add valid addresses to the addressbook + * + * Validates all the recipients, and checks if there are addresses in + * any field that could be added to the addressbook + * + * Returns: %TRUE if there are valid pending addresses, %FALSE otherwise + */ +gboolean modest_msg_edit_window_has_pending_addresses (ModestMsgEditWindow *window); + +/** + * modest_msg_edit_window_toggle_isearch_toolbar: * @window: a #ModestMsgEditWindow * @show: a #gboolean * - * Shows/Hides the find toolbar + * Shows/Hides the isearch toolbar */ -void modest_msg_edit_window_toggle_find_toolbar (ModestMsgEditWindow *window, - gboolean show); +void modest_msg_edit_window_toggle_isearch_toolbar (ModestMsgEditWindow *window, + gboolean show); /**