]> git.0d.be Git - empathy.git/blobdiff - libempathy-gtk/empathy-main-window.c
[darcs-to-svn @ Save/Resore the visibility of main window and show account dialog...
[empathy.git] / libempathy-gtk / empathy-main-window.c
index a34ad5bffb082c0f12d0db808cbee671469cbcc1..b53f666635c147678c601c3e35933e2afd5f216d 100644 (file)
 #include <glade/glade.h>
 #include <glib/gi18n.h>
 
-#include <libtelepathy/tp-helpers.h>
-#include <libmissioncontrol/mission-control.h>
-
 #include <libempathy/gossip-conf.h>
 #include <libempathy/gossip-contact.h>
 #include <libempathy/gossip-debug.h>
+#include <libempathy/gossip-utils.h>
 
 #include "empathy-main-window.h"
 #include "ephy-spinner.h"
@@ -52,9 +50,6 @@
 /* Accels (menu shortcuts) can be configured and saved */
 #define ACCELS_FILENAME "accels.txt"
 
-/* Flashing delay for icons (milliseconds). */
-#define FLASH_TIMEOUT 500
-
 /* Name in the geometry file */
 #define GEOMETRY_NAME "main-window"
 
@@ -80,9 +75,9 @@ typedef struct {
        /* Throbber */
        GtkWidget         *throbber;
 
-       /* Widgets that are enabled when we're connected/disconnected */
-       GList             *widgets_connected;
-       GList             *widgets_disconnected;
+       /* Widgets that are enabled when there is... */
+       GList             *widgets_connected;           /* ... connected accounts */
+       GList             *widgets_disconnected;        /* ... disconnected accounts */
 
        /* Status popup */
        GtkWidget         *presence_toolbar;
@@ -92,69 +87,68 @@ typedef struct {
        guint              size_timeout_id;
 } EmpathyMainWindow;
 
-static void     main_window_destroy_cb                     (GtkWidget           *widget,
-                                                           EmpathyMainWindow   *window);
+static void     main_window_destroy_cb                     (GtkWidget                       *widget,
+                                                           EmpathyMainWindow               *window);
 static void     main_window_favorite_chatroom_menu_setup   (void);
-static void     main_window_chat_quit_cb                   (GtkWidget           *widget,
-                                                           EmpathyMainWindow   *window);
-static void     main_window_chat_new_message_cb            (GtkWidget           *widget,
-                                                           EmpathyMainWindow   *window);
-static void     main_window_chat_history_cb                (GtkWidget           *widget,
-                                                           EmpathyMainWindow   *window);
-static void     main_window_room_join_new_cb               (GtkWidget           *widget,
-                                                           EmpathyMainWindow   *window);
-static void     main_window_room_join_favorites_cb         (GtkWidget           *widget,
-                                                           EmpathyMainWindow   *window);
-static void     main_window_room_manage_favorites_cb       (GtkWidget           *widget,
-                                                           EmpathyMainWindow   *window);
-static void     main_window_chat_add_contact_cb            (GtkWidget           *widget,
-                                                           EmpathyMainWindow   *window);
-static void     main_window_chat_show_offline_cb           (GtkCheckMenuItem    *item,
-                                                           EmpathyMainWindow   *window);
-static gboolean main_window_edit_button_press_event_cb     (GtkWidget           *widget,
-                                                           GdkEventButton      *event,
-                                                           EmpathyMainWindow   *window);
-static void     main_window_edit_accounts_cb               (GtkWidget           *widget,
-                                                           EmpathyMainWindow   *window);
-static void     main_window_edit_personal_information_cb   (GtkWidget           *widget,
-                                                           EmpathyMainWindow   *window);
-static void     main_window_edit_preferences_cb            (GtkWidget           *widget,
-                                                           EmpathyMainWindow   *window);
-static void     main_window_help_about_cb                  (GtkWidget           *widget,
-                                                           EmpathyMainWindow   *window);
-static void     main_window_help_contents_cb               (GtkWidget           *widget,
-                                                           EmpathyMainWindow   *window);
-static gboolean main_window_throbber_button_press_event_cb (GtkWidget           *throbber_ebox,
-                                                           GdkEventButton      *event,
-                                                           gpointer             user_data);
+static void     main_window_chat_quit_cb                   (GtkWidget                       *widget,
+                                                           EmpathyMainWindow               *window);
+static void     main_window_chat_new_message_cb            (GtkWidget                       *widget,
+                                                           EmpathyMainWindow               *window);
+static void     main_window_chat_history_cb                (GtkWidget                       *widget,
+                                                           EmpathyMainWindow               *window);
+static void     main_window_room_join_new_cb               (GtkWidget                       *widget,
+                                                           EmpathyMainWindow               *window);
+static void     main_window_room_join_favorites_cb         (GtkWidget                       *widget,
+                                                           EmpathyMainWindow               *window);
+static void     main_window_room_manage_favorites_cb       (GtkWidget                       *widget,
+                                                           EmpathyMainWindow               *window);
+static void     main_window_chat_add_contact_cb            (GtkWidget                       *widget,
+                                                           EmpathyMainWindow               *window);
+static void     main_window_chat_show_offline_cb           (GtkCheckMenuItem                *item,
+                                                           EmpathyMainWindow               *window);
+static gboolean main_window_edit_button_press_event_cb     (GtkWidget                       *widget,
+                                                           GdkEventButton                  *event,
+                                                           EmpathyMainWindow               *window);
+static void     main_window_edit_accounts_cb               (GtkWidget                       *widget,
+                                                           EmpathyMainWindow               *window);
+static void     main_window_edit_personal_information_cb   (GtkWidget                       *widget,
+                                                           EmpathyMainWindow               *window);
+static void     main_window_edit_preferences_cb            (GtkWidget                       *widget,
+                                                           EmpathyMainWindow               *window);
+static void     main_window_help_about_cb                  (GtkWidget                       *widget,
+                                                           EmpathyMainWindow               *window);
+static void     main_window_help_contents_cb               (GtkWidget                       *widget,
+                                                           EmpathyMainWindow               *window);
+static gboolean main_window_throbber_button_press_event_cb (GtkWidget                       *throbber_ebox,
+                                                           GdkEventButton                  *event,
+                                                           gpointer                         user_data);
+static void     main_window_status_changed_cb              (MissionControl                  *mc,
+                                                           TelepathyConnectionStatus        status,
+                                                           McPresence                       presence,
+                                                           TelepathyConnectionStatusReason  reason,
+                                                           const gchar                     *unique_name,
+                                                           EmpathyMainWindow               *window);
+static void     main_window_update_status                  (EmpathyMainWindow               *window);
 static void     main_window_accels_load                    (void);
 static void     main_window_accels_save                    (void);
-static void     main_window_connection_items_setup         (EmpathyMainWindow   *window,
-                                                           GladeXML            *glade);
-//static void     main_window_connection_items_update        (void);
-static void     main_window_presence_changed_cb            (DBusGProxy          *proxy,
-                                                           McPresence           state,
-                                                           EmpathyMainWindow   *window);
-static void     main_window_presence_chooser_changed_cb    (GtkWidget           *chooser,
-                                                           McPresence           state,
-                                                           const gchar         *status,
-                                                           EmpathyMainWindow   *window);
-static gboolean main_window_configure_event_timeout_cb     (EmpathyMainWindow   *window);
-static gboolean main_window_configure_event_cb             (GtkWidget           *widget,
-                                                           GdkEventConfigure   *event,
-                                                           EmpathyMainWindow   *window);
-static void     main_window_notify_show_offline_cb         (GossipConf          *conf,
-                                                           const gchar         *key,
-                                                           gpointer             check_menu_item);
-static void     main_window_notify_show_avatars_cb         (GossipConf          *conf,
-                                                           const gchar         *key,
-                                                           EmpathyMainWindow   *window);
-static void     main_window_notify_compact_contact_list_cb (GossipConf          *conf,
-                                                           const gchar         *key,
-                                                           EmpathyMainWindow   *window);
-static void     main_window_notify_sort_criterium_cb       (GossipConf          *conf,
-                                                           const gchar         *key,
-                                                           EmpathyMainWindow   *window);
+static void     main_window_connection_items_setup         (EmpathyMainWindow               *window,
+                                                           GladeXML                        *glade);
+static gboolean main_window_configure_event_timeout_cb     (EmpathyMainWindow               *window);
+static gboolean main_window_configure_event_cb             (GtkWidget                       *widget,
+                                                           GdkEventConfigure               *event,
+                                                           EmpathyMainWindow               *window);
+static void     main_window_notify_show_offline_cb         (GossipConf                      *conf,
+                                                           const gchar                     *key,
+                                                           gpointer                         check_menu_item);
+static void     main_window_notify_show_avatars_cb         (GossipConf                      *conf,
+                                                           const gchar                     *key,
+                                                           EmpathyMainWindow               *window);
+static void     main_window_notify_compact_contact_list_cb (GossipConf                      *conf,
+                                                           const gchar                     *key,
+                                                           EmpathyMainWindow               *window);
+static void     main_window_notify_sort_criterium_cb       (GossipConf                      *conf,
+                                                           const gchar                     *key,
+                                                           EmpathyMainWindow               *window);
 
 GtkWidget *
 empathy_main_window_show (void)
@@ -167,7 +161,6 @@ empathy_main_window_show (void)
        GtkWidget                *ebox;
        GtkToolItem              *item;
        gchar                    *str;
-       McPresence                state;
        gboolean                  show_offline;
        gboolean                  show_avatars;
        gboolean                  compact_contact_list;
@@ -221,6 +214,10 @@ empathy_main_window_show (void)
        g_object_unref (glade);
 
        window->tooltips = g_object_ref_sink (gtk_tooltips_new ());
+       window->mc = gossip_mission_control_new ();
+       dbus_g_proxy_connect_signal (DBUS_G_PROXY (window->mc), "AccountStatusChanged",
+                                    G_CALLBACK (main_window_status_changed_cb),
+                                    window, NULL);
 
        /* Set up menu */
        main_window_favorite_chatroom_menu_setup ();
@@ -228,27 +225,9 @@ empathy_main_window_show (void)
        gtk_widget_hide (window->edit_context);
        gtk_widget_hide (window->edit_context_separator);
 
-       /* Set up presence chooser
-        * FIXME: Update status message not yet supported by MC 
-        */
-       window->mc = mission_control_new (tp_get_bus ());
+       /* Set up presence chooser */
        window->presence_chooser = gossip_presence_chooser_new ();
        gtk_widget_show (window->presence_chooser);
-       gossip_presence_chooser_set_flash_interval (GOSSIP_PRESENCE_CHOOSER (window->presence_chooser),
-                                                   FLASH_TIMEOUT);
-       state = mission_control_get_presence (window->mc, NULL);
-       gossip_presence_chooser_set_state (GOSSIP_PRESENCE_CHOOSER (window->presence_chooser),
-                                          state);
-       dbus_g_proxy_connect_signal (DBUS_G_PROXY (window->mc),
-                                    "PresenceStatusRequested",
-                                    G_CALLBACK (main_window_presence_changed_cb),
-                                    window, NULL);
-       g_signal_connect (window->presence_chooser,
-                         "changed",
-                         G_CALLBACK (main_window_presence_chooser_changed_cb),
-                         window);
-
-
        item = gtk_tool_item_new ();
        gtk_widget_show (GTK_WIDGET (item));
        gtk_container_add (GTK_CONTAINER (item), window->presence_chooser);
@@ -256,9 +235,6 @@ empathy_main_window_show (void)
        gtk_tool_item_set_expand (item, TRUE);
        gtk_toolbar_insert (GTK_TOOLBAR (window->presence_toolbar), item, -1);
 
-       window->widgets_connected = g_list_prepend (window->widgets_connected,
-                                                 window->presence_chooser);
-
        /* Set up the throbber */
        ebox = gtk_event_box_new ();
        gtk_event_box_set_visible_window (GTK_EVENT_BOX (ebox), FALSE);
@@ -354,7 +330,7 @@ empathy_main_window_show (void)
                                              GOSSIP_PREFS_CONTACTS_SORT_CRITERIUM,
                                              window);
 
-       gtk_widget_show (window->window);
+       main_window_update_status (window);
 
        return window->window;
 }
@@ -366,6 +342,10 @@ main_window_destroy_cb (GtkWidget         *widget,
        /* Save user-defined accelerators. */
        main_window_accels_save ();
 
+       dbus_g_proxy_disconnect_signal (DBUS_G_PROXY (window->mc), "AccountStatusChanged",
+                                       G_CALLBACK (main_window_status_changed_cb),
+                                       window);
+
        if (window->size_timeout_id) {
                g_source_remove (window->size_timeout_id);
        }
@@ -388,7 +368,7 @@ static void
 main_window_chat_quit_cb (GtkWidget         *widget,
                          EmpathyMainWindow *window)
 {
-       gtk_widget_destroy (window->window);
+       gtk_main_quit ();
 }
 
 static void
@@ -561,109 +541,68 @@ main_window_throbber_button_press_event_cb (GtkWidget      *throbber_ebox,
 
        return FALSE;
 }
-#if 0
-static void
-main_window_session_protocol_connecting_cb (GossipSession  *session,
-                                   GossipAccount  *account,
-                                   GossipProtocol *protocol,
-                                   gpointer        user_data)
-{
-       GossipAppPriv *priv;
-       const gchar   *name;
-
-       priv = GET_PRIV (app);
-
-       name = gossip_account_get_name (account);
-       gossip_debug (DEBUG_DOMAIN, "Connecting account:'%s'", name);
-
-       ephy_spinner_start (EPHY_SPINNER (window->throbber));
-}
 
 static void
-main_window_session_protocol_connected_cb (GossipSession  *session,
-                                  GossipAccount  *account,
-                                  GossipProtocol *protocol,
-                                  gpointer        user_data)
+main_window_status_changed_cb (MissionControl                  *mc,
+                              TelepathyConnectionStatus        status,
+                              McPresence                       presence,
+                              TelepathyConnectionStatusReason  reason,
+                              const gchar                     *unique_name,
+                              EmpathyMainWindow               *window)
 {
-       GossipAppPriv *priv;
-       gboolean       connecting;
-       const gchar   *name;
-
-       priv = GET_PRIV (app);
-
-       name = gossip_account_get_name (account);
-       gossip_debug (DEBUG_DOMAIN, "Connected account:'%s'", name);
-
-       gossip_session_count_accounts (window->session,
-                                      NULL,
-                                      &connecting,
-                                      NULL);
-
-       if (connecting < 1) {
-               ephy_spinner_stop (EPHY_SPINNER (window->throbber));
-       }
-
-       g_hash_table_remove (window->errors, account);
-       g_hash_table_remove (window->reconnects, account);
-
-       app_connection_items_update ();
-       app_favorite_chatroom_menu_update ();
-
-       /* Use saved presence */
-       gossip_app_set_presence (gossip_status_presets_get_default_state (),
-                                gossip_status_presets_get_default_status());
-
-       app_presence_updated ();
+       main_window_update_status (window);
 }
 
 static void
-main_window_session_protocol_disconnected_cb (GossipSession  *session,
-                                     GossipAccount  *account,
-                                     GossipProtocol *protocol,
-                                     gint            reason,
-                                     gpointer        user_data)
-{
-       GossipAppPriv *priv;
-       gboolean       connecting;
-       gboolean       should_reconnect;
-       const gchar   *name;
-
-       priv = GET_PRIV (app);
-
-       name = gossip_account_get_name (account);
-       gossip_debug (DEBUG_DOMAIN, "Disconnected account:'%s'", name);
+main_window_update_status (EmpathyMainWindow *window)
+{
+       GList *accounts, *l;
+       guint  connected = 0;
+       guint  connecting = 0;
+       guint  disconnected = 0;
+
+       /* Count number of connected/connecting/disconnected accounts */
+       accounts = mc_accounts_list (); 
+       for (l = accounts; l; l = l->next) {
+               McAccount *account;
+               guint      status;
+
+               account = l->data;
+
+               status = mission_control_get_connection_status (window->mc,
+                                                               account,
+                                                               NULL);
+
+               if (status == 0) {
+                       connected++;
+               } else if (status == 1) {
+                       connecting++;
+               } else if (status == 2) {
+                       disconnected++;
+               }
 
-       gossip_session_count_accounts (window->session,
-                                      NULL,
-                                      &connecting,
-                                      NULL);
+               g_object_unref (account);
+       }
+       g_list_free (accounts);
 
-       if (connecting < 1) {
+       /* Update the spinner state */
+       if (connecting > 0) {
+               ephy_spinner_start (EPHY_SPINNER (window->throbber));
+       } else {
                ephy_spinner_stop (EPHY_SPINNER (window->throbber));
        }
 
-       app_connection_items_update ();
-       app_favorite_chatroom_menu_update ();
-       app_presence_updated ();
-
-       should_reconnect = reason != GOSSIP_PROTOCOL_DISCONNECT_ASKED;
-
-
-       should_reconnect &= !g_hash_table_lookup (window->reconnects, account);
-
-       if (should_reconnect) {
-               guint id;
+       /* Update widgets sensibility */
+       for (l = window->widgets_connected; l; l = l->next) {
+               gtk_widget_set_sensitive (l->data, (connected > 0));
+       }
 
-               /* Unexpected disconnection, try to reconnect */
-               id = g_timeout_add (RETRY_CONNECT_TIMEOUT * 1000,
-                                   (GSourceFunc) app_reconnect_cb,
-                                   account);
-               g_hash_table_insert (window->reconnects,
-                                    g_object_ref (account),
-                                    &id);
+       for (l = window->widgets_disconnected; l; l = l->next) {
+               gtk_widget_set_sensitive (l->data, (disconnected > 0));
        }
+
+       //app_favorite_chatroom_menu_update (); 
 }
-#endif
 
 /*
  * Accels
@@ -707,14 +646,12 @@ main_window_connection_items_setup (EmpathyMainWindow *window,
        GtkWidget     *w;
        gint           i;
        const gchar *widgets_connected[] = {
-               "chat_disconnect",
                "room",
                "chat_new_message",
                "chat_add_contact",
                "edit_personal_information"
        };
        const gchar *widgets_disconnected[] = {
-               "chat_connect"
        };
 
        for (i = 0, list = NULL; i < G_N_ELEMENTS (widgets_connected); i++) {
@@ -732,55 +669,6 @@ main_window_connection_items_setup (EmpathyMainWindow *window,
        window->widgets_disconnected = list;
 }
 
-#if 0
-FIXME:
-static void
-main_window_connection_items_update (void)
-{
-       GList         *l;
-       guint          connected = 0;
-       guint          disconnected = 0;
-
-       /* Get account count for:
-        *  - connected and disabled,
-        *  - connected and enabled
-        *  - disabled and enabled
-        */
-       gossip_session_count_accounts (window->session,
-                                      &connected,
-                                      NULL,
-                                      &disconnected);
-
-       for (l = window->widgets_connected; l; l = l->next) {
-               gtk_widget_set_sensitive (l->data, (connected > 0));
-       }
-
-       for (l = window->widgets_disconnected; l; l = l->next) {
-               gtk_widget_set_sensitive (l->data, (disconnected > 0));
-       }
-}
-#endif
-
-static void
-main_window_presence_changed_cb (DBusGProxy        *proxy,
-                                McPresence         state,
-                                EmpathyMainWindow *window)
-{
-       gossip_debug (DEBUG_DOMAIN, "presence changed to %d", state);
-       gossip_presence_chooser_set_state (GOSSIP_PRESENCE_CHOOSER (window->presence_chooser),
-                                          state);
-}
-
-static void
-main_window_presence_chooser_changed_cb (GtkWidget         *chooser,
-                                        McPresence         state,
-                                        const gchar       *status,
-                                        EmpathyMainWindow *window)
-{
-       gossip_status_presets_set_default (state, status);
-       mission_control_set_presence (window->mc, state, status, NULL, NULL);
-}
-
 static gboolean
 main_window_configure_event_timeout_cb (EmpathyMainWindow *window)
 {