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

« back to all changes in this revision

Viewing changes to app/widgets/gimpviewabledialog.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
 * gimpviewabledialog.h
39
39
 
40
40
struct _GimpViewableDialog
41
41
{
42
 
  GimpDialog  parent_instance;
43
 
 
44
 
  GtkWidget  *icon;
45
 
  GtkWidget  *preview;
46
 
  GtkWidget  *desc_label;
47
 
  GtkWidget  *viewable_label;
 
42
  GimpDialog   parent_instance;
 
43
 
 
44
  GimpContext *context;
 
45
 
 
46
  GtkWidget   *icon;
 
47
  GtkWidget   *view;
 
48
  GtkWidget   *desc_label;
 
49
  GtkWidget   *viewable_label;
48
50
};
49
51
 
50
52
struct _GimpViewableDialogClass
56
58
GType       gimp_viewable_dialog_get_type (void) G_GNUC_CONST;
57
59
 
58
60
GtkWidget * gimp_viewable_dialog_new      (GimpViewable       *viewable,
 
61
                                           GimpContext        *context,
59
62
                                           const gchar        *title,
60
63
                                           const gchar        *role,
61
64
                                           const gchar        *stock_id,
63
66
                                           GtkWidget          *parent,
64
67
                                           GimpHelpFunc        help_func,
65
68
                                           const gchar        *help_id,
66
 
                                           ...);
 
69
                                           ...) G_GNUC_NULL_TERMINATED;
67
70
 
68
71
void    gimp_viewable_dialog_set_viewable (GimpViewableDialog *dialog,
69
 
                                           GimpViewable       *viewable);
 
72
                                           GimpViewable       *viewable,
 
73
                                           GimpContext        *context);
70
74
 
71
75
 
72
76
G_END_DECLS