]> Pileus Git - ~andy/gtk/blob - gtk/gtkmenu.h
applied patch from Andreas Persenius <ndap@swipnet.se> that updates the
[~andy/gtk] / gtk / gtkmenu.h
1 /* GTK - The GIMP Toolkit
2  * Copyright (C) 1995-1997 Peter Mattis, Spencer Kimball and Josh MacDonald
3  *
4  * This library is free software; you can redistribute it and/or
5  * modify it under the terms of the GNU Lesser General Public
6  * License as published by the Free Software Foundation; either
7  * version 2 of the License, or (at your option) any later version.
8  *
9  * This library is distributed in the hope that it will be useful,
10  * but WITHOUT ANY WARRANTY; without even the implied warranty of
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
12  * Lesser General Public License for more details.
13  *
14  * You should have received a copy of the GNU Lesser General Public
15  * License along with this library; if not, write to the
16  * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
17  * Boston, MA 02111-1307, USA.
18  */
19
20 /*
21  * Modified by the GTK+ Team and others 1997-2000.  See the AUTHORS
22  * file for a list of people on the GTK+ Team.  See the ChangeLog
23  * files for a list of changes.  These files are distributed with
24  * GTK+ at ftp://ftp.gtk.org/pub/gtk/. 
25  */
26
27 #ifndef __GTK_MENU_H__
28 #define __GTK_MENU_H__
29
30
31 #include <gdk/gdk.h>
32 #include <gtk/gtkaccelgroup.h>
33 #include <gtk/gtkmenushell.h>
34
35
36 #ifdef __cplusplus
37 extern "C" {
38 #endif /* __cplusplus */
39
40
41 #define GTK_TYPE_MENU                   (gtk_menu_get_type ())
42 #define GTK_MENU(obj)                   (GTK_CHECK_CAST ((obj), GTK_TYPE_MENU, GtkMenu))
43 #define GTK_MENU_CLASS(klass)           (GTK_CHECK_CLASS_CAST ((klass), GTK_TYPE_MENU, GtkMenuClass))
44 #define GTK_IS_MENU(obj)                (GTK_CHECK_TYPE ((obj), GTK_TYPE_MENU))
45 #define GTK_IS_MENU_CLASS(klass)        (GTK_CHECK_CLASS_TYPE ((klass), GTK_TYPE_MENU))
46 #define GTK_MENU_GET_CLASS(obj)         (GTK_CHECK_GET_CLASS ((obj), GTK_TYPE_MENU, GtkMenuClass))
47
48
49 typedef struct _GtkMenu       GtkMenu;
50 typedef struct _GtkMenuClass  GtkMenuClass;
51
52 typedef void (*GtkMenuPositionFunc) (GtkMenu   *menu,
53                                      gint      *x,
54                                      gint      *y,
55                                      gpointer   user_data);
56 typedef void (*GtkMenuDetachFunc)   (GtkWidget *attach_widget,
57                                      GtkMenu   *menu);
58
59 struct _GtkMenu
60 {
61   GtkMenuShell menu_shell;
62   
63   GtkWidget *parent_menu_item;
64   GtkWidget *old_active_menu_item;
65   
66   GtkAccelGroup *accel_group;
67   GtkMenuPositionFunc position_func;
68   gpointer position_func_data;
69
70   /* Do _not_ touch these widgets directly. We hide the reference
71    * count from the toplevel to the menu, so it must be restored
72    * before operating on these widgets
73    */
74   GtkWidget *toplevel;
75   GtkWidget *tearoff_window;
76
77   guint needs_destruction_ref_count : 1;
78   guint torn_off : 1;
79 };
80
81 struct _GtkMenuClass
82 {
83   GtkMenuShellClass parent_class;
84 };
85
86
87 GtkType    gtk_menu_get_type              (void);
88 GtkWidget* gtk_menu_new                   (void);
89
90 /* Wrappers for the Menu Shell operations */
91 void       gtk_menu_append                (GtkMenu             *menu,
92                                            GtkWidget           *child);
93 void       gtk_menu_prepend               (GtkMenu             *menu,
94                                            GtkWidget           *child);
95 void       gtk_menu_insert                (GtkMenu             *menu,
96                                            GtkWidget           *child,
97                                            gint                 position);
98
99 /* Display the menu onscreen */
100 void       gtk_menu_popup                 (GtkMenu             *menu,
101                                            GtkWidget           *parent_menu_shell,
102                                            GtkWidget           *parent_menu_item,
103                                            GtkMenuPositionFunc  func,
104                                            gpointer             data,
105                                            guint                button,
106                                            guint32              activate_time);
107
108 /* Position the menu according to its position function. Called
109  * from gtkmenuitem.c when a menu-item changes its allocation
110  */
111 void       gtk_menu_reposition            (GtkMenu             *menu);
112
113 void       gtk_menu_popdown               (GtkMenu             *menu);
114
115 /* Keep track of the last menu item selected. (For the purposes
116  * of the option menu
117  */
118 GtkWidget* gtk_menu_get_active            (GtkMenu             *menu);
119 void       gtk_menu_set_active            (GtkMenu             *menu,
120                                            guint                index);
121
122 /* set/get the accelerator group that holds global accelerators (should
123  * be added to the corresponding toplevel with gtk_window_add_accel_group().
124  */
125 void           gtk_menu_set_accel_group   (GtkMenu             *menu,
126                                            GtkAccelGroup       *accel_group);
127 GtkAccelGroup* gtk_menu_get_accel_group   (GtkMenu             *menu);
128
129 /* get the accelerator group that is used internally by the menu for
130  * underline accelerators while the menu is popped up.
131  */
132 GtkAccelGroup* gtk_menu_get_uline_accel_group    (GtkMenu         *menu);
133 GtkAccelGroup* gtk_menu_ensure_uline_accel_group (GtkMenu         *menu);
134
135
136 /* A reference count is kept for a widget when it is attached to
137  * a particular widget. This is typically a menu item; it may also
138  * be a widget with a popup menu - for instance, the Notebook widget.
139  */
140 void       gtk_menu_attach_to_widget      (GtkMenu             *menu,
141                                            GtkWidget           *attach_widget,
142                                            GtkMenuDetachFunc    detacher);
143 void       gtk_menu_detach                (GtkMenu             *menu);
144
145 /* This should be dumped in favor of data set when the menu is popped
146  * up - that is currently in the ItemFactory code, but should be
147  * in the Menu code.
148  */
149 GtkWidget* gtk_menu_get_attach_widget     (GtkMenu             *menu);
150
151 void       gtk_menu_set_tearoff_state     (GtkMenu             *menu,
152                                            gboolean             torn_off);
153
154 /* This sets the window manager title for the window that
155  * appears when a menu is torn off
156  */
157 void       gtk_menu_set_title             (GtkMenu             *menu,
158                                            const gchar         *title);
159
160 void       gtk_menu_reorder_child         (GtkMenu             *menu,
161                                            GtkWidget           *child,
162                                            gint                position);
163
164 #ifdef __cplusplus
165 }
166 #endif /* __cplusplus */
167
168
169 #endif /* __GTK_MENU_H__ */