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

« back to all changes in this revision

Viewing changes to app/plug-in/plug-in-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
22
22
 
23
23
#include "core/core-types.h"
24
24
 
25
 
 
26
 
typedef enum
27
 
{
28
 
  GIMP_RUN_INTERACTIVE,
29
 
  GIMP_RUN_NONINTERACTIVE,
30
 
  GIMP_RUN_WITH_LAST_VALS
31
 
} GimpRunMode;
32
 
 
33
 
typedef enum /*< pdb-skip >*/ /*< skip >*/
34
 
{
35
 
  PLUG_IN_RGB_IMAGE      = 1 << 0,
36
 
  PLUG_IN_GRAY_IMAGE     = 1 << 1,
37
 
  PLUG_IN_INDEXED_IMAGE  = 1 << 2,
38
 
  PLUG_IN_RGBA_IMAGE     = 1 << 3,
39
 
  PLUG_IN_GRAYA_IMAGE    = 1 << 4,
40
 
  PLUG_IN_INDEXEDA_IMAGE = 1 << 5
41
 
} PlugInImageType;
42
 
 
43
 
 
44
 
typedef struct _PlugIn          PlugIn;
45
 
typedef struct _PlugInDef       PlugInDef;
46
 
typedef struct _PlugInProcDef   PlugInProcDef;
47
 
typedef struct _PlugInProcFrame PlugInProcFrame;
48
 
typedef struct _PlugInShm       PlugInShm;
 
25
#include "plug-in/plug-in-enums.h"
 
26
 
 
27
 
 
28
typedef struct _GimpPlugIn           GimpPlugIn;
 
29
typedef struct _GimpPlugInDef        GimpPlugInDef;
 
30
typedef struct _GimpPlugInManager    GimpPlugInManager;
 
31
typedef struct _GimpPlugInMenuBranch GimpPlugInMenuBranch;
 
32
typedef struct _GimpPlugInProcFrame  GimpPlugInProcFrame;
 
33
typedef struct _GimpPlugInShm        GimpPlugInShm;
49
34
 
50
35
 
51
36
#endif /* __PLUG_IN_TYPES_H__ */