/usr/include/gegl-0.2/gegl-paramspecs.h is in libgegl-dev 0.2.0-7+b1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
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 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 | /* This file is part of GEGL
*
* GEGL is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 3 of the License, or (at your option) any later version.
*
* GEGL 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
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with GEGL; if not, see <http://www.gnu.org/licenses/>.
*
* Copyright 2003 Calvin Williamson
* 2006 Øyvind Kolås
*
* Original contents copied from gimp/app/core/gimpparamspecs.h
* (c) 1995-2006 Spencer Kimball, Peter Mattis and others.
*/
#include <glib-object.h>
#ifndef __GEGL_PARAM_SPECS_H__
#define __GEGL_PARAM_SPECS_H__
G_BEGIN_DECLS
/*
* Keep in sync with libgeglconfig/geglconfig-params.h
*/
#define GEGL_PARAM_NO_VALIDATE (1 << (6 + G_PARAM_USER_SHIFT))
typedef struct _GeglParamSpecString GeglParamSpecString;
typedef struct _GeglParamSpecDouble GeglParamSpecDouble;
typedef struct _GeglParamSpecInt GeglParamSpecInt;
/*
* GEGL_TYPE_PARAM_DOUBLE
*/
#define GEGL_TYPE_PARAM_DOUBLE (gegl_param_double_get_type ())
#define GEGL_PARAM_SPEC_DOUBLE(pspec) (G_TYPE_CHECK_INSTANCE_CAST ((pspec), GEGL_TYPE_PARAM_DOUBLE, GeglParamSpecDouble))
#define GEGL_IS_PARAM_SPEC_DOUBLE(pspec) (G_TYPE_CHECK_INSTANCE_TYPE ((pspec), GEGL_TYPE_PARAM_DOUBLE))
struct _GeglParamSpecDouble
{
GParamSpecDouble parent_instance;
gdouble ui_minimum; /* reasonable range to present to user */
gdouble ui_maximum;
gdouble ui_gamma; /* a desired non-linear mapping or 1.0, useful
when the control the user needs is not a
linear mapping, like controlling brush-size
or gaussian blur radius - where more
detailed control of small values is needed
*/
};
GType gegl_param_double_get_type (void) G_GNUC_CONST;
GParamSpec * gegl_param_spec_double (const gchar *name,
const gchar *nick,
const gchar *blurb,
gdouble minimum,
gdouble maximum,
gdouble default_value,
gdouble ui_minimum,
gdouble ui_maximum,
gdouble ui_gamma,
GParamFlags flags);
/*
* GEGL_TYPE_PARAM_INT
*/
#define GEGL_TYPE_PARAM_INT (gegl_param_int_get_type ())
#define GEGL_PARAM_SPEC_INT(pspec) (G_TYPE_CHECK_INSTANCE_CAST ((pspec), GEGL_TYPE_PARAM_INT, GeglParamSpecInt))
#define GEGL_IS_PARAM_SPEC_INT(pspec) (G_TYPE_CHECK_INSTANCE_TYPE ((pspec), GEGL_TYPE_PARAM_INT))
struct _GeglParamSpecInt
{
GParamSpecInt parent_instance;
gint ui_minimum; /* reasonable range to present to user */
gint ui_maximum;
gdouble ui_gamma;
};
GType gegl_param_int_get_type (void) G_GNUC_CONST;
GParamSpec * gegl_param_spec_int (const gchar *name,
const gchar *nick,
const gchar *blurb,
gint minimum,
gint maximum,
gint default_value,
gint ui_minimum,
gint ui_maximum,
gdouble ui_gamma,
GParamFlags flags);
/*
* GEGL_TYPE_PARAM_STRING
*/
#define GEGL_TYPE_PARAM_STRING (gegl_param_string_get_type ())
#define GEGL_PARAM_SPEC_STRING(pspec) (G_TYPE_CHECK_INSTANCE_CAST ((pspec), GEGL_TYPE_PARAM_STRING, GeglParamSpecString))
#define GEGL_IS_PARAM_SPEC_STRING(pspec) (G_TYPE_CHECK_INSTANCE_TYPE ((pspec), GEGL_TYPE_PARAM_STRING))
struct _GeglParamSpecString
{
GParamSpecString parent_instance;
guint no_validate : 1;
guint null_ok : 1;
};
GType gegl_param_string_get_type (void) G_GNUC_CONST;
GParamSpec * gegl_param_spec_string (const gchar *name,
const gchar *nick,
const gchar *blurb,
gboolean no_validate,
gboolean null_ok,
const gchar *default_value,
GParamFlags flags);
/*
* GEGL_TYPE_PARAM_FILEPATH
*/
#define GEGL_TYPE_PARAM_FILE_PATH (gegl_param_file_path_get_type ())
#define GEGL_PARAM_SPEC_FILE_PATH(pspec) (G_TYPE_CHECK_INSTANCE_CAST ((pspec), GEGL_TYPE_PARAM_FILE_PATH, GeglParamSpecFilePath))
#define GEGL_IS_PARAM_SPEC_FILE_PATH(pspec) (G_TYPE_CHECK_INSTANCE_TYPE ((pspec), GEGL_TYPE_PARAM_FILE_PATH))
typedef struct _GeglParamSpecFilePath GeglParamSpecFilePath;
struct _GeglParamSpecFilePath
{
GParamSpecString parent_instance;
guint no_validate : 1;
guint null_ok : 1;
};
GType gegl_param_file_path_get_type (void) G_GNUC_CONST;
GParamSpec * gegl_param_spec_file_path (const gchar *name,
const gchar *nick,
const gchar *blurb,
gboolean no_validate,
gboolean null_ok,
const gchar *default_value,
GParamFlags flags);
/*
* GEGL_TYPE_PARAM_MULTILINE
*/
#define GEGL_TYPE_PARAM_MULTILINE (gegl_param_multiline_get_type ())
#define GEGL_PARAM_SPEC_MULTILINE(pspec) (G_TYPE_CHECK_INSTANCE_CAST ((pspec), GEGL_TYPE_PARAM_MULTILINE, GeglParamSpecMultiline))
#define GEGL_IS_PARAM_SPEC_MULTILINE(pspec) (G_TYPE_CHECK_INSTANCE_TYPE ((pspec), GEGL_TYPE_PARAM_MULTILINE))
typedef struct _GeglParamSpecMultiline GeglParamSpecMultiline;
struct _GeglParamSpecMultiline
{
GParamSpecString parent_instance;
guint no_validate : 1;
guint null_ok : 1;
};
GType gegl_param_multiline_get_type (void) G_GNUC_CONST;
GParamSpec * gegl_param_spec_multiline (const gchar *name,
const gchar *nick,
const gchar *blurb,
const gchar *default_value,
GParamFlags flags);
/*
* GEGL_TYPE_PARAM_ENUM
*/
#define GEGL_TYPE_PARAM_ENUM (gegl_param_enum_get_type ())
#define GEGL_PARAM_SPEC_ENUM(pspec) (G_TYPE_CHECK_INSTANCE_CAST ((pspec), GEGL_TYPE_PARAM_ENUM, GeglParamSpecEnum))
#define GEGL_IS_PARAM_SPEC_ENUM(pspec) (G_TYPE_CHECK_INSTANCE_TYPE ((pspec), GEGL_TYPE_PARAM_ENUM))
typedef struct _GeglParamSpecEnum GeglParamSpecEnum;
struct _GeglParamSpecEnum
{
GParamSpecEnum parent_instance;
GSList *excluded_values;
};
GType gegl_param_enum_get_type (void) G_GNUC_CONST;
GParamSpec * gegl_param_spec_enum (const gchar *name,
const gchar *nick,
const gchar *blurb,
GType enum_type,
gint default_value,
GParamFlags flags);
void gegl_param_spec_enum_exclude_value (GeglParamSpecEnum *espec,
gint value);
G_END_DECLS
#endif /* __GEGL_PARAM_SPECS_H__ */
|