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

« back to all changes in this revision

Viewing changes to app/vectors/vectors-types.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
 * vectors-types.h
24
24
 
25
25
#include "core/core-types.h"
26
26
 
27
 
 
28
 
typedef enum
29
 
{
30
 
  GIMP_ANCHOR_ANCHOR,
31
 
  GIMP_ANCHOR_CONTROL
32
 
} GimpAnchorType;
33
 
 
34
 
typedef enum
35
 
{
36
 
  GIMP_ANCHOR_FEATURE_NONE,
37
 
  GIMP_ANCHOR_FEATURE_EDGE,
38
 
  GIMP_ANCHOR_FEATURE_ALIGNED,
39
 
  GIMP_ANCHOR_FEATURE_SYMMETRIC
40
 
} GimpAnchorFeatureType;
41
 
 
42
 
typedef enum
43
 
{
44
 
  EXTEND_SIMPLE,
45
 
  EXTEND_EDITABLE
46
 
} GimpVectorExtendMode;
47
 
 
48
 
 
49
 
typedef struct _GimpAnchor       GimpAnchor;
50
 
 
51
 
typedef struct _GimpVectors      GimpVectors;
52
 
typedef struct _GimpStroke       GimpStroke;
53
 
typedef struct _GimpBezierStroke GimpBezierStroke;
 
27
#include "vectors/vectors-enums.h"
 
28
 
 
29
typedef struct _GimpAnchor          GimpAnchor;
 
30
 
 
31
typedef struct _GimpVectors         GimpVectors;
 
32
typedef struct _GimpVectorsUndo     GimpVectorsUndo;
 
33
typedef struct _GimpVectorsModUndo  GimpVectorsModUndo;
 
34
typedef struct _GimpVectorsPropUndo GimpVectorsPropUndo;
 
35
typedef struct _GimpStroke          GimpStroke;
 
36
typedef struct _GimpBezierStroke    GimpBezierStroke;
54
37
 
55
38
 
56
39
#endif /* __VECTORS_TYPES_H__ */