diff options
author | Marco Pesenti Gritti <mpeseng@src.gnome.org> | 2002-12-31 03:29:24 +0800 |
---|---|---|
committer | Marco Pesenti Gritti <mpeseng@src.gnome.org> | 2002-12-31 03:29:24 +0800 |
commit | 6876ede98282c7db318089bfefb292aa59e55d48 (patch) | |
tree | 76b23252d04da232d0ebf22e53bfe3e022686af9 /lib/ephy-prefs.h | |
download | gsoc2013-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-prefs.h')
-rw-r--r-- | lib/ephy-prefs.h | 58 |
1 files changed, 58 insertions, 0 deletions
diff --git a/lib/ephy-prefs.h b/lib/ephy-prefs.h new file mode 100644 index 000000000..3c0562a1f --- /dev/null +++ b/lib/ephy-prefs.h @@ -0,0 +1,58 @@ +/* + * Copyright (C) 2000-2002 Marco Pesenti Gritti + * + * 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. + */ + +#ifndef EPHY_PREFS_H +#define EPHY_PREFS_H + +G_BEGIN_DECLS + +/* General */ +#define CONF_GENERAL_HOMEPAGE "/apps/epiphany/general/start_page" +#define CONF_GENERAL_NEWPAGE_TYPE "/apps/epiphany/general/newpage_type" + +/* Interface */ +#define CONF_TABS_TABBED "/apps/epiphany/interface/open_in_tab" +#define CONF_TABS_TABBED_POPUPS "/apps/epiphany/interface/popups_in_tab" +#define CONF_TABS_TABBED_AUTOJUMP "/apps/epiphany/interface/jumpto_tab" +#define CONF_WINDOWS_SIDEBAR_PAGE "/apps/epiphany/interface/sidebar_page" +#define CONF_WINDOWS_SIDEBAR_SIZE "/apps/epiphany/interface/sidebar_size" +#define CONF_WINDOWS_FS_SHOW_SIDEBAR "/apps/epiphany/interface/show_sidebar_in_fullscreen" +#define CONF_WINDOWS_FS_SHOW_TOOLBARS "/apps/epiphany/interface/show_toolbars_in_fullscreen" +#define CONF_WINDOWS_FS_SHOW_STATUSBAR "/apps/epiphany/interface/show_statusbar_in_fullscreen" +#define CONF_WINDOWS_SHOW_SIDEBAR "/apps/epiphany/interface/show_sidebar" +#define CONF_WINDOWS_SHOW_TOOLBARS "/apps/epiphany/interface/show_toolbars" +#define CONF_WINDOWS_SHOW_STATUSBAR "/apps/epiphany/interface/show_statusbar" +#define CONF_TOOLBAR_SETUP "/apps/epiphany/interface/toolbar_setup" +#define CONF_TOOLBAR_SPINNER_THEME "/apps/epiphany/interface/spinner_theme" + +/* Downloader */ +#define CONF_DOWNLOADING_SHOW_DETAILS "/apps/epiphany/downloader/show_details" + +/* Directories */ +#define CONF_STATE_SAVE_DIR "/apps/epiphany/directories/save" +#define CONF_STATE_SAVE_IMAGE_DIR "/apps/epiphany/directories/saveimage" +#define CONF_STATE_OPEN_DIR "/apps/epiphany/directories/open" +#define CONF_STATE_DOWNLOADING_DIR "/apps/epiphany/directories/downloading" + +/* System prefs */ +#define CONF_DESKTOP_FTP_HANDLER "/desktop/gnome/url-handlers/ftp/command" +#define CONF_DESKTOP_TOOLBAR_STYLE "/desktop/gnome/interface/toolbar_style" + +G_END_DECLS + +#endif |