aboutsummaryrefslogtreecommitdiffstats
path: root/lib/ephy-state.c
diff options
context:
space:
mode:
authorMarco Pesenti Gritti <mpeseng@src.gnome.org>2002-12-31 03:29:24 +0800
committerMarco Pesenti Gritti <mpeseng@src.gnome.org>2002-12-31 03:29:24 +0800
commit6876ede98282c7db318089bfefb292aa59e55d48 (patch)
tree76b23252d04da232d0ebf22e53bfe3e022686af9 /lib/ephy-state.c
downloadgsoc2013-epiphany-6876ede98282c7db318089bfefb292aa59e55d48.tar
gsoc2013-epiphany-6876ede98282c7db318089bfefb292aa59e55d48.tar.gz
gsoc2013-epiphany-6876ede98282c7db318089bfefb292aa59e55d48.tar.bz2
gsoc2013-epiphany-6876ede98282c7db318089bfefb292aa59e55d48.tar.lz
gsoc2013-epiphany-6876ede98282c7db318089bfefb292aa59e55d48.tar.xz
gsoc2013-epiphany-6876ede98282c7db318089bfefb292aa59e55d48.tar.zst
gsoc2013-epiphany-6876ede98282c7db318089bfefb292aa59e55d48.zip
Initial revision
Diffstat (limited to 'lib/ephy-state.c')
-rw-r--r--lib/ephy-state.c157
1 files changed, 157 insertions, 0 deletions
diff --git a/lib/ephy-state.c b/lib/ephy-state.c
new file mode 100644
index 000000000..245cc38b1
--- /dev/null
+++ b/lib/ephy-state.c
@@ -0,0 +1,157 @@
+/*
+ * Copyright (C) 2001 Matthew Mueller
+ * (C) 2002 Jorn Baayen <jorn@nl.linux.org>
+ *
+ * This program is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation; either version 2, or (at your option)
+ * any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, write to the Free Software
+ * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ *
+ * $Id$
+ */
+
+#include <stdio.h>
+#include <stdlib.h>
+#include <string.h>
+#include <gtk/gtkpaned.h>
+#include <gtk/gtkwindow.h>
+#include <gtk/gtktreeview.h>
+#include <libgnomeui/gnome-app.h>
+#include <bonobo/bonobo-dock.h>
+#include <bonobo/bonobo-dock-layout.h>
+
+#include "ephy-state.h"
+#include "eel-gconf-extensions.h"
+
+#define CONF_GUL_STATE_PATH "/apps/epiphany/state"
+
+static void
+window_save_size (GtkWidget *window, const gchar *name)
+{
+ int width, height;
+ gchar *buf;
+
+ gtk_window_get_size (GTK_WINDOW(window),
+ &width, &height);
+
+ buf = g_strdup_printf (CONF_GUL_STATE_PATH "/%s/width",name);
+ eel_gconf_set_integer (buf, width);
+ g_free (buf);
+
+ buf = g_strdup_printf (CONF_GUL_STATE_PATH "/%s/height",name);
+ eel_gconf_set_integer (buf, height);
+ g_free (buf);
+}
+
+/**
+ * ephy_state_save_window: save the window dimensions
+ */
+void
+ephy_state_save_window (GtkWidget *window,
+ const gchar *name)
+{
+ GdkWindowState state;
+ gboolean maximized;
+ gchar *buf;
+
+ state = gdk_window_get_state (GTK_WIDGET (window)->window);
+ maximized = state && GDK_WINDOW_STATE_MAXIMIZED;
+
+ buf = g_strdup_printf (CONF_GUL_STATE_PATH "/%s/maximized",name);
+ eel_gconf_set_boolean (buf, maximized);
+ g_free (buf);
+
+ if (!maximized)
+ {
+ window_save_size (window, name);
+ }
+}
+
+/**
+ * ephy_window_load_state: load the window state
+ */
+void
+ephy_state_load_window (GtkWidget *window,
+ const gchar *name,
+ int default_width,
+ int default_height,
+ gboolean position)
+{
+ gchar *buf;
+ gint width, height;
+ gboolean maximized;
+
+ buf = g_strdup_printf (CONF_GUL_STATE_PATH "/%s/maximized",name);
+ maximized = eel_gconf_get_boolean (buf);
+ g_free (buf);
+
+ buf = g_strdup_printf (CONF_GUL_STATE_PATH "/%s/width",name);
+ width = eel_gconf_get_integer (buf);
+ g_free (buf);
+
+ buf = g_strdup_printf (CONF_GUL_STATE_PATH "/%s/height",name);
+ height = eel_gconf_get_integer (buf);
+ g_free (buf);
+
+ /* try default size */
+ if (width == 0 && height == 0 &&
+ default_width != -1 && default_height != -1)
+ {
+ width = default_width;
+ height = default_height;
+ }
+
+ if (width != 0 && height != 0)
+ {
+ gtk_window_set_default_size
+ (GTK_WINDOW (window), width, height);
+ }
+
+ if (maximized)
+ {
+ gtk_window_maximize (GTK_WINDOW(window));
+ }
+}
+
+/**
+ * ephy_state_load_pane_pos: load the paned position
+ */
+void
+ephy_state_load_pane_pos (GtkWidget *pane,
+ const gchar *name)
+{
+ if (pane != NULL)
+ {
+ gint pane_pos;
+ gchar *buf = g_strdup_printf (CONF_GUL_STATE_PATH "/%s", name);
+ pane_pos = eel_gconf_get_integer (buf);
+ g_free (buf);
+
+ if (pane_pos != -1)
+ gtk_paned_set_position (GTK_PANED (pane), pane_pos);
+ }
+}
+
+/**
+ * gul_state_save_pane_pos: save the paned position
+ */
+void
+ephy_state_save_pane_pos (GtkWidget *pane,
+ const gchar *name)
+{
+ if (pane != NULL)
+ {
+ gchar *buf = g_strdup_printf (CONF_GUL_STATE_PATH "/%s", name);
+ eel_gconf_set_integer (buf, GTK_PANED (pane)->child1_size);
+ g_free (buf);
+ }
+}