aboutsummaryrefslogtreecommitdiffstats
path: root/lib
diff options
context:
space:
mode:
Diffstat (limited to 'lib')
-rw-r--r--lib/ephy-state.c22
-rw-r--r--lib/ephy-state.h12
2 files changed, 30 insertions, 4 deletions
diff --git a/lib/ephy-state.c b/lib/ephy-state.c
index 452d56b7b..4871b2ea1 100644
--- a/lib/ephy-state.c
+++ b/lib/ephy-state.c
@@ -513,3 +513,25 @@ ephy_state_save (void)
states_db = NULL;
}
}
+
+GType
+ephy_state_window_flags_get_type (void)
+{
+ static GType type = 0;
+
+ if (G_UNLIKELY (type == 0))
+ {
+ static const GFlagsValue values[] =
+ {
+ { EPHY_STATE_WINDOW_SAVE_NONE, "EPHY_STATE_WINDOW_SAVE_NONE", "none" },
+ { EPHY_STATE_WINDOW_SAVE_SIZE, "EPHY_STATE_WINDOW_SAVE_SIZE", "size" },
+ { EPHY_STATE_WINDOW_SAVE_POSITION, "EPHY_STATE_WINDOW_SAVE_POSITION", "position" },
+
+ { 0, NULL, NULL }
+ };
+
+ type = g_flags_register_static ("EphyStateWindowFlags", values);
+ }
+
+ return type;
+}
diff --git a/lib/ephy-state.h b/lib/ephy-state.h
index f54eb9bc0..883c9b9db 100644
--- a/lib/ephy-state.h
+++ b/lib/ephy-state.h
@@ -27,6 +27,8 @@
G_BEGIN_DECLS
+#define EPHY_TYPE_STATE_WINDOW_FLAGS (ephy_state_window_flags_get_type ())
+
typedef enum
{
EPHY_STATE_WINDOW_SAVE_NONE = 0,
@@ -34,22 +36,24 @@ typedef enum
EPHY_STATE_WINDOW_SAVE_POSITION = 1 << 1
} EphyStateWindowFlags;
-void ephy_state_add_window (GtkWidget *window,
+GType ephy_state_window_flags_get_type (void);
+
+void ephy_state_add_window (GtkWidget *window,
const char *name,
int default_width,
int default_heigth,
gboolean maximize,
EphyStateWindowFlags flags);
-void ephy_state_add_paned (GtkWidget *paned,
+void ephy_state_add_paned (GtkWidget *paned,
const char *name,
int default_width);
-void ephy_state_add_expander (GtkWidget *expander,
+void ephy_state_add_expander (GtkWidget *expander,
const char *name,
gboolean default_state);
-void ephy_state_save (void);
+void ephy_state_save (void);
G_END_DECLS