* Fixes NB#102281, do not show "edit accounts" if there are no accounts
[modest] / src / hildon2 / modest-accounts-window.c
index a9f9e59..88fe5f1 100644 (file)
@@ -66,12 +66,20 @@ static gboolean _modest_accounts_window_map_event (GtkWidget *widget,
                                                   GdkEvent *event,
                                                   gpointer userdata);
 static void update_progress_hint (ModestAccountsWindow *self);
-
+static void on_row_inserted (GtkTreeModel *tree_model,
+                            GtkTreePath  *path,
+                            GtkTreeIter  *iter,
+                            gpointer      user_data);
+static void on_row_deleted (GtkTreeModel *tree_model,
+                           GtkTreePath  *path,
+                           gpointer      user_data);
+static void row_count_changed (ModestAccountsWindow *self);
 
 typedef struct _ModestAccountsWindowPrivate ModestAccountsWindowPrivate;
 struct _ModestAccountsWindowPrivate {
 
        GtkWidget *account_view;
+       GtkWidget *no_accounts_label;
 
        /* signals */
        GSList *sighandlers;
@@ -171,6 +179,7 @@ static void
 connect_signals (ModestAccountsWindow *self)
 {
        ModestAccountsWindowPrivate *priv;
+       GtkTreeModel *model;
 
        priv = MODEST_ACCOUNTS_WINDOW_GET_PRIVATE(self);
 
@@ -186,6 +195,20 @@ connect_signals (ModestAccountsWindow *self)
                                           "progress-list-changed",
                                           G_CALLBACK (on_progress_list_changed), self);
 
+       model = gtk_tree_view_get_model (GTK_TREE_VIEW (priv->account_view));
+
+       priv->sighandlers =
+               modest_signal_mgr_connect (priv->sighandlers,
+                                          G_OBJECT (model),
+                                          "row-inserted",
+                                          G_CALLBACK (on_row_inserted), self);
+
+       priv->sighandlers =
+               modest_signal_mgr_connect (priv->sighandlers,
+                                          G_OBJECT (model),
+                                          "row-deleted",
+                                          G_CALLBACK (on_row_deleted), self);
+
        /* we don't register this in sighandlers, as it should be run
         * after disconnecting all signals, in destroy stage */
 }
@@ -198,20 +221,29 @@ modest_accounts_window_new (void)
        HildonProgram *app;
        GdkPixbuf *window_icon;
        GtkWidget *pannable;
+       GtkWidget *box;
 
        self  = MODEST_ACCOUNTS_WINDOW(g_object_new(MODEST_TYPE_ACCOUNTS_WINDOW, NULL));
        priv = MODEST_ACCOUNTS_WINDOW_GET_PRIVATE(self);
 
+       box = gtk_vbox_new (FALSE, 0);
+
+       priv->no_accounts_label = gtk_label_new (_("mcen_ia_noaccounts"));
+       gtk_misc_set_alignment (GTK_MISC (priv->no_accounts_label), 0.5, 0.0);
+       gtk_box_pack_start (GTK_BOX (box), priv->no_accounts_label, TRUE, TRUE, 0);
+
        pannable = hildon_pannable_area_new ();
        priv->account_view  = GTK_WIDGET (modest_account_view_new (modest_runtime_get_account_mgr ()));
 
        setup_menu (self);
 
        gtk_container_add (GTK_CONTAINER (pannable), priv->account_view);
-       gtk_container_add (GTK_CONTAINER (self), pannable);
+       gtk_box_pack_start (GTK_BOX (box), pannable, TRUE, TRUE, 0);
+       gtk_container_add (GTK_CONTAINER (self), box);
 
        gtk_widget_show (priv->account_view);
        gtk_widget_show (pannable);
+       gtk_widget_show (box);
 
        connect_signals (MODEST_ACCOUNTS_WINDOW (self));
 
@@ -243,6 +275,8 @@ modest_accounts_window_new (void)
                          G_OBJECT (self));
        update_progress_hint (self);
 
+       row_count_changed (self);
+
 
        return MODEST_WINDOW(self);
 }
@@ -270,22 +304,22 @@ setup_menu (ModestAccountsWindow *self)
                                           NULL);
        modest_hildon2_window_add_to_menu (MODEST_HILDON2_WINDOW (self), _("mcen_me_edit_accounts"), NULL,
                                           APP_MENU_CALLBACK (modest_ui_actions_on_accounts), 
-                                          NULL);
-       modest_hildon2_window_add_to_menu (MODEST_HILDON2_WINDOW (self), _("mcen_me_inbox_options"), NULL,
-                                          APP_MENU_CALLBACK (modest_ui_actions_on_settings), 
-                                          NULL);
+                                          MODEST_DIMMING_CALLBACK (modest_ui_dimming_rules_on_edit_accounts));
        modest_hildon2_window_add_to_menu (MODEST_HILDON2_WINDOW (self), _("mcen_me_inbox_globalsmtpservers"), NULL,
                                           APP_MENU_CALLBACK (modest_ui_actions_on_smtp_servers),
                                           MODEST_DIMMING_CALLBACK (modest_ui_dimming_rules_on_tools_smtp_servers));
-       modest_hildon2_window_add_to_menu (MODEST_HILDON2_WINDOW (self), _("mcen_me_new_message"), "<Control>n",
-                                          APP_MENU_CALLBACK (modest_ui_actions_on_new_msg),
-                                          MODEST_DIMMING_CALLBACK (modest_ui_dimming_rules_on_new_msg));
        modest_hildon2_window_add_to_menu (MODEST_HILDON2_WINDOW (self), _("mcen_me_inbox_sendandreceive"), NULL,
                                           APP_MENU_CALLBACK (modest_ui_actions_on_send_receive),
                                           MODEST_DIMMING_CALLBACK (modest_ui_dimming_rules_on_send_receive_all));
        modest_hildon2_window_add_to_menu (MODEST_HILDON2_WINDOW (self), _("mcen_me_outbox_cancelsend"), NULL,
                                           APP_MENU_CALLBACK (modest_ui_actions_cancel_send),
                                           MODEST_DIMMING_CALLBACK (modest_ui_dimming_rules_on_cancel_sending_all));
+       modest_hildon2_window_add_to_menu (MODEST_HILDON2_WINDOW (self), _("mcen_me_inbox_options"), NULL,
+                                          APP_MENU_CALLBACK (modest_ui_actions_on_settings), 
+                                          NULL);
+       modest_hildon2_window_add_to_menu (MODEST_HILDON2_WINDOW (self), _("mcen_me_new_message"), "<Control>n",
+                                          APP_MENU_CALLBACK (modest_ui_actions_on_new_msg),
+                                          MODEST_DIMMING_CALLBACK (modest_ui_dimming_rules_on_new_msg));
 }
 
 
@@ -298,6 +332,7 @@ on_account_activated (GtkTreeView *account_view,
        ModestAccountsWindowPrivate *priv;
        gchar* account_name; 
        GtkWidget *folder_window;
+       gboolean registered;
 
        priv = MODEST_ACCOUNTS_WINDOW_GET_PRIVATE (self);
 
@@ -306,16 +341,21 @@ on_account_activated (GtkTreeView *account_view,
                return;
 
        folder_window = GTK_WIDGET (modest_folder_window_new (NULL));
-       modest_window_mgr_register_window (modest_runtime_get_window_mgr (), 
-                                          MODEST_WINDOW (folder_window),
-                                          MODEST_WINDOW (self));
-       modest_folder_window_set_account (MODEST_FOLDER_WINDOW (folder_window), account_name);
-       gtk_widget_show (folder_window);
+       registered = modest_window_mgr_register_window (modest_runtime_get_window_mgr (), 
+                                                       MODEST_WINDOW (folder_window),
+                                                       MODEST_WINDOW (self));
+
+       if (!registered) {
+               gtk_widget_destroy (folder_window);
+               folder_window = NULL;
+       } else {
+               modest_folder_window_set_account (MODEST_FOLDER_WINDOW (folder_window), account_name);
+               gtk_widget_show (folder_window);
+       }
        g_free (account_name);
-
 }
 
-static gboolean 
+static gboolean
 _modest_accounts_window_map_event (GtkWidget *widget,
                                   GdkEvent *event,
                                   gpointer userdata)
@@ -348,3 +388,48 @@ on_progress_list_changed (ModestWindowMgr *mgr,
 {
        update_progress_hint (self);
 }
+
+static void
+on_row_inserted (GtkTreeModel *tree_model,
+                GtkTreePath  *path,
+                GtkTreeIter  *iter,
+                gpointer      user_data)
+{
+       ModestAccountsWindow *self;
+
+       self = (ModestAccountsWindow *) user_data;
+
+       row_count_changed (self);
+}
+
+static void
+on_row_deleted (GtkTreeModel *tree_model,
+               GtkTreePath  *path,
+               gpointer      user_data)
+{
+       ModestAccountsWindow *self;
+
+       self = (ModestAccountsWindow *) user_data;
+
+       row_count_changed (self);
+}
+
+static void row_count_changed (ModestAccountsWindow *self)
+{
+       ModestAccountsWindowPrivate *priv;
+       GtkTreeModel *model;
+       gint count;
+       
+       priv = MODEST_ACCOUNTS_WINDOW_GET_PRIVATE (self);
+       model = gtk_tree_view_get_model (GTK_TREE_VIEW (priv->account_view));
+
+       count = gtk_tree_model_iter_n_children (model, NULL);
+
+       if (count == 0) {
+               gtk_widget_hide (priv->account_view);
+               gtk_widget_show (priv->no_accounts_label);
+       } else {
+               gtk_widget_hide (priv->no_accounts_label);
+               gtk_widget_show (priv->account_view);
+       }
+}