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

« back to all changes in this revision

Viewing changes to app/paint/paint-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
 * This program is free software; you can redistribute it and/or modify
24
24
#include "paint/paint-enums.h"
25
25
 
26
26
 
27
 
/*  objects  */
28
 
 
29
 
typedef struct _GimpPaintCore    GimpPaintCore;
30
 
typedef struct _GimpBrushCore    GimpBrushCore;
31
 
typedef struct _GimpPaintOptions GimpPaintOptions;
 
27
/*  paint cores  */
 
28
 
 
29
typedef struct _GimpPaintCore        GimpPaintCore;
 
30
typedef struct _GimpBrushCore        GimpBrushCore;
 
31
typedef struct _GimpSourceCore       GimpSourceCore;
 
32
 
 
33
typedef struct _GimpAirbrush         GimpAirbrush;
 
34
typedef struct _GimpClone            GimpClone;
 
35
typedef struct _GimpConvolve         GimpConvolve;
 
36
typedef struct _GimpDodgeBurn        GimpDodgeBurn;
 
37
typedef struct _GimpEraser           GimpEraser;
 
38
typedef struct _GimpHeal             GimpHeal;
 
39
typedef struct _GimpInk              GimpInk;
 
40
typedef struct _GimpPaintbrush       GimpPaintbrush;
 
41
typedef struct _GimpPencil           GimpPencil;
 
42
typedef struct _GimpPerspectiveClone GimpPerspectiveClone;
 
43
typedef struct _GimpSmudge           GimpSmudge;
 
44
 
 
45
 
 
46
/*  paint options  */
 
47
 
 
48
typedef struct _GimpPaintOptions            GimpPaintOptions;
 
49
typedef struct _GimpSourceOptions           GimpSourceOptions;
 
50
 
 
51
typedef struct _GimpAirbrushOptions         GimpAirbrushOptions;
 
52
typedef struct _GimpCloneOptions            GimpCloneOptions;
 
53
typedef struct _GimpConvolveOptions         GimpConvolveOptions;
 
54
typedef struct _GimpDodgeBurnOptions        GimpDodgeBurnOptions;
 
55
typedef struct _GimpEraserOptions           GimpEraserOptions;
 
56
typedef struct _GimpInkOptions              GimpInkOptions;
 
57
typedef struct _GimpPencilOptions           GimpPencilOptions;
 
58
typedef struct _GimpPerspectiveCloneOptions GimpPerspectiveCloneOptions;
 
59
typedef struct _GimpSmudgeOptions           GimpSmudgeOptions;
 
60
 
 
61
 
 
62
/*  paint undos  */
 
63
 
 
64
typedef struct _GimpPaintCoreUndo GimpPaintCoreUndo;
 
65
typedef struct _GimpInkUndo       GimpInkUndo;
32
66
 
33
67
 
34
68
/*  functions  */
36
70
typedef void (* GimpPaintRegisterCallback) (Gimp        *gimp,
37
71
                                            GType        paint_type,
38
72
                                            GType        paint_options_type,
39
 
                                            const gchar *blurb);
 
73
                                            const gchar *identifier,
 
74
                                            const gchar *blurb,
 
75
                                            const gchar *stock_id);
40
76
 
41
77
typedef void (* GimpPaintRegisterFunc)     (Gimp                      *gimp,
42
78
                                            GimpPaintRegisterCallback  callback);