2006-01-31 00:10:56 +08:00
|
|
|
/* LIBGIMP - The GIMP Library
|
|
|
|
* Copyright (C) 1995-1997 Peter Mattis and Spencer Kimball
|
|
|
|
*
|
2009-01-18 06:28:01 +08:00
|
|
|
* This library is free software: you can redistribute it and/or
|
2006-01-31 00:10:56 +08:00
|
|
|
* modify it under the terms of the GNU Lesser General Public
|
|
|
|
* License as published by the Free Software Foundation; either
|
2009-01-18 06:28:01 +08:00
|
|
|
* version 3 of the License, or (at your option) any later version.
|
2006-01-31 00:10:56 +08:00
|
|
|
*
|
|
|
|
* This library 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
|
|
|
|
* Library General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Lesser General Public
|
2009-01-18 06:28:01 +08:00
|
|
|
* License along with this library. If not, see
|
2018-07-12 05:27:07 +08:00
|
|
|
* <https://www.gnu.org/licenses/>.
|
2006-01-31 00:10:56 +08:00
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef __GIMP_PARAM_H__
|
|
|
|
#define __GIMP_PARAM_H__
|
|
|
|
|
2010-06-30 01:13:40 +08:00
|
|
|
|
|
|
|
/**
|
|
|
|
* SECTION: gimpparam
|
|
|
|
* @title: gimpparam
|
|
|
|
* @short_description: Definitions of useful #GParamFlags.
|
|
|
|
*
|
|
|
|
* Definitions of useful #GParamFlags.
|
|
|
|
**/
|
2006-01-31 00:10:56 +08:00
|
|
|
|
|
|
|
|
2010-06-30 01:13:40 +08:00
|
|
|
/**
|
|
|
|
* GIMP_PARAM_STATIC_STRINGS:
|
|
|
|
*
|
2015-06-01 03:18:09 +08:00
|
|
|
* Since: 2.4
|
2010-06-30 01:13:40 +08:00
|
|
|
**/
|
2006-01-31 00:10:56 +08:00
|
|
|
#define GIMP_PARAM_STATIC_STRINGS (G_PARAM_STATIC_NAME | \
|
|
|
|
G_PARAM_STATIC_NICK | \
|
|
|
|
G_PARAM_STATIC_BLURB)
|
2010-06-30 01:13:40 +08:00
|
|
|
|
|
|
|
/**
|
|
|
|
* GIMP_PARAM_READABLE:
|
|
|
|
*
|
2015-06-01 03:18:09 +08:00
|
|
|
* Since: 2.4
|
2010-06-30 01:13:40 +08:00
|
|
|
**/
|
2006-01-31 00:10:56 +08:00
|
|
|
#define GIMP_PARAM_READABLE (G_PARAM_READABLE | \
|
|
|
|
GIMP_PARAM_STATIC_STRINGS)
|
2010-06-30 01:13:40 +08:00
|
|
|
|
|
|
|
/**
|
|
|
|
* GIMP_PARAM_WRITABLE:
|
|
|
|
*
|
2015-06-01 03:18:09 +08:00
|
|
|
* Since: 2.4
|
2010-06-30 01:13:40 +08:00
|
|
|
**/
|
2006-01-31 00:10:56 +08:00
|
|
|
#define GIMP_PARAM_WRITABLE (G_PARAM_WRITABLE | \
|
|
|
|
GIMP_PARAM_STATIC_STRINGS)
|
2010-06-30 01:13:40 +08:00
|
|
|
|
|
|
|
/**
|
|
|
|
* GIMP_PARAM_READWRITE:
|
|
|
|
*
|
2015-06-01 03:18:09 +08:00
|
|
|
* Since: 2.4
|
2010-06-30 01:13:40 +08:00
|
|
|
**/
|
2006-01-31 00:10:56 +08:00
|
|
|
#define GIMP_PARAM_READWRITE (G_PARAM_READWRITE | \
|
|
|
|
GIMP_PARAM_STATIC_STRINGS)
|
|
|
|
|
|
|
|
|
|
|
|
#endif /* __GIMP_PARAM_H__ */
|