From 67821bbcbabbf55f34b43c87934a0d1d27d25420 Mon Sep 17 00:00:00 2001 From: Xavier Claessens Date: Sat, 12 May 2007 19:42:35 +0000 Subject: [PATCH] [darcs-to-svn @ Save/Resore the visibility of main window and show account dialog if no account is enabled] svn path=/trunk/; revision=48 --- libempathy-gtk/empathy-main-window.c | 1 - libempathy-gtk/empathy-status-icon.c | 24 ++++++++++++++++++++++++ src/empathy-main.c | 10 ---------- 3 files changed, 24 insertions(+), 11 deletions(-) diff --git a/libempathy-gtk/empathy-main-window.c b/libempathy-gtk/empathy-main-window.c index dcee7408..b53f6666 100644 --- a/libempathy-gtk/empathy-main-window.c +++ b/libempathy-gtk/empathy-main-window.c @@ -331,7 +331,6 @@ empathy_main_window_show (void) window); main_window_update_status (window); - gtk_widget_show (window->window); return window->window; } diff --git a/libempathy-gtk/empathy-status-icon.c b/libempathy-gtk/empathy-status-icon.c index 0aa0a76a..5b764c6c 100644 --- a/libempathy-gtk/empathy-status-icon.c +++ b/libempathy-gtk/empathy-status-icon.c @@ -38,6 +38,7 @@ #include "gossip-presence-chooser.h" #include "gossip-preferences.h" #include "gossip-ui-utils.h" +#include "gossip-accounts-dialog.h" #define GET_PRIV(obj) (G_TYPE_INSTANCE_GET_PRIVATE ((obj), \ EMPATHY_TYPE_STATUS_ICON, EmpathyStatusIconPriv)) @@ -141,6 +142,8 @@ empathy_status_icon_new (GtkWindow *window) { EmpathyStatusIconPriv *priv; EmpathyStatusIcon *icon; + gboolean should_hide; + gboolean visible; g_return_val_if_fail (GTK_IS_WINDOW (window), NULL); @@ -153,6 +156,15 @@ empathy_status_icon_new (GtkWindow *window) G_CALLBACK (status_icon_delete_event_cb), icon); + gossip_conf_get_bool (gossip_conf_get (), + GOSSIP_PREFS_UI_MAIN_WINDOW_HIDDEN, + &should_hide); + visible = gossip_window_get_is_visible (window); + + if ((!should_hide && !visible) || (should_hide && visible)) { + status_icon_toggle_visibility (icon); + } + return icon; } @@ -201,9 +213,21 @@ status_icon_toggle_visibility (EmpathyStatusIcon *icon) gossip_conf_set_bool (gossip_conf_get (), GOSSIP_PREFS_UI_MAIN_WINDOW_HIDDEN, TRUE); } else { + GList *accounts; + gossip_window_present (GTK_WINDOW (priv->window), TRUE); gossip_conf_set_bool (gossip_conf_get (), GOSSIP_PREFS_UI_MAIN_WINDOW_HIDDEN, FALSE); + + /* Show the accounts dialog if there is no enabled accounts */ + accounts = mc_accounts_list_by_enabled (TRUE); + if (accounts) { + mc_accounts_list_free (accounts); + } else { + gossip_debug (DEBUG_DOMAIN, + "No enabled account, Showing account dialog"); + gossip_accounts_dialog_show (); + } } } diff --git a/src/empathy-main.c b/src/empathy-main.c index c632fa69..d693ba6b 100644 --- a/src/empathy-main.c +++ b/src/empathy-main.c @@ -36,7 +36,6 @@ #include #include #include -#include #include "empathy-filter.h" @@ -126,7 +125,6 @@ new_channel_cb (EmpathyFilter *filter, int main (int argc, char *argv[]) { - GList *accounts; EmpathyStatusIcon *icon; GtkWidget *window; MissionControl *mc; @@ -159,14 +157,6 @@ main (int argc, char *argv[]) window = empathy_main_window_show (); icon = empathy_status_icon_new (GTK_WINDOW (window)); - /* Show the accounts dialog if there is no enabled accounts */ - accounts = mc_accounts_list_by_enabled (TRUE); - if (accounts) { - mc_accounts_list_free (accounts); - } else { - gossip_accounts_dialog_show (); - } - gtk_main (); mission_control_set_presence (mc, -- 2.39.2