aboutsummaryrefslogtreecommitdiffstats
path: root/modules/mail/e-mail-shell-content.c
diff options
context:
space:
mode:
authorMatthew Barnes <mbarnes@redhat.com>2010-05-29 03:57:44 +0800
committerMatthew Barnes <mbarnes@redhat.com>2010-05-29 03:57:44 +0800
commit732e7096a18a2e2bb9074bdf8026af037d9f8685 (patch)
tree5fe2132433d9d733861b350fe640ff69bfa7eeff /modules/mail/e-mail-shell-content.c
parentdb89f125033c70a3043be9b0a3061ef1e66d9428 (diff)
downloadgsoc2013-evolution-732e7096a18a2e2bb9074bdf8026af037d9f8685.tar
gsoc2013-evolution-732e7096a18a2e2bb9074bdf8026af037d9f8685.tar.gz
gsoc2013-evolution-732e7096a18a2e2bb9074bdf8026af037d9f8685.tar.bz2
gsoc2013-evolution-732e7096a18a2e2bb9074bdf8026af037d9f8685.tar.lz
gsoc2013-evolution-732e7096a18a2e2bb9074bdf8026af037d9f8685.tar.xz
gsoc2013-evolution-732e7096a18a2e2bb9074bdf8026af037d9f8685.tar.zst
gsoc2013-evolution-732e7096a18a2e2bb9074bdf8026af037d9f8685.zip
Bug 613038 - Preview pane size not remembered
Converted size restoration of all preview panes to be triggered by EShellWindow::shell-view-created signal. The signal is emitted when the view is fully initialized and visible. Shell views can use that as a trigger for restoring pane sizes from GConf.
Diffstat (limited to 'modules/mail/e-mail-shell-content.c')
-rw-r--r--modules/mail/e-mail-shell-content.c48
1 files changed, 34 insertions, 14 deletions
diff --git a/modules/mail/e-mail-shell-content.c b/modules/mail/e-mail-shell-content.c
index ecd592f32b..d029b469b3 100644
--- a/modules/mail/e-mail-shell-content.c
+++ b/modules/mail/e-mail-shell-content.c
@@ -227,6 +227,31 @@ mail_shell_content_message_selected_cb (EMailShellContent *mail_shell_content,
g_free (group_name);
}
+static void
+mail_shell_content_restore_state_cb (EShellWindow *shell_window,
+ EShellView *shell_view,
+ EShellContent *shell_content)
+{
+ EMailShellContentPrivate *priv;
+ GConfBridge *bridge;
+ GObject *object;
+ const gchar *key;
+
+ priv = E_MAIL_SHELL_CONTENT_GET_PRIVATE (shell_content);
+
+ /* Bind GObject properties to GConf keys. */
+
+ bridge = gconf_bridge_get ();
+
+ object = G_OBJECT (priv->paned);
+ key = "/apps/evolution/mail/display/hpaned_size";
+ gconf_bridge_bind_property (bridge, key, object, "hposition");
+
+ object = G_OBJECT (priv->paned);
+ key = "/apps/evolution/mail/display/paned_size";
+ gconf_bridge_bind_property (bridge, key, object, "vposition");
+}
+
static GtkOrientation
mail_shell_content_get_orientation (EMailShellContent *mail_shell_content)
{
@@ -365,15 +390,14 @@ mail_shell_content_constructed (GObject *object)
EMailShellContentPrivate *priv;
EShellContent *shell_content;
EShellBackend *shell_backend;
+ EShellWindow *shell_window;
EShellView *shell_view;
ESearchBar *search_bar;
EMailReader *reader;
GtkWidget *message_list;
- GConfBridge *bridge;
GtkWidget *container;
GtkWidget *widget;
EWebView *web_view;
- const gchar *key;
priv = E_MAIL_SHELL_CONTENT_GET_PRIVATE (object);
priv->html_display = em_format_html_display_new ();
@@ -383,6 +407,7 @@ mail_shell_content_constructed (GObject *object)
shell_content = E_SHELL_CONTENT (object);
shell_view = e_shell_content_get_shell_view (shell_content);
+ shell_window = e_shell_view_get_shell_window (shell_view);
shell_backend = e_shell_view_get_shell_backend (shell_view);
web_view = E_WEB_VIEW (EM_FORMAT_HTML (priv->html_display)->html);
@@ -439,18 +464,6 @@ mail_shell_content_constructed (GObject *object)
e_mail_shell_content_update_view_instance (
E_MAIL_SHELL_CONTENT (shell_content));
- /* Bind GObject properties to GConf keys. */
-
- bridge = gconf_bridge_get ();
-
- object = G_OBJECT (priv->paned);
- key = "/apps/evolution/mail/display/hpaned_size";
- gconf_bridge_bind_property (bridge, key, object, "hposition");
-
- object = G_OBJECT (priv->paned);
- key = "/apps/evolution/mail/display/paned_size";
- gconf_bridge_bind_property (bridge, key, object, "vposition");
-
/* Message list customizations. */
reader = E_MAIL_READER (shell_content);
@@ -461,6 +474,13 @@ mail_shell_content_constructed (GObject *object)
G_CALLBACK (mail_shell_content_message_selected_cb),
shell_content);
+ /* Restore pane positions from the last session once
+ * the shell view is fully initialized and visible. */
+ g_signal_connect (
+ shell_window, "shell-view-created::mail",
+ G_CALLBACK (mail_shell_content_restore_state_cb),
+ shell_content);
+
e_mail_reader_connect_headers (reader);
}