]> Pileus Git - ~andy/gtk/blob - gtk/gtkuimanager.h
Fix #150738, Tomislav Jonjic.
[~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   /* Padding for future expansion */
82   void (*_gtk_reserved1) (void);
83   void (*_gtk_reserved2) (void);
84   void (*_gtk_reserved3) (void);
85   void (*_gtk_reserved4) (void);
86 };
87
88 typedef enum {
89   GTK_UI_MANAGER_AUTO         = 0,
90   GTK_UI_MANAGER_MENUBAR      = 1 << 0,
91   GTK_UI_MANAGER_MENU         = 1 << 1,
92   GTK_UI_MANAGER_TOOLBAR      = 1 << 2,
93   GTK_UI_MANAGER_PLACEHOLDER  = 1 << 3,
94   GTK_UI_MANAGER_POPUP        = 1 << 4,
95   GTK_UI_MANAGER_MENUITEM     = 1 << 5,
96   GTK_UI_MANAGER_TOOLITEM     = 1 << 6,
97   GTK_UI_MANAGER_SEPARATOR    = 1 << 7,
98   GTK_UI_MANAGER_ACCELERATOR  = 1 << 8
99 } GtkUIManagerItemType;
100
101 GType          gtk_ui_manager_get_type            (void);
102 GtkUIManager  *gtk_ui_manager_new                 (void);
103 void           gtk_ui_manager_set_add_tearoffs    (GtkUIManager          *self,
104                                                    gboolean               add_tearoffs);
105 gboolean       gtk_ui_manager_get_add_tearoffs    (GtkUIManager          *self);
106 void           gtk_ui_manager_insert_action_group (GtkUIManager          *self,
107                                                    GtkActionGroup        *action_group,
108                                                    gint                   pos);
109 void           gtk_ui_manager_remove_action_group (GtkUIManager          *self,
110                                                    GtkActionGroup        *action_group);
111 GList         *gtk_ui_manager_get_action_groups   (GtkUIManager          *self);
112 GtkAccelGroup *gtk_ui_manager_get_accel_group     (GtkUIManager          *self);
113 GtkWidget     *gtk_ui_manager_get_widget          (GtkUIManager          *self,
114                                                    const gchar           *path);
115 GSList        *gtk_ui_manager_get_toplevels       (GtkUIManager          *self,
116                                                    GtkUIManagerItemType   types);
117 GtkAction     *gtk_ui_manager_get_action          (GtkUIManager          *self,
118                                                    const gchar           *path);
119 guint          gtk_ui_manager_add_ui_from_string  (GtkUIManager          *self,
120                                                    const gchar           *buffer,
121                                                    gssize                 length,
122                                                    GError               **error);
123 guint          gtk_ui_manager_add_ui_from_file    (GtkUIManager          *self,
124                                                    const gchar           *filename,
125                                                    GError               **error);
126 void           gtk_ui_manager_add_ui              (GtkUIManager          *self,
127                                                    guint                  merge_id,
128                                                    const gchar           *path,
129                                                    const gchar           *name,
130                                                    const gchar           *action,
131                                                    GtkUIManagerItemType   type,
132                                                    gboolean               top);
133 void           gtk_ui_manager_remove_ui           (GtkUIManager          *self,
134                                                    guint                  merge_id);
135 gchar         *gtk_ui_manager_get_ui              (GtkUIManager          *self);
136 void           gtk_ui_manager_ensure_update       (GtkUIManager          *self);
137 guint          gtk_ui_manager_new_merge_id        (GtkUIManager          *self);
138
139 G_END_DECLS
140
141 #endif /* __GTK_UI_MANAGER_H__ */