1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65
|
/* -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*- */
/*
* GThumb
*
* Copyright (C) 2010 Free Software Foundation, Inc.
*
* 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 of the License, 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, see <http://www.gnu.org/licenses/>.
*/
#ifndef FILE_TOOLS_PREFERENCES_H
#define FILE_TOOLS_PREFERENCES_H
#include <gthumb.h>
G_BEGIN_DECLS
/* schemas */
#define GTHUMB_CROP_SCHEMA GTHUMB_SCHEMA ".crop"
#define GTHUMB_RESIZE_SCHEMA GTHUMB_SCHEMA ".resize"
#define GTHUMB_ROTATE_SCHEMA GTHUMB_SCHEMA ".rotate"
/* keys: crop */
#define PREF_CROP_GRID_TYPE "grid-type"
#define PREF_CROP_ASPECT_RATIO "aspect-ratio"
#define PREF_CROP_ASPECT_RATIO_INVERT "aspect-ratio-invert"
#define PREF_CROP_ASPECT_RATIO_WIDTH "aspect-ratio-width"
#define PREF_CROP_ASPECT_RATIO_HEIGHT "aspect-ratio-height"
#define PREF_CROP_BIND_DIMENSIONS "bind-dimensions"
#define PREF_CROP_BIND_FACTOR "bind-factor"
/* keys: resize */
#define PREF_RESIZE_UNIT "unit"
#define PREF_RESIZE_WIDTH "width"
#define PREF_RESIZE_HEIGHT "height"
#define PREF_RESIZE_ASPECT_RATIO_WIDTH "aspect-ratio-width"
#define PREF_RESIZE_ASPECT_RATIO_HEIGHT "aspect-ratio-height"
#define PREF_RESIZE_ASPECT_RATIO "aspect-ratio"
#define PREF_RESIZE_ASPECT_RATIO_INVERT "aspect-ratio-invert"
#define PREF_RESIZE_HIGH_QUALITY "high-quality"
/* keys: rotate */
#define PREF_ROTATE_RESIZE "resize"
#define PREF_ROTATE_KEEP_ASPECT_RATIO "keep-aspect-ratio"
#define PREF_ROTATE_GRID_TYPE "grid-type"
#define PREF_ROTATE_BACKGROUND_COLOR "background-color"
G_END_DECLS
#endif /* FILE_TOOLS_PREFERENCES_H */
|