~ubuntu-branches/ubuntu/jaunty/gimp/jaunty-security

« back to all changes in this revision

Viewing changes to app/paint/paint-enums.h

  • Committer: Bazaar Package Importer
  • Author(s): Daniel Holbach
  • Date: 2007-05-02 16:33:03 UTC
  • mfrom: (1.1.4 upstream)
  • Revision ID: james.westby@ubuntu.com-20070502163303-bvzhjzbpw8qglc4y
Tags: 2.3.16-1ubuntu1
* Resynchronized with Debian, remaining Ubuntu changes:
  - debian/rules: i18n magic.
* debian/control.in:
  - Maintainer: Ubuntu Core Developers <ubuntu-devel@lists.ubuntu.com>
* debian/patches/02_help-message.patch,
  debian/patches/03_gimp.desktop.in.in.patch,
  debian/patches/10_dont_show_wizard.patch: updated.
* debian/patches/04_composite-signedness.patch,
  debian/patches/05_add-letter-spacing.patch: dropped, used upstream.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
/* The GIMP -- an image manipulation program
 
1
/* GIMP - The GNU Image Manipulation Program
2
2
 * Copyright (C) 1995 Spencer Kimball and Peter Mattis
3
3
 *
4
4
 * This program is free software; you can redistribute it and/or modify
35
35
 * these enums that are registered with the type system
36
36
 */
37
37
 
38
 
#define GIMP_TYPE_CLONE_TYPE (gimp_clone_type_get_type ())
 
38
#define GIMP_TYPE_BRUSH_APPLICATION_MODE (gimp_brush_application_mode_get_type ())
39
39
 
40
 
GType gimp_clone_type_get_type (void) G_GNUC_CONST;
 
40
GType gimp_brush_application_mode_get_type (void) G_GNUC_CONST;
41
41
 
42
42
typedef enum
43
43
{
44
 
  GIMP_IMAGE_CLONE,   /*< desc="Image source"   >*/
45
 
  GIMP_PATTERN_CLONE  /*< desc="Pattern source" >*/
46
 
} GimpCloneType;
47
 
 
48
 
 
49
 
#define GIMP_TYPE_CLONE_ALIGN_MODE (gimp_clone_align_mode_get_type ())
50
 
 
51
 
GType gimp_clone_align_mode_get_type (void) G_GNUC_CONST;
 
44
  GIMP_BRUSH_HARD,
 
45
  GIMP_BRUSH_SOFT,
 
46
  GIMP_BRUSH_PRESSURE  /*< pdb-skip, skip >*/
 
47
} GimpBrushApplicationMode;
 
48
 
 
49
 
 
50
#define GIMP_TYPE_PERSPECTIVE_CLONE_MODE (gimp_perspective_clone_mode_get_type ())
 
51
 
 
52
GType gimp_perspective_clone_mode_get_type (void) G_GNUC_CONST;
 
53
 
 
54
typedef enum  /*< pdb-skip >*/
 
55
{
 
56
  GIMP_PERSPECTIVE_CLONE_MODE_ADJUST,  /*< desc="Modify Perspective Plane" >*/
 
57
  GIMP_PERSPECTIVE_CLONE_MODE_PAINT    /*< desc="Perspective Clone"        >*/
 
58
} GimpPerspectiveCloneMode;
 
59
 
 
60
 
 
61
#define GIMP_TYPE_SOURCE_ALIGN_MODE (gimp_source_align_mode_get_type ())
 
62
 
 
63
GType gimp_source_align_mode_get_type (void) G_GNUC_CONST;
52
64
 
53
65
typedef enum /*< pdb-skip >*/
54
66
{
55
 
  GIMP_CLONE_ALIGN_NO,         /*< desc="Non-aligned" >*/
56
 
  GIMP_CLONE_ALIGN_YES,        /*< desc="Aligned"     >*/
57
 
  GIMP_CLONE_ALIGN_REGISTERED  /*< desc="Registered"  >*/
58
 
} GimpCloneAlignMode;
59
 
 
60
 
 
61
 
#define GIMP_TYPE_DODGE_BURN_TYPE (gimp_dodge_burn_type_get_type ())
62
 
 
63
 
GType gimp_dodge_burn_type_get_type (void) G_GNUC_CONST;
64
 
 
65
 
typedef enum
66
 
{
67
 
  GIMP_DODGE,  /*< desc="Dodge" >*/
68
 
  GIMP_BURN    /*< desc="Burn"  >*/
69
 
} GimpDodgeBurnType;
 
67
  GIMP_SOURCE_ALIGN_NO,          /*< desc="None"        >*/
 
68
  GIMP_SOURCE_ALIGN_YES,         /*< desc="Aligned"     >*/
 
69
  GIMP_SOURCE_ALIGN_REGISTERED,  /*< desc="Registered"  >*/
 
70
  GIMP_SOURCE_ALIGN_FIXED        /*< desc="Fixed"       >*/
 
71
} GimpSourceAlignMode;
70
72
 
71
73
 
72
74
#define GIMP_TYPE_CONVOLVE_TYPE (gimp_convolve_type_get_type ())
93
95
} GimpInkBlobType;
94
96
 
95
97
 
96
 
#define GIMP_TYPE_PAINT_APPLICATION_MODE (gimp_paint_application_mode_get_type ())
97
 
 
98
 
GType gimp_paint_application_mode_get_type (void) G_GNUC_CONST;
99
 
 
100
 
typedef enum
101
 
{
102
 
  GIMP_PAINT_CONSTANT,    /*< desc="Constant"    >*/
103
 
  GIMP_PAINT_INCREMENTAL  /*< desc="Incremental" >*/
104
 
} GimpPaintApplicationMode;
105
 
 
106
 
 
107
98
/*
108
99
 * non-registered enums; register them if needed
109
100
 */
110
101
 
111
 
typedef enum  /*< skip >*/
112
 
{
113
 
  GIMP_BRUSH_HARD,
114
 
  GIMP_BRUSH_SOFT,
115
 
  GIMP_BRUSH_PRESSURE  /*< pdb-skip, skip >*/
116
 
} GimpBrushApplicationMode;
117
 
 
118
102
typedef enum  /*< skip, pdb-skip >*/
119
103
{
120
104
  GIMP_PAINT_STATE_INIT,    /*  Setup PaintFunc internals                    */