X-Git-Url: http://git.maemo.org/git/?a=blobdiff_plain;f=src%2Fmaemo%2Fmodest-maemo-utils.h;h=80229daa75edb535172a4f695e1b45be41832605;hb=aaf3f94831e627d2b712f752169766cfe7792f58;hp=beb9cad364b181a77fe3f89cedf08d81af5c5eaf;hpb=3e7a3b4e5759d63285d8795435b2ceedaf63b216;p=modest diff --git a/src/maemo/modest-maemo-utils.h b/src/maemo/modest-maemo-utils.h index beb9cad..80229da 100644 --- a/src/maemo/modest-maemo-utils.h +++ b/src/maemo/modest-maemo-utils.h @@ -32,16 +32,14 @@ #define __MODEST_MAEMO_UTILS_H__ #include +#include /* for FILE* */ +#include +#include +#include -/** - * 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" /** @@ -49,11 +47,68 @@ GtkWidget* modest_maemo_utils_menubar_to_menu (GtkUIManager *ui_manager); * * get the name for this device. Note: this queries the bluetooth * name over DBUS, and may block. The result will be available in - * MODEST_DEVICE_NAME in ModestConf; it will be updated when it + * MODEST_CONF_DEVICE_NAME in ModestConf; it will be updated when it * changes * */ 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); + #endif /*__MODEST_MAEMO_UTILS_H__*/