]> Pileus Git - ~andy/gtk/blob - gtk/gtkuimanager.h
added virtual functions GtkUIManager::get_widget() and ::get_action().
[~andy/gtk] / gtk / gtkuimanager.h
1 /*
2  * GTK - The GIMP Toolkit
3  * Copyright (C) 1998, 1999 Red Hat, Inc.
4  * All rights reserved.
5  *
6  * This Library is free software; you can redistribute it and/or
7  * modify it under the terms of the GNU Library General Public License as
8  * published by the Free Software Foundation; either version 2 of the
9  * License, or (at your option) any later version.
10  *
11  * This Library is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
14  * Library General Public License for more details.
15  *
16  * You should have received a copy of the GNU Library General Public
17  * License along with the Gnome Library; see the file COPYING.LIB.  If not,
18  * write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
19  * Boston, MA 02111-1307, USA.
20  */
21
22 /*
23  * Author: James Henstridge <james@daa.com.au>
24  *
25  * Modified by the GTK+ Team and others 2003.  See the AUTHORS
26  * file for a list of people on the GTK+ Team.  See the ChangeLog
27  * files for a list of changes.  These files are distributed with
28  * GTK+ at ftp://ftp.gtk.org/pub/gtk/. 
29  */
30 #ifndef __GTK_UI_MANAGER_H__
31 #define __GTK_UI_MANAGER_H__
32
33
34 #include <glib.h>
35 #include <glib-object.h>
36 #include <gtk/gtkaccelgroup.h>
37 #include <gtk/gtkwidget.h>
38 #include <gtk/gtkaction.h>
39 #include <gtk/gtkactiongroup.h>
40
41 G_BEGIN_DECLS
42
43 #define GTK_TYPE_UI_MANAGER            (gtk_ui_manager_get_type ())
44 #define GTK_UI_MANAGER(obj)            (G_TYPE_CHECK_INSTANCE_CAST ((obj), GTK_TYPE_UI_MANAGER, GtkUIManager))
45 #define GTK_UI_MANAGER_CLASS(klass)    (G_TYPE_CHECK_CLASS_CAST ((klass), GTK_TYPE_UI_MANAGER, GtkUIManagerClass))
46 #define GTK_IS_UI_MANAGER(obj)         (G_TYPE_CHECK_INSTANCE_TYPE ((obj), GTK_TYPE_UI_MANAGER))
47 #define GTK_IS_UI_MANAGER_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE ((klass), GTK_TYPE_UI_MANAGER))
48 #define GTK_UI_MANAGER_GET_CLASS(obj)  (G_TYPE_INSTANCE_GET_CLASS((obj), GTK_TYPE_UI_MANAGER, GtkUIManagerClass))
49
50 typedef struct _GtkUIManager      GtkUIManager;
51 typedef struct _GtkUIManagerClass GtkUIManagerClass;
52 typedef struct _GtkUIManagerPrivate GtkUIManagerPrivate;
53
54
55 struct _GtkUIManager {
56   GObject parent;
57
58   /*< private >*/
59
60   GtkUIManagerPrivate *private_data;
61 };
62
63 struct _GtkUIManagerClass {
64   GObjectClass parent_class;
65
66   /* Signals */
67   void (* add_widget)       (GtkUIManager *merge, 
68                              GtkWidget    *widget);
69   void (* actions_changed)  (GtkUIManager *merge);
70   void (* connect_proxy)    (GtkUIManager *merge,
71                              GtkAction    *action,
72                              GtkWidget    *proxy);
73   void (* disconnect_proxy) (GtkUIManager *merge,
74                              GtkAction    *action,
75                              GtkWidget    *proxy);
76   void (* pre_activate)     (GtkUIManager *merge,
77                              GtkAction    *action);
78   void (* post_activate)    (GtkUIManager *merge,
79                              GtkAction    *action);
80
81   /* Virtual functions */
82   GtkWidget * (* get_widget) (GtkUIManager *manager,
83                               const gchar  *path);
84   GtkAction * (* get_action) (GtkUIManager *manager,
85                               const gchar  *path);
86
87   /* Padding for future expansion */
88   void (*_gtk_reserved1) (void);
89   void (*_gtk_reserved2) (void);
90 };
91
92 typedef enum {
93   GTK_UI_MANAGER_AUTO         = 0,
94   GTK_UI_MANAGER_MENUBAR      = 1 << 0,
95   GTK_UI_MANAGER_MENU         = 1 << 1,
96   GTK_UI_MANAGER_TOOLBAR      = 1 << 2,
97   GTK_UI_MANAGER_PLACEHOLDER  = 1 << 3,
98   GTK_UI_MANAGER_POPUP        = 1 << 4,
99   GTK_UI_MANAGER_MENUITEM     = 1 << 5,
100   GTK_UI_MANAGER_TOOLITEM     = 1 << 6,
101   GTK_UI_MANAGER_SEPARATOR    = 1 << 7,
102   GTK_UI_MANAGER_ACCELERATOR  = 1 << 8
103 } GtkUIManagerItemType;
104
105 GType          gtk_ui_manager_get_type            (void) G_GNUC_CONST;
106 GtkUIManager  *gtk_ui_manager_new                 (void);
107 void           gtk_ui_manager_set_add_tearoffs    (GtkUIManager          *self,
108                                                    gboolean               add_tearoffs);
109 gboolean       gtk_ui_manager_get_add_tearoffs    (GtkUIManager          *self);
110 void           gtk_ui_manager_insert_action_group (GtkUIManager          *self,
111                                                    GtkActionGroup        *action_group,
112                                                    gint                   pos);
113 void           gtk_ui_manager_remove_action_group (GtkUIManager          *self,
114                                                    GtkActionGroup        *action_group);
115 GList         *gtk_ui_manager_get_action_groups   (GtkUIManager          *self);
116 GtkAccelGroup *gtk_ui_manager_get_accel_group     (GtkUIManager          *self);
117 GtkWidget     *gtk_ui_manager_get_widget          (GtkUIManager          *self,
118                                                    const gchar           *path);
119 GSList        *gtk_ui_manager_get_toplevels       (GtkUIManager          *self,
120                                                    GtkUIManagerItemType   types);
121 GtkAction     *gtk_ui_manager_get_action          (GtkUIManager          *self,
122                                                    const gchar           *path);
123 guint          gtk_ui_manager_add_ui_from_string  (GtkUIManager          *self,
124                                                    const gchar           *buffer,
125                                                    gssize                 length,
126                                                    GError               **error);
127 guint          gtk_ui_manager_add_ui_from_file    (GtkUIManager          *self,
128                                                    const gchar           *filename,
129                                                    GError               **error);
130 void           gtk_ui_manager_add_ui              (GtkUIManager          *self,
131                                                    guint                  merge_id,
132                                                    const gchar           *path,
133                                                    const gchar           *name,
134                                                    const gchar           *action,
135                                                    GtkUIManagerItemType   type,
136                                                    gboolean               top);
137 void           gtk_ui_manager_remove_ui           (GtkUIManager          *self,
138                                                    guint                  merge_id);
139 gchar         *gtk_ui_manager_get_ui              (GtkUIManager          *self);
140 void           gtk_ui_manager_ensure_update       (GtkUIManager          *self);
141 guint          gtk_ui_manager_new_merge_id        (GtkUIManager          *self);
142
143 G_END_DECLS
144
145 #endif /* __GTK_UI_MANAGER_H__ */