1 /* -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*- */
2 
3 /*
4  *  GThumb
5  *
6  *  Copyright (C) 2010 Free Software Foundation, Inc.
7  *
8  *  This program is free software; you can redistribute it and/or modify
9  *  it under the terms of the GNU General Public License as published by
10  *  the Free Software Foundation; either version 2 of the License, or
11  *  (at your option) any later version.
12  *
13  *  This program is distributed in the hope that it will be useful,
14  *  but WITHOUT ANY WARRANTY; without even the implied warranty of
15  *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16  *  GNU General Public License for more details.
17  *
18  *  You should have received a copy of the GNU General Public License
19  *  along with this program.  If not, see <http://www.gnu.org/licenses/>.
20  */
21 
22 #ifndef PREFERENCES_H
23 #define PREFERENCES_H
24 
25 #include <gthumb.h>
26 
27 G_BEGIN_DECLS
28 
29 /* schemas */
30 
31 #define GTHUMB_CONTACT_SHEET_SCHEMA                 GTHUMB_SCHEMA ".contact-sheet.contact-sheet"
32 #define GTHUMB_IMAGE_WALL_SCHEMA                    GTHUMB_SCHEMA ".contact-sheet.image-wall"
33 
34 /* keys: contact sheet */
35 
36 #define PREF_CONTACT_SHEET_HEADER                   "header"
37 #define PREF_CONTACT_SHEET_FOOTER                   "footer"
38 #define PREF_CONTACT_SHEET_DESTINATION              "destination"
39 #define PREF_CONTACT_SHEET_TEMPLATE                 "template"
40 #define PREF_CONTACT_SHEET_MIME_TYPE                "mime-type"
41 #define PREF_CONTACT_SHEET_HTML_IMAGE_MAP           "html-image-map"
42 #define PREF_CONTACT_SHEET_THEME                    "theme"
43 #define PREF_CONTACT_SHEET_IMAGES_PER_PAGE          "images-per-page"
44 #define PREF_CONTACT_SHEET_SINGLE_PAGE              "single-page"
45 #define PREF_CONTACT_SHEET_COLUMNS                  "columns"
46 #define PREF_CONTACT_SHEET_SORT_TYPE                "sort-type"
47 #define PREF_CONTACT_SHEET_SORT_INVERSE             "sort-inverse"
48 #define PREF_CONTACT_SHEET_SAME_SIZE                "same-size"
49 #define PREF_CONTACT_SHEET_THUMBNAIL_SIZE           "thumbnail-size"
50 #define PREF_CONTACT_SHEET_SQUARED_THUMBNAIL        "squared-thumbnail"
51 #define PREF_CONTACT_SHEET_THUMBNAIL_CAPTION        "thumbnail-caption"
52 
53 /* keys: image wall */
54 
55 #define PREF_IMAGE_WALL_DESTINATION                 "destination"
56 #define PREF_IMAGE_WALL_TEMPLATE                    "template"
57 #define PREF_IMAGE_WALL_MIME_TYPE                   "mime-type"
58 #define PREF_IMAGE_WALL_IMAGES_PER_PAGE             "images-per-page"
59 #define PREF_IMAGE_WALL_SINGLE_PAGE                 "single-page"
60 #define PREF_IMAGE_WALL_COLUMNS                     "columns"
61 #define PREF_IMAGE_WALL_SORT_TYPE                   "sort-type"
62 #define PREF_IMAGE_WALL_SORT_INVERSE                "sort-inverse"
63 #define PREF_IMAGE_WALL_THUMBNAIL_SIZE              "thumbnail-size"
64 
65 G_END_DECLS
66 
67 #endif /* PREFERENCES_H */
68