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

« back to all changes in this revision

Viewing changes to app/widgets/gimpcontainerpopup.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
 * gimpcontainerpopup.h
5
 
 * Copyright (C) 2003 Michael Natterer <mitch@gimp.org>
 
5
 * Copyright (C) 2003-2005 Michael Natterer <mitch@gimp.org>
6
6
 *
7
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
45
45
  GimpContext         *context;
46
46
 
47
47
  GimpViewType         view_type;
48
 
  gint                 default_preview_size;
49
 
  gint                 preview_size;
50
 
  gint                 preview_border_width;
 
48
  gint                 default_view_size;
 
49
  gint                 view_size;
 
50
  gint                 view_border_width;
51
51
 
52
52
  GtkWidget           *frame;
53
53
  GimpContainerEditor *editor;
72
72
GtkWidget * gimp_container_popup_new      (GimpContainer      *container,
73
73
                                           GimpContext        *context,
74
74
                                           GimpViewType        view_type,
75
 
                                           gint                default_preview_size,
76
 
                                           gint                preview_size,
77
 
                                           gint                preview_border_width,
 
75
                                           gint                default_view_size,
 
76
                                           gint                view_size,
 
77
                                           gint                view_border_width,
78
78
                                           GimpDialogFactory  *dialog_factory,
79
79
                                           const gchar        *dialog_identifier,
80
80
                                           const gchar        *dialog_stock_id,
82
82
void        gimp_container_popup_show     (GimpContainerPopup *popup,
83
83
                                           GtkWidget          *widget);
84
84
 
 
85
GimpViewType gimp_container_popup_get_view_type (GimpContainerPopup *popup);
 
86
void         gimp_container_popup_set_view_type (GimpContainerPopup *popup,
 
87
                                                 GimpViewType        view_type);
 
88
 
 
89
gint         gimp_container_popup_get_view_size (GimpContainerPopup *popup);
 
90
void         gimp_container_popup_set_view_size (GimpContainerPopup *popup,
 
91
                                                 gint                view_size);
 
92
 
85
93
 
86
94
#endif  /*  __GIMP_CONTAINER_POPUP_H__  */