~ubuntu-branches/ubuntu/saucy/gimp/saucy-security

« back to all changes in this revision

Viewing changes to app/widgets/gimptemplateeditor.h

  • Committer: Package Import Robot
  • Author(s): Micah Gersten
  • Date: 2012-05-20 19:21:01 UTC
  • mfrom: (1.1.26) (0.4.16 sid)
  • Revision ID: package-import@ubuntu.com-20120520192101-bs7zetx8ffoq2nfv
Tags: 2.8.0-2ubuntu1
* Merge from Debian unstable (LP: #908472). Remaining Changes:
  - debian/patches/02_help-message.patch,
    debian/patches/03_gimp.desktop.in.in.patch:
    + Update some strings for Ubuntu
  - debian/control:
    + Update description
  - debian/rules:
    + Set gettext domain and update translation templates
* Drop the following patches that were applied upstream:
  - debian/patches/ghost-cursor.patch: fix Wacom tablet cursor events
  - debian/patches/embed-page-setup-dialog.patch

Show diffs side-by-side

added added

removed removed

Lines of Context:
4
4
 * gimptemplateeditor.h
5
5
 * Copyright (C) 2002 Michael Natterer <mitch@gimp.org>
6
6
 *
7
 
 * This program is free software; you can redistribute it and/or modify
 
7
 * This program is free software: you can redistribute it and/or modify
8
8
 * it under the terms of the GNU General Public License as published by
9
 
 * the Free Software Foundation; either version 2 of the License, or
 
9
 * the Free Software Foundation; either version 3 of the License, or
10
10
 * (at your option) any later version.
11
11
 *
12
12
 * This program is distributed in the hope that it will be useful,
15
15
 * GNU General Public License for more details.
16
16
 *
17
17
 * You should have received a copy of the GNU General Public License
18
 
 * along with this program; if not, write to the Free Software
19
 
 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
 
18
 * along with this program.  If not, see <http://www.gnu.org/licenses/>.
20
19
 */
21
20
 
22
21
#ifndef __GIMP_TEMPLATE_EDITOR_H__
35
34
 
36
35
struct _GimpTemplateEditor
37
36
{
38
 
  GtkVBox        parent_instance;
39
 
 
40
 
  GimpTemplate  *template;
41
 
 
42
 
  GimpContainer *stock_id_container;
43
 
  GimpContext   *stock_id_context;
44
 
 
45
 
  GtkWidget     *aspect_button;
46
 
  gboolean       block_aspect;
47
 
 
48
 
  GtkWidget     *expander;
49
 
  GtkWidget     *size_se;
50
 
  GtkWidget     *memsize_label;
51
 
  GtkWidget     *pixel_label;
52
 
  GtkWidget     *more_label;
53
 
  GtkWidget     *resolution_se;
 
37
  GtkBox  parent_instance;
54
38
};
55
39
 
56
40
struct _GimpTemplateEditorClass
57
41
{
58
 
  GtkVBoxClass   parent_class;
 
42
  GtkBoxClass   parent_class;
59
43
};
60
44
 
61
45
 
62
 
GType       gimp_template_editor_get_type      (void) G_GNUC_CONST;
63
 
 
64
 
GtkWidget * gimp_template_editor_new           (GimpTemplate       *template,
65
 
                                                Gimp               *gimp,
66
 
                                                gboolean            edit_template);
67
 
 
68
 
void        gimp_template_editor_show_advanced (GimpTemplateEditor *editor,
69
 
                                                gboolean            expanded);
 
46
GType          gimp_template_editor_get_type      (void) G_GNUC_CONST;
 
47
 
 
48
GtkWidget    * gimp_template_editor_new           (GimpTemplate       *template,
 
49
                                                   Gimp               *gimp,
 
50
                                                   gboolean            edit_template);
 
51
 
 
52
GimpTemplate * gimp_template_editor_get_template  (GimpTemplateEditor *editor);
 
53
 
 
54
void           gimp_template_editor_show_advanced (GimpTemplateEditor *editor,
 
55
                                                   gboolean            expanded);
 
56
GtkWidget    * gimp_template_editor_get_size_se   (GimpTemplateEditor *editor);
70
57
 
71
58
 
72
59
#endif  /*  __GIMP_TEMPLATE_EDITOR_H__  */