X-Git-Url: http://git.maemo.org/git/?p=modest;a=blobdiff_plain;f=src%2Fgnome%2Fmodest-platform.c;h=28885ee1f09ae4157a73643615c4ea850ab50861;hp=368e07662803295cf1b0614ad80c83b52275aa0b;hb=564a7388a2f74368147b0a241ca4a0b65c68167f;hpb=a4e8821c4dd117ede537ab7d5a5fb9992dd62df5 diff --git a/src/gnome/modest-platform.c b/src/gnome/modest-platform.c index 368e076..28885ee 100644 --- a/src/gnome/modest-platform.c +++ b/src/gnome/modest-platform.c @@ -38,6 +38,10 @@ #include "modest-runtime.h" #include "gnome/modest-gnome-global-settings-dialog.h" +#include "widgets/modest-account-settings-dialog.h" +#include "gnome/modest-account-assistant.h" +#include "gnome/modest-gnome-sort-dialog.h" +#include "widgets/modest-details-dialog.h" gboolean modest_platform_init (int argc, char *argv[]) @@ -113,7 +117,7 @@ modest_platform_show_uri_popup (const gchar *uri) } GdkPixbuf* -modest_platform_get_icon (const gchar *name) +modest_platform_get_icon (const gchar *name, guint icon_size) { GError *err = NULL; GdkPixbuf* pixbuf; @@ -123,9 +127,15 @@ modest_platform_get_icon (const gchar *name) pixbuf = gdk_pixbuf_new_from_file (name, &err); if (!pixbuf) { - g_printerr ("modest: error while loading icon '%s': %s\n", - name, err->message); +/* g_printerr ("modest: error while loading icon '%s': %s\n", */ +/* name, err->message); */ g_error_free (err); + err = NULL; + + pixbuf = gtk_icon_theme_load_icon (gtk_icon_theme_get_default (), name, icon_size, 0, &err); + if (!pixbuf) { + g_error_free (err); + } } return pixbuf; @@ -222,7 +232,8 @@ modest_platform_run_confirmation_dialog_with_buttons (GtkWindow *parent_window, void modest_platform_run_information_dialog (GtkWindow *parent_window, - const gchar *message) + const gchar *message, + gboolean block) { GtkWidget *dialog; @@ -254,6 +265,7 @@ gboolean modest_platform_connect_and_wait_if_network_account (GtkWindow *parent_ void modest_platform_connect_if_remote_and_perform (GtkWindow *parent_window, + gboolean force, TnyFolderStore *folder_store, ModestConnectedPerformer callback, gpointer user_data) @@ -295,7 +307,7 @@ modest_platform_connect_if_remote_and_perform (GtkWindow *parent_window, } } - modest_platform_connect_and_perform (parent_window, account, callback, user_data); + modest_platform_connect_and_perform (parent_window, force, account, callback, user_data); return; } @@ -307,11 +319,10 @@ gboolean modest_platform_set_update_interval (guint minutes) return FALSE; } -void -modest_platform_run_sort_dialog (GtkWindow *parent_window, - ModestSortDialogType type) +GtkWidget * +modest_platform_create_sort_dialog (GtkWindow *parent_window) { - /* TODO */ + return modest_gnome_sort_dialog_new (parent_window); } GtkWidget * @@ -320,9 +331,16 @@ modest_platform_get_global_settings_dialog () return modest_gnome_global_settings_dialog_new (); } +void +modest_platform_push_email_notification(void) +{ + /* TODO: implement this */ + g_print ("--------------- NEW MESSAGE ARRIVED ---------------\n"); +} void -modest_platform_on_new_headers_received (TnyList *header_list) +modest_platform_on_new_headers_received (TnyList *header_list, + gboolean show_visual) { /* TODO: implement this */ g_print ("--------------- NEW MESSAGE ARRIVED ---------------\n"); @@ -344,6 +362,15 @@ modest_platform_information_banner (GtkWidget *widget, g_message ("NOT IMPLEMENTED");; } +void +modest_platform_information_banner_with_timeout (GtkWidget *widget, + const gchar *icon_name, + const gchar *text, + gint timeout) +{ + g_message ("NOT IMPLEMENTED");; +} + GtkWidget * modest_platform_animation_banner (GtkWidget *widget, const gchar *icon_name, @@ -365,6 +392,7 @@ modest_platform_create_folder_view (TnyFolderStoreQuery *query) { GtkWidget *widget = modest_folder_view_new (query); + gtk_tree_view_set_headers_visible (GTK_TREE_VIEW (widget), FALSE); /* Show all accounts by default */ modest_folder_view_set_style (MODEST_FOLDER_VIEW (widget), MODEST_FOLDER_VIEW_STYLE_SHOW_ALL); @@ -382,6 +410,7 @@ modest_platform_run_alert_dialog (const gchar* prompt, void modest_platform_connect_and_perform (GtkWindow *parent_window, + gboolean force, TnyAccount *account, ModestConnectedPerformer callback, gpointer user_data) @@ -391,7 +420,18 @@ modest_platform_connect_and_perform (GtkWindow *parent_window, } void +modest_platform_double_connect_and_perform (GtkWindow *parent_window, + gboolean force, + TnyFolderStore *folder_store, + DoubleConnectionInfo *connect_info) +{ + if (connect_info->callback) + connect_info->callback (FALSE, NULL, parent_window, TNY_ACCOUNT (folder_store), connect_info->data); +} + +void modest_platform_connect_and_perform_if_network_account (GtkWindow *parent_window, + gboolean force, TnyAccount *account, ModestConnectedPerformer callback, gpointer user_data) @@ -412,7 +452,7 @@ modest_platform_connect_and_perform_if_network_folderstore (GtkWindow *parent_wi void -modest_platform_remove_new_mail_notifications (void) +modest_platform_remove_new_mail_notifications (gboolean only_visuals) { g_message ("NOT IMPLEMENTED %s", __FUNCTION__); } @@ -451,17 +491,64 @@ modest_platform_show_addressbook (GtkWindow *parent_window) GtkWidget * modest_platform_get_account_settings_dialog (ModestAccountSettings *settings) { - GtkWidget *dialog = gtk_message_dialog_new (NULL, GTK_DIALOG_MODAL, - GTK_MESSAGE_ERROR, GTK_BUTTONS_OK, - "NOT IMPLEMENTED"); - return dialog; + ModestAccountSettingsDialog *dialog = modest_account_settings_dialog_new (); + + modest_account_settings_dialog_set_account (dialog, settings); + return GTK_WIDGET (dialog); } GtkWidget * -modest_platform_get_account_settings_wizard () +modest_platform_get_account_settings_wizard (void) +{ + GtkWidget *widget = modest_account_assistant_new (modest_runtime_get_account_mgr ()); + return widget; +} + + + +gboolean modest_platform_check_memory_low (ModestWindow *win, + gboolean visuals) +{ + g_debug ("%s not implemented", __FUNCTION__); + return FALSE; +} + +void +modest_platform_run_folder_details_dialog (GtkWindow *parent_window, + TnyFolder *folder) { - GtkWidget *dialog = gtk_message_dialog_new (NULL, GTK_DIALOG_MODAL, - GTK_MESSAGE_ERROR, GTK_BUTTONS_OK, - "NOT IMPLEMENTED"); - return dialog; + GtkWidget *dialog; + + /* Create dialog */ + dialog = modest_details_dialog_new_with_folder (parent_window, folder); + + /* Run dialog */ + modest_window_mgr_set_modal (modest_runtime_get_window_mgr (), + GTK_WINDOW (dialog), + parent_window); + gtk_widget_show_all (dialog); + + g_signal_connect_swapped (dialog, "response", + G_CALLBACK (gtk_widget_destroy), + dialog); +} + +void +modest_platform_run_header_details_dialog (GtkWindow *parent_window, + TnyHeader *header) +{ + GtkWidget *dialog; + + /* Create dialog */ + dialog = modest_details_dialog_new_with_header (parent_window, header); + + /* Run dialog */ + modest_window_mgr_set_modal (modest_runtime_get_window_mgr (), + GTK_WINDOW (dialog), + parent_window); + gtk_widget_show_all (dialog); + + g_signal_connect_swapped (dialog, "response", + G_CALLBACK (gtk_widget_destroy), + dialog); }