diff options
Diffstat (limited to 'lib/ephy-state.h')
-rw-r--r-- | lib/ephy-state.h | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/lib/ephy-state.h b/lib/ephy-state.h index 9d6388ac4..0604ea0d5 100644 --- a/lib/ephy-state.h +++ b/lib/ephy-state.h @@ -26,10 +26,17 @@ G_BEGIN_DECLS +typedef enum +{ + EPHY_STATE_WINDOW_SAVE_SIZE = 1 << 0, + EPHY_STATE_WINDOW_SAVE_POSITION = 1 << 1 +} EphyStateWindowFlags; + void ephy_state_add_window (GtkWidget *window, const char *name, int default_width, - int default_heigth); + int default_heigth, + EphyStateWindowFlags flags); void ephy_state_add_paned (GtkWidget *paned, const char *name, |