/usr/include/gegl-0.2/gegl-enums.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 | /* 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 2011 Michael Muré <batolettre@gmail.com>
*
*/
/* This file hold public enum from GEGL. A proper registration for them is
* generated automatically with glib-mkenums.
*
* TODO: currently, description are not supported by glib-mkenums, and therefore
* an often ugly name is generated, and i18n is not supported.
* gimp-mkenums support these description, with a custom system to allow i18n,
* so it could be a way to achieve this.
*/
#ifndef __GEGL_ENUMS_H__
#define __GEGL_ENUMS_H__
G_BEGIN_DECLS
typedef enum {
GEGL_SAMPLER_NEAREST = 0, /*< desc="nearest" >*/
GEGL_SAMPLER_LINEAR, /*< desc="linear" >*/
GEGL_SAMPLER_CUBIC, /*< desc="cubic" >*/
GEGL_SAMPLER_LOHALO /*< desc="lohalo" >*/
} GeglSamplerType;
GType gegl_sampler_type_get_type (void) G_GNUC_CONST;
#define GEGL_TYPE_SAMPLER_TYPE (gegl_sampler_type_get_type())
typedef enum {
GEGL_ABYSS_NONE
} GeglAbyssPolicy;
GType gegl_abyss_policy_get_type (void) G_GNUC_CONST;
#define GEGL_ABYSS_POLICY_TYPE (gegl_abyss_policy_get_type())
/*
* Operation specific enum
*/
typedef enum {
GEGl_RIPPLE_WAVE_TYPE_SINE,
GEGl_RIPPLE_WAVE_TYPE_SAWTOOTH
} GeglRippleWaveType;
GType gegl_ripple_wave_type_get_type (void) G_GNUC_CONST;
#define GEGL_RIPPLE_WAVE_TYPE (gegl_ripple_wave_type_get_type())
typedef enum
{
GEGL_WARP_BEHAVIOR_MOVE, /*< desc="Move pixels" >*/
GEGL_WARP_BEHAVIOR_GROW, /*< desc="Grow area" >*/
GEGL_WARP_BEHAVIOR_SHRINK, /*< desc="Shrink area" >*/
GEGL_WARP_BEHAVIOR_SWIRL_CW, /*< desc="Swirl clockwise" >*/
GEGL_WARP_BEHAVIOR_SWIRL_CCW, /*< desc="Swirl counter-clockwise" >*/
GEGL_WARP_BEHAVIOR_ERASE, /*< desc="Erase warping" >*/
GEGL_WARP_BEHAVIOR_SMOOTH /*< desc="Smooth warping" >*/
} GeglWarpBehavior;
GType gegl_warp_behavior_get_type (void) G_GNUC_CONST;
#define GEGL_TYPE_WARP_BEHAVIOR (gegl_warp_behavior_get_type ())
G_END_DECLS
#endif /* __GEGL_ENUMS_H__ */
|