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

« back to all changes in this revision

Viewing changes to app/widgets/gimpdocked.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-1997 Spencer Kimball and Peter Mattis
3
3
 *
4
4
 * gimpdocked.h
36
36
  GTypeInterface base_iface;
37
37
 
38
38
  /*  signals  */
39
 
  void            (* title_changed) (GimpDocked   *docked);
 
39
  void            (* title_changed)       (GimpDocked   *docked);
40
40
 
41
41
  /*  virtual functions  */
42
 
  void            (* set_aux_info)  (GimpDocked   *docked,
43
 
                                     GList        *aux_info);
44
 
  GList         * (* get_aux_info)  (GimpDocked   *docked);
45
 
 
46
 
  GtkWidget     * (* get_preview)   (GimpDocked   *docked,
47
 
                                     GimpContext  *context,
48
 
                                     GtkIconSize   size);
49
 
  GimpUIManager * (* get_menu)      (GimpDocked   *docked,
50
 
                                     const gchar **ui_path,
51
 
                                     gpointer     *popup_data);
52
 
  gchar         * (* get_title)     (GimpDocked   *docked);
53
 
 
54
 
  void            (* set_context)   (GimpDocked   *docked,
55
 
                                     GimpContext  *context);
 
42
  void            (* set_aux_info)        (GimpDocked   *docked,
 
43
                                           GList        *aux_info);
 
44
  GList         * (* get_aux_info)        (GimpDocked   *docked);
 
45
 
 
46
  GtkWidget     * (* get_preview)         (GimpDocked   *docked,
 
47
                                           GimpContext  *context,
 
48
                                           GtkIconSize   size);
 
49
  GimpUIManager * (* get_menu)            (GimpDocked   *docked,
 
50
                                           const gchar **ui_path,
 
51
                                           gpointer     *popup_data);
 
52
  gchar         * (* get_title)           (GimpDocked   *docked);
 
53
 
 
54
  void            (* set_context)         (GimpDocked   *docked,
 
55
                                           GimpContext  *context);
 
56
 
 
57
  gboolean        (* has_button_bar)      (GimpDocked   *docked);
 
58
  void            (* set_show_button_bar) (GimpDocked   *docked,
 
59
                                           gboolean      show);
 
60
  gboolean        (* get_show_button_bar) (GimpDocked   *docked);
56
61
};
57
62
 
58
63
 
59
 
GType           gimp_docked_interface_get_type (void) G_GNUC_CONST;
60
 
 
61
 
void            gimp_docked_title_changed      (GimpDocked   *docked);
62
 
 
63
 
void            gimp_docked_set_aux_info       (GimpDocked   *docked,
64
 
                                                GList        *aux_info);
65
 
GList         * gimp_docked_get_aux_info       (GimpDocked   *docked);
66
 
 
67
 
GtkWidget     * gimp_docked_get_preview        (GimpDocked   *docked,
68
 
                                                GimpContext  *context,
69
 
                                                GtkIconSize   size);
70
 
GimpUIManager * gimp_docked_get_menu           (GimpDocked   *docked,
71
 
                                                const gchar **ui_path,
72
 
                                                gpointer     *popup_data);
73
 
gchar         * gimp_docked_get_title          (GimpDocked   *docked);
74
 
 
75
 
void            gimp_docked_set_context        (GimpDocked   *docked,
76
 
                                                GimpContext  *context);
 
64
GType           gimp_docked_interface_get_type  (void) G_GNUC_CONST;
 
65
 
 
66
void            gimp_docked_title_changed       (GimpDocked   *docked);
 
67
 
 
68
void            gimp_docked_set_aux_info        (GimpDocked   *docked,
 
69
                                                 GList        *aux_info);
 
70
GList         * gimp_docked_get_aux_info        (GimpDocked   *docked);
 
71
 
 
72
GtkWidget     * gimp_docked_get_preview         (GimpDocked   *docked,
 
73
                                                 GimpContext  *context,
 
74
                                                 GtkIconSize   size);
 
75
GimpUIManager * gimp_docked_get_menu            (GimpDocked   *docked,
 
76
                                                 const gchar **ui_path,
 
77
                                                 gpointer     *popup_data);
 
78
gchar         * gimp_docked_get_title           (GimpDocked   *docked);
 
79
 
 
80
void            gimp_docked_set_context         (GimpDocked   *docked,
 
81
                                                 GimpContext  *context);
 
82
 
 
83
gboolean        gimp_docked_has_button_bar      (GimpDocked   *docked);
 
84
void            gimp_docked_set_show_button_bar (GimpDocked   *docked,
 
85
                                                 gboolean      show);
 
86
gboolean        gimp_docked_get_show_button_bar (GimpDocked   *docked);
77
87
 
78
88
 
79
89
#endif  /* __GIMP_DOCKED_H__ */