~ubuntu-branches/ubuntu/gutsy/gimp/gutsy

« back to all changes in this revision

Viewing changes to app/core/gimpimage.h

  • Committer: Bazaar Package Importer
  • Author(s): Steve Kowalik
  • Date: 2007-09-30 18:06:49 UTC
  • mfrom: (1.1.7 upstream)
  • Revision ID: james.westby@ubuntu.com-20070930180649-f647f0cxj32tgyn3
Tags: 2.4.0~rc3-1ubuntu1
* Resynchronized with Debian.
* Remaining Ubuntu changes:
  - 02_help-message.patch, 03_gimp.desktop.in.in.patch: Distro changes.
  - Weave i18n magic in the rules file.
  - Munge Maintainer field as per spec.
* Ubuntu changes dropped:
  - 10_dont_show_wizard.patch: Unused, upstream doesn't call it anymore.
  - Use dh_icons.
* Disabled the print plugin, and removed the Conflicts/Replaces on
  gimp-print.

Show diffs side-by-side

added added

removed removed

Lines of Context:
104
104
 
105
105
  gint               ID;                    /*  provides a unique ID         */
106
106
 
107
 
  GimpPlugInProcedure *save_proc;           /*  last PDB save proc used      */
 
107
  GimpPlugInProcedure *load_proc;           /*  procedure used for loading   */
 
108
  GimpPlugInProcedure *save_proc;           /*  last save procedure used     */
108
109
 
109
110
  gint               width, height;         /*  width and height attributes  */
110
111
  gdouble            xresolution;           /*  image x-res, in dpi          */
256
257
                                                  const gchar        *filename);
257
258
gchar         * gimp_image_get_filename          (const GimpImage    *image);
258
259
 
 
260
void            gimp_image_set_load_proc         (GimpImage          *image,
 
261
                                                  GimpPlugInProcedure *proc);
 
262
GimpPlugInProcedure * gimp_image_get_load_proc   (const GimpImage    *image);
259
263
void            gimp_image_set_save_proc         (GimpImage          *image,
260
264
                                                  GimpPlugInProcedure *proc);
261
265
GimpPlugInProcedure * gimp_image_get_save_proc   (const GimpImage    *image);