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

« back to all changes in this revision

Viewing changes to libgimpwidgets/gimpsizeentry.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:
78
78
GType       gimp_size_entry_get_type (void) G_GNUC_CONST;
79
79
 
80
80
GtkWidget * gimp_size_entry_new (gint                       number_of_fields,
81
 
                                 GimpUnit                   unit,
82
 
                                 const gchar               *unit_format,
83
 
                                 gboolean                   menu_show_pixels,
84
 
                                 gboolean                   menu_show_percent,
85
 
                                 gboolean                   show_refval,
86
 
                                 gint                       spinbutton_width,
87
 
                                 GimpSizeEntryUpdatePolicy  update_policy);
 
81
                                 GimpUnit                   unit,
 
82
                                 const gchar               *unit_format,
 
83
                                 gboolean                   menu_show_pixels,
 
84
                                 gboolean                   menu_show_percent,
 
85
                                 gboolean                   show_refval,
 
86
                                 gint                       spinbutton_width,
 
87
                                 GimpSizeEntryUpdatePolicy  update_policy);
88
88
 
89
89
void        gimp_size_entry_add_field  (GimpSizeEntry   *gse,
90
 
                                        GtkSpinButton   *value_spinbutton,
91
 
                                        GtkSpinButton   *refval_spinbutton);
 
90
                                        GtkSpinButton   *value_spinbutton,
 
91
                                        GtkSpinButton   *refval_spinbutton);
92
92
 
93
93
GtkWidget * gimp_size_entry_attach_label          (GimpSizeEntry *gse,
94
 
                                                   const gchar   *text,
95
 
                                                   gint           row,
96
 
                                                   gint           column,
97
 
                                                   gfloat         alignment);
 
94
                                                   const gchar   *text,
 
95
                                                   gint           row,
 
96
                                                   gint           column,
 
97
                                                   gfloat         alignment);
98
98
 
99
99
void        gimp_size_entry_set_resolution        (GimpSizeEntry *gse,
100
 
                                                   gint           field,
101
 
                                                   gdouble        resolution,
102
 
                                                   gboolean       keep_size);
 
100
                                                   gint           field,
 
101
                                                   gdouble        resolution,
 
102
                                                   gboolean       keep_size);
103
103
 
104
104
void        gimp_size_entry_set_size              (GimpSizeEntry *gse,
105
 
                                                   gint           field,
106
 
                                                   gdouble        lower,
107
 
                                                   gdouble        upper);
 
105
                                                   gint           field,
 
106
                                                   gdouble        lower,
 
107
                                                   gdouble        upper);
108
108
 
109
109
void        gimp_size_entry_set_value_boundaries  (GimpSizeEntry *gse,
110
 
                                                   gint           field,
111
 
                                                   gdouble        lower,
112
 
                                                   gdouble        upper);
 
110
                                                   gint           field,
 
111
                                                   gdouble        lower,
 
112
                                                   gdouble        upper);
113
113
 
114
114
gdouble     gimp_size_entry_get_value             (GimpSizeEntry *gse,
115
 
                                                   gint           field);
 
115
                                                   gint           field);
116
116
void        gimp_size_entry_set_value             (GimpSizeEntry *gse,
117
 
                                                   gint           field,
118
 
                                                   gdouble        value);
 
117
                                                   gint           field,
 
118
                                                   gdouble        value);
119
119
 
120
120
void        gimp_size_entry_set_refval_boundaries (GimpSizeEntry *gse,
121
 
                                                   gint           field,
122
 
                                                   gdouble        lower,
123
 
                                                   gdouble        upper);
 
121
                                                   gint           field,
 
122
                                                   gdouble        lower,
 
123
                                                   gdouble        upper);
124
124
void        gimp_size_entry_set_refval_digits     (GimpSizeEntry *gse,
125
 
                                                   gint           field,
126
 
                                                   gint           digits);
 
125
                                                   gint           field,
 
126
                                                   gint           digits);
127
127
 
128
128
gdouble     gimp_size_entry_get_refval            (GimpSizeEntry *gse,
129
 
                                                   gint           field);
 
129
                                                   gint           field);
130
130
void        gimp_size_entry_set_refval            (GimpSizeEntry *gse,
131
 
                                                   gint           field,
132
 
                                                   gdouble        refval);
 
131
                                                   gint           field,
 
132
                                                   gdouble        refval);
133
133
 
134
134
GimpUnit    gimp_size_entry_get_unit              (GimpSizeEntry *gse);
135
135
void        gimp_size_entry_set_unit              (GimpSizeEntry *gse,
136
 
                                                   GimpUnit       unit);
 
136
                                                   GimpUnit       unit);
 
137
void        gimp_size_entry_show_unit_menu        (GimpSizeEntry *gse,
 
138
                                                   gboolean       show);
137
139
 
138
140
void        gimp_size_entry_set_pixel_digits      (GimpSizeEntry *gse,
139
141
                                                   gint           digits);
140
142
 
141
143
void        gimp_size_entry_grab_focus            (GimpSizeEntry *gse);
 
144
void        gimp_size_entry_set_activates_default (GimpSizeEntry *gse,
 
145
                                                   gboolean       setting);
142
146
GtkWidget * gimp_size_entry_get_help_widget       (GimpSizeEntry *gse,
143
147
                                                   gint           field);
144
148