1 /* Eye Of Gnome - GSettings Keys Macros
2  *
3  * Copyright (C) 2000-2006 The Free Software Foundation
4  *
5  * Author: Lucas Rocha <lucasr@gnome.org>
6  *
7  * Based on code by:
8  * 	- Federico Mena-Quintero <federico@gnome.org>
9  *	- Jens Finke <jens@gnome.org>
10  *
11  * This program is free software; you can redistribute it and/or modify
12  * it under the terms of the GNU General Public License as published by
13  * the Free Software Foundation; either version 2 of the License, or
14  * (at your option) any later version.
15  *
16  * This program is distributed in the hope that it will be useful,
17  * but WITHOUT ANY WARRANTY; without even the implied warranty of
18  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
19  * GNU General Public License for more details.
20  *
21  * You should have received a copy of the GNU General Public License along
22  * with this program; if not, write to the Free Software Foundation, Inc.,
23  * 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
24  */
25 
26 #ifndef __EOG_CONFIG_KEYS_H__
27 #define __EOG_CONFIG_KEYS_H__
28 
29 #define EOG_CONF_DOMAIN				"org.gnome.eog"
30 #define EOG_CONF_FULLSCREEN			EOG_CONF_DOMAIN".fullscreen"
31 #define EOG_CONF_PLUGINS			EOG_CONF_DOMAIN".plugins"
32 #define EOG_CONF_UI				EOG_CONF_DOMAIN".ui"
33 #define EOG_CONF_VIEW				EOG_CONF_DOMAIN".view"
34 
35 #define EOG_CONF_DESKTOP_WALLPAPER_SCHEMA	"org.gnome.desktop.background"
36 #define EOG_CONF_DESKTOP_WALLPAPER		"picture-uri"
37 
38 #define EOG_CONF_DESKTOP_LOCKDOWN_SCHEMA	"org.gnome.desktop.lockdown"
39 #define EOG_CONF_DESKTOP_CAN_PRINT		"disable-printing"
40 #define EOG_CONF_DESKTOP_CAN_SAVE		"disable-save-to-disk"
41 #define EOG_CONF_DESKTOP_CAN_SETUP_PAGE 	"disable-print-setup"
42 
43 #define EOG_CONF_VIEW_BACKGROUND_COLOR		"background-color"
44 #define EOG_CONF_VIEW_INTERPOLATE		"interpolate"
45 #define EOG_CONF_VIEW_EXTRAPOLATE		"extrapolate"
46 #define EOG_CONF_VIEW_SCROLL_WHEEL_ZOOM		"scroll-wheel-zoom"
47 #define EOG_CONF_VIEW_ZOOM_MULTIPLIER		"zoom-multiplier"
48 #define EOG_CONF_VIEW_AUTOROTATE                "autorotate"
49 #define EOG_CONF_VIEW_TRANSPARENCY		"transparency"
50 #define EOG_CONF_VIEW_TRANS_COLOR		"trans-color"
51 #define EOG_CONF_VIEW_USE_BG_COLOR		"use-background-color"
52 
53 #define EOG_CONF_FULLSCREEN_LOOP		"loop"
54 #define EOG_CONF_FULLSCREEN_UPSCALE		"upscale"
55 #define EOG_CONF_FULLSCREEN_SECONDS		"seconds"
56 
57 #define EOG_CONF_UI_STATUSBAR			"statusbar"
58 #define EOG_CONF_UI_IMAGE_GALLERY		"image-gallery"
59 #define EOG_CONF_UI_IMAGE_GALLERY_POSITION	"image-gallery-position"
60 #define EOG_CONF_UI_IMAGE_GALLERY_RESIZABLE	"image-gallery-resizable"
61 #define EOG_CONF_UI_SIDEBAR			"sidebar"
62 #define EOG_CONF_UI_SCROLL_BUTTONS		"scroll-buttons"
63 #define EOG_CONF_UI_DISABLE_CLOSE_CONFIRMATION  "disable-close-confirmation"
64 #define EOG_CONF_UI_DISABLE_TRASH_CONFIRMATION	"disable-trash-confirmation"
65 #define EOG_CONF_UI_FILECHOOSER_XDG_FALLBACK	"filechooser-xdg-fallback"
66 #define EOG_CONF_UI_PROPSDIALOG_NETBOOK_MODE	"propsdialog-netbook-mode"
67 
68 #define EOG_CONF_PLUGINS_ACTIVE_PLUGINS         "active-plugins"
69 
70 #endif /* __EOG_CONFIG_KEYS_H__ */
71