X-Git-Url: http://git.maemo.org/git/?a=blobdiff_plain;f=src%2Fgnome%2Fmodest-platform.c;h=3c30170ce61ae6029051973db8822769cd65f351;hb=800a2c925d5b3fbbf2937cd2066a4f694f7cd741;hp=4dc60c0d280fce1ce6e52ab6bbe4643ef242645c;hpb=0edd0f0c6813c947ecab591cd50c857a1eebfafd;p=modest diff --git a/src/gnome/modest-platform.c b/src/gnome/modest-platform.c index 4dc60c0..3c30170 100644 --- a/src/gnome/modest-platform.c +++ b/src/gnome/modest-platform.c @@ -37,12 +37,18 @@ #include "gnome/modest-gnome-global-settings-dialog.h" gboolean -modest_platform_init (void) +modest_platform_init (int argc, char *argv[]) { return TRUE; /* nothing to do */ } +gboolean modest_platform_uninit (void) +{ + return TRUE; /*nothing to do */ +} + + TnyDevice* modest_platform_get_new_device (void) { @@ -90,7 +96,7 @@ modest_platform_activate_uri (const gchar *uri) } gboolean -modest_platform_activate_file (const gchar *path) +modest_platform_activate_file (const gchar *path, const gchar *mime_type) { modest_runtime_not_implemented (NULL); return FALSE; @@ -178,19 +184,19 @@ modest_platform_run_confirmation_dialog (GtkWindow *parent_window, void modest_platform_run_information_dialog (GtkWindow *parent_window, - ModestInformationDialogType type) + const gchar *message) { - switch (type) { - case MODEST_INFORMATION_CREATE_FOLDER: - break; - case MODEST_INFORMATION_DELETE_FOLDER: - break; - }; - /* TODO: implement a information dialog */ } -gboolean modest_platform_connect_and_wait (GtkWindow *parent_window) +gboolean modest_platform_connect_and_wait (GtkWindow *parent_window, TnyAccount *account) +{ + /* TODO: Do something with network-manager? + Otherwise, maybe it is safe to assume that we would already be online if we could be. */ + return TRUE; +} + +gboolean modest_platform_connect_and_wait_if_network_account (GtkWindow *parent_window, TnyAccount *account) { /* TODO: Do something with network-manager? Otherwise, maybe it is safe to assume that we would already be online if we could be. */ @@ -215,3 +221,45 @@ modest_platform_get_global_settings_dialog () { return modest_gnome_global_settings_dialog_new (); } + + +void +modest_platform_on_new_headers_received (TnyList *header_list) +{ + /* TODO: implement this */ + g_print ("--------------- NEW MESSAGE ARRIVED ---------------\n"); +} + + + +gboolean +modest_platform_show_help (GtkWidget *widget, const gchar *help_id) +{ + return TRUE; /* TODO */ +} + +void +modest_platform_show_search_messages (GtkWindow *parent_window) +{ + modest_runtime_not_implemented (NULL); +} + +GtkWidget * +modest_platform_create_folder_view (TnyFolderStoreQuery *query) +{ + GtkWidget *widget = modest_folder_view_new (query); + + /* Show all accounts by default */ + modest_folder_view_set_style (MODEST_FOLDER_VIEW (widget), + MODEST_FOLDER_VIEW_STYLE_SHOW_ALL); + + return widget; +} + +gboolean +modest_platform_run_alert_dialog (const gchar* prompt, + gboolean is_question) +{ + /* TODO */ + return TRUE; +}