X-Git-Url: http://git.maemo.org/git/?a=blobdiff_plain;f=src%2Fmaemo%2Fmodest-maemo-utils.h;h=95a9697313ac70ac16a68610275d8e7ec4cd313f;hb=4094c9fb325b6a9e1bf5d4a91caf0373f7d0831a;hp=aa23b4fd8db25604d8536deb04aafb5da6edad47;hpb=66c4aa23da653ab983439d8b3938fef721c0056b;p=modest diff --git a/src/maemo/modest-maemo-utils.h b/src/maemo/modest-maemo-utils.h index aa23b4f..95a9697 100644 --- a/src/maemo/modest-maemo-utils.h +++ b/src/maemo/modest-maemo-utils.h @@ -32,16 +32,15 @@ #define __MODEST_MAEMO_UTILS_H__ #include +#include /* for FILE* */ +#include +#include +#include +#include "widgets/modest-global-settings-dialog.h" +#include "widgets/modest-validating-entry.h" -/** - * modest_maemo_utils_menubar_to_menu: - * @ui_manager: a ui manager, with the menubar at "/MenuBar" - * - * convert a menubar description (in a GtkUIManager) in to a menu - * - * Returns: a new menu, or NULL in case of error - */ -GtkWidget* modest_maemo_utils_menubar_to_menu (GtkUIManager *ui_manager); +#define MODEST_MAEMO_UTILS_MYDOCS_FOLDER "MyDocs" +#define MODEST_MAEMO_UTILS_DEFAULT_IMAGE_FOLDER ".images" /** @@ -56,4 +55,77 @@ GtkWidget* modest_maemo_utils_menubar_to_menu (GtkUIManager *ui_manager); void modest_maemo_utils_get_device_name (void); +/** + * modest_maemo_utils_setup_images_filechooser: + * @chooser: a #GtkFileChooser + * + * Configures the default folder, and mime filter of a filechooser + * for images. + */ +void modest_maemo_utils_setup_images_filechooser (GtkFileChooser *chooser); + + +/** + * modest_maemo_utils_get_osso_context: + * + * get the osso_context pointer for this application + * + * Return: the osso context pointer + */ +osso_context_t *modest_maemo_utils_get_osso_context (void); + +/** + * modest_maemo_open_mcc_mapping_file: + * + * open the mcc mapping file, or NULL if it fails + * + * Returns: file ptr or NULL in case of error + */ +FILE* modest_maemo_open_mcc_mapping_file (void); + +/** + * modest_maemo_set_thumbable_scrollbar: + * @win: a scrollable window + * @thumbable: set it to thumbable (TRUE) or small (FALSE) + * + * changes the thumbability of scrollbars in a scrollable window + */ +void modest_maemo_set_thumbable_scrollbar (GtkScrolledWindow *win, gboolean thumbable); + + +/** + * modest_maemo_get_osso_context: + * + * retrieve the osso context for this application + * + * Returns: the current osso_context_t ptr + */ +osso_context_t* modest_maemo_utils_get_osso_context (void); + +/** + * modest_maemo_set_osso_context: + * + * remember the osso-context for this application + * + * @osso_context: a valid osso_context_t pointer + * + */ +void modest_maemo_utils_set_osso_context (osso_context_t *osso_context); + +/** + * modest_maemo_utils_get_manager_menubar_as_menu: + * @manager: a #GtkUIManager + * @item_name: a string + * + * obtains the node with name @item_name in @manager (which happens to be a menubar) as a + * #GtkMenu. + * + * Returns: a #GtkMenu + */ +GtkWidget *modest_maemo_utils_get_manager_menubar_as_menu (GtkUIManager *manager, const gchar *item_name); + +void modest_maemo_utils_on_entry_invalid_character (ModestValidatingEntry *self, + const gchar* character, + gpointer user_data); + #endif /*__MODEST_MAEMO_UTILS_H__*/