]> Pileus Git - ~andy/gtk/blob - gtk/gtkitemfactory.h
Added notice to look in AUTHORS and ChangeLog files for a list of changes.
[~andy/gtk] / gtk / gtkitemfactory.h
1 /* GTK - The GIMP Toolkit
2  * Copyright (C) 1995-1997 Peter Mattis, Spencer Kimball and Josh MacDonald
3  *
4  * GtkItemFactory: Flexible item factory with automatic rc handling
5  * Copyright (C) 1998 Tim Janik
6  *
7  * This library is free software; you can redistribute it and/or
8  * modify it under the terms of the GNU Library General Public
9  * License as published by the Free Software Foundation; either
10  * version 2 of the License, or (at your option) any later version.
11  *
12  * This library is distributed in the hope that it will be useful,
13  * but WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
15  * Library General Public License for more details.
16  *
17  * You should have received a copy of the GNU Library General Public
18  * License along with this library; if not, write to the
19  * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
20  * Boston, MA 02111-1307, USA.
21  */
22
23 /*
24  * Modified by the GTK+ Team and others 1997-1999.  See the AUTHORS
25  * file for a list of people on the GTK+ Team.  See the ChangeLog
26  * files for a list of changes.  These files are distributed with
27  * GTK+ at ftp://ftp.gtk.org/pub/gtk/. 
28  */
29
30 #ifndef __GTK_ITEM_FACTORY_H__
31 #define __GTK_ITEM_FACTORY_H__
32
33
34 #include <gtk/gtkwidget.h>
35 #include <gtk/gtkmenufactory.h> /* for GtkMenuEntry */
36 #include <gtk/gtkbindings.h>    /* for GtkPatternSpec */
37
38
39 #ifdef __cplusplus
40 extern "C" {
41 #endif /* __cplusplus */
42
43
44 typedef void    (*GtkPrintFunc)            (gpointer             func_data,
45                                             gchar               *str);
46 typedef gchar * (*GtkTranslateFunc)        (const gchar         *path,
47                                             gpointer             func_data);
48 typedef void    (*GtkItemFactoryCallback)  ();
49 typedef void    (*GtkItemFactoryCallback1) (gpointer             callback_data,
50                                             guint                callback_action,
51                                             GtkWidget           *widget);
52
53 #define GTK_TYPE_ITEM_FACTORY            (gtk_item_factory_get_type ())
54 #define GTK_ITEM_FACTORY(object)         (GTK_CHECK_CAST (object, GTK_TYPE_ITEM_FACTORY, GtkItemFactory))
55 #define GTK_ITEM_FACTORY_CLASS(klass)    (GTK_CHECK_CLASS_CAST (klass, GTK_TYPE_ITEM_FACTORY, GtkItemFactoryClass))
56 #define GTK_IS_ITEM_FACTORY(object)      (GTK_CHECK_TYPE (object, GTK_TYPE_ITEM_FACTORY))
57 #define GTK_IS_ITEM_FACTORY_CLASS(klass) (GTK_CHECK_CLASS_TYPE ((klass), GTK_TYPE_ITEM_FACTORY))
58
59
60 typedef struct  _GtkItemFactory                 GtkItemFactory;
61 typedef struct  _GtkItemFactoryClass            GtkItemFactoryClass;
62 typedef struct  _GtkItemFactoryEntry            GtkItemFactoryEntry;
63 typedef struct  _GtkItemFactoryItem             GtkItemFactoryItem;
64
65 struct _GtkItemFactory
66 {
67   GtkObject              object;
68
69   gchar                 *path;
70   GtkAccelGroup         *accel_group;
71   GtkWidget             *widget;
72   GSList                *widgets_by_action;
73
74   GtkTranslateFunc       translate_func;
75   gpointer               translate_data;
76   GtkDestroyNotify       translate_notify;   
77 };
78
79 struct _GtkItemFactoryClass
80 {
81   GtkObjectClass         object_class;
82
83   gchar                 *cpair_comment_single;
84
85   GHashTable            *item_ht;
86 };
87
88 struct _GtkItemFactoryEntry
89 {
90   gchar *path;
91   gchar *accelerator;
92
93   GtkItemFactoryCallback callback;
94   guint                  callback_action;
95
96   /* possible values:
97    * NULL               -> "<Item>"
98    * ""                 -> "<Item>"
99    * "<Title>"          -> create a title item
100    * "<Item>"           -> create a simple item
101    * "<CheckItem>"      -> create a check item
102    * "<ToggleItem>"     -> create a toggle item
103    * "<RadioItem>"      -> create a radio item
104    * <path>             -> path of a radio item to link against
105    * "<Separator>"      -> create a separator
106    * "<Branch>"         -> create an item to hold sub items
107    * "<LastBranch>"     -> create a right justified item to hold sub items
108    */
109   gchar          *item_type;
110 };
111
112 struct _GtkItemFactoryItem
113 {
114   gchar *path;
115   guint  accelerator_key;
116   guint  accelerator_mods;
117   guint  modified : 1;
118   guint  in_propagation : 1;
119   gchar *item_type;
120
121   GSList *widgets;
122 };
123
124
125 GtkType         gtk_item_factory_get_type           (void);
126
127 /* `container_type' must be of GTK_TYPE_MENU_BAR, GTK_TYPE_MENU,
128  * or GTK_TYPE_OPTION_MENU.
129  */
130 GtkItemFactory* gtk_item_factory_new       (GtkType              container_type,
131                                             const gchar         *path,
132                                             GtkAccelGroup       *accel_group);
133 void            gtk_item_factory_construct (GtkItemFactory      *ifactory,
134                                             GtkType              container_type,
135                                             const gchar         *path,
136                                             GtkAccelGroup       *accel_group);
137      
138 /* These functions operate on GtkItemFactoryClass basis.
139  */
140 void            gtk_item_factory_parse_rc           (const gchar    *file_name);
141 void            gtk_item_factory_parse_rc_string    (const gchar    *rc_string);
142 void            gtk_item_factory_parse_rc_scanner   (GScanner       *scanner);
143      
144 GtkItemFactory* gtk_item_factory_from_widget        (GtkWidget        *widget);
145 gchar*          gtk_item_factory_path_from_widget   (GtkWidget        *widget);
146
147 GtkWidget*      gtk_item_factory_get_widget         (GtkItemFactory   *ifactory,
148                                                      const gchar      *path);
149 GtkWidget*      gtk_item_factory_get_widget_by_action (GtkItemFactory *ifactory,
150                                                        guint           action);
151
152 /* If `path_pspec' is passed as `NULL', this function will iterate over
153  * all hash entries. otherwise only those entries will be dumped for which
154  * the pattern matches, e.g. "<Image>*...".
155  */
156 void    gtk_item_factory_dump_items     (GtkPatternSpec         *path_pspec,
157                                          gboolean                modified_only,
158                                          GtkPrintFunc            print_func,
159                                          gpointer                func_data);
160 void    gtk_item_factory_dump_rc        (const gchar            *file_name,
161                                          GtkPatternSpec         *path_pspec,
162                                          gboolean                modified_only);
163 void    gtk_item_factory_print_func     (gpointer                FILE_pointer,
164                                          gchar                  *string);
165 void    gtk_item_factory_create_item    (GtkItemFactory         *ifactory,
166                                          GtkItemFactoryEntry    *entry,
167                                          gpointer                callback_data,
168                                          guint                   callback_type);
169 void    gtk_item_factory_create_items   (GtkItemFactory         *ifactory,
170                                          guint                   n_entries,
171                                          GtkItemFactoryEntry    *entries,
172                                          gpointer                callback_data);
173 void    gtk_item_factory_delete_item    (GtkItemFactory         *ifactory,
174                                          const gchar            *path);
175 void    gtk_item_factory_delete_entry   (GtkItemFactory         *ifactory,
176                                          GtkItemFactoryEntry    *entry);
177 void    gtk_item_factory_delete_entries (GtkItemFactory         *ifactory,
178                                          guint                   n_entries,
179                                          GtkItemFactoryEntry    *entries);
180 void    gtk_item_factory_popup          (GtkItemFactory         *ifactory,
181                                          guint                   x,
182                                          guint                   y,
183                                          guint                   mouse_button,
184                                          guint32                 time);
185 void    gtk_item_factory_popup_with_data(GtkItemFactory         *ifactory,
186                                          gpointer                popup_data,
187                                          GtkDestroyNotify        destroy,
188                                          guint                   x,
189                                          guint                   y,
190                                          guint                   mouse_button,
191                                          guint32                 time);
192 gpointer gtk_item_factory_popup_data    (GtkItemFactory         *ifactory);
193 gpointer gtk_item_factory_popup_data_from_widget (GtkWidget     *widget);
194 void   gtk_item_factory_set_translate_func (GtkItemFactory      *ifactory,
195                                             GtkTranslateFunc     func,
196                                             gpointer             data,
197                                             GtkDestroyNotify     notify);
198
199 /* Compatibility functions for deprecated GtkMenuFactory code
200  */
201 GtkItemFactory* gtk_item_factory_from_path   (const gchar       *path);
202 void    gtk_item_factory_create_menu_entries (guint              n_entries,
203                                               GtkMenuEntry      *entries);
204 void    gtk_item_factories_path_delete     (const gchar         *ifactory_path,
205                                             const gchar         *path);
206 typedef void    (*GtkItemFactoryCallback2) (GtkWidget           *widget,
207                                             gpointer             callback_data,
208                                             guint                callback_action);
209 void    gtk_item_factory_create_items_ac (GtkItemFactory        *ifactory,
210                                           guint                  n_entries,
211                                           GtkItemFactoryEntry   *entries,
212                                           gpointer               callback_data,
213                                           guint                  callback_type);
214
215
216
217 #ifdef __cplusplus
218 }
219 #endif /* __cplusplus */
220
221
222 #endif  /* __GTK_ITEM_FACTORY_H__ */