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

« back to all changes in this revision

Viewing changes to app/display/gimpdisplay.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
37
37
{
38
38
  GimpObject  parent_instance;
39
39
 
40
 
  gint        ID;               /*  unique identifier for this gdisplay     */
41
 
 
42
 
  GimpImage  *gimage;           /*  pointer to the associated gimage        */
43
 
  gint        instance;         /*  the instance # of this gdisplay as      */
44
 
                                /*  taken from the gimage at creation       */
45
 
 
46
 
  GtkWidget  *shell;            /*  shell widget for this gdisplay          */
47
 
 
48
 
  GSList     *update_areas;     /*  Update areas list                       */
 
40
  gint        ID;               /*  unique identifier for this display     */
 
41
 
 
42
  GimpImage  *image;            /*  pointer to the associated image        */
 
43
  gint        instance;         /*  the instance # of this display as      */
 
44
                                /*  taken from the image at creation       */
 
45
 
 
46
  GtkWidget  *shell;            /*  shell widget for this display          */
 
47
 
 
48
  GSList     *update_areas;     /*  Update areas list                      */
49
49
};
50
50
 
51
51
struct _GimpDisplayClass
56
56
 
57
57
GType         gimp_display_get_type    (void) G_GNUC_CONST;
58
58
 
59
 
GimpDisplay * gimp_display_new         (GimpImage       *gimage,
 
59
GimpDisplay * gimp_display_new         (GimpImage       *image,
60
60
                                        GimpUnit         unit,
61
61
                                        gdouble          scale,
62
62
                                        GimpMenuFactory *menu_factory,
63
63
                                        GimpUIManager   *popup_manager);
64
 
void          gimp_display_delete      (GimpDisplay     *gdisp);
 
64
void          gimp_display_delete      (GimpDisplay     *display);
65
65
 
66
 
gint          gimp_display_get_ID      (GimpDisplay     *gdisp);
 
66
gint          gimp_display_get_ID      (GimpDisplay     *display);
67
67
GimpDisplay * gimp_display_get_by_ID   (Gimp            *gimp,
68
68
                                        gint             ID);
69
69
 
70
 
void          gimp_display_reconnect   (GimpDisplay     *gdisp,
71
 
                                        GimpImage       *gimage);
 
70
void          gimp_display_reconnect   (GimpDisplay     *display,
 
71
                                        GimpImage       *image);
72
72
 
73
 
void          gimp_display_update_area (GimpDisplay     *gdisp,
 
73
void          gimp_display_update_area (GimpDisplay     *display,
74
74
                                        gboolean         now,
75
75
                                        gint             x,
76
76
                                        gint             y,
77
77
                                        gint             w,
78
78
                                        gint             h);
79
79
 
80
 
void          gimp_display_flush       (GimpDisplay     *gdisp);
81
 
void          gimp_display_flush_now   (GimpDisplay     *gdisp);
 
80
void          gimp_display_flush       (GimpDisplay     *display);
 
81
void          gimp_display_flush_now   (GimpDisplay     *display);
82
82
 
83
83
 
84
84
#endif /*  __GIMP_DISPLAY_H__  */