]> Pileus Git - ~andy/gtk/blob - gtk/gtkmenuitem.h
removed all occourances of #pragma } and #pragma { which were in place to
[~andy/gtk] / gtk / gtkmenuitem.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 Library 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  * Library General Public License for more details.
13  *
14  * You should have received a copy of the GNU Library 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 #ifndef __GTK_MENU_ITEM_H__
20 #define __GTK_MENU_ITEM_H__
21
22
23 #include <gdk/gdk.h>
24 #include <gtk/gtkitem.h>
25
26
27 #ifdef __cplusplus
28 extern "C" {
29 #endif /* __cplusplus */
30
31
32 #define GTK_TYPE_MENU_ITEM              (gtk_menu_item_get_type ())
33 #define GTK_MENU_ITEM(obj)              (GTK_CHECK_CAST ((obj), GTK_TYPE_MENU_ITEM, GtkMenuItem))
34 #define GTK_MENU_ITEM_CLASS(klass)      (GTK_CHECK_CLASS_CAST ((klass), GTK_TYPE_MENU_ITEM, GtkMenuItemClass))
35 #define GTK_IS_MENU_ITEM(obj)           (GTK_CHECK_TYPE ((obj), GTK_TYPE_MENU_ITEM))
36 #define GTK_IS_MENU_ITEM_CLASS(klass)   (GTK_CHECK_CLASS_TYPE ((klass), GTK_TYPE_MENU_ITEM))
37
38
39 typedef struct _GtkMenuItem       GtkMenuItem;
40 typedef struct _GtkMenuItemClass  GtkMenuItemClass;
41
42 struct _GtkMenuItem
43 {
44   GtkItem item;
45   
46   GtkWidget *submenu;
47   
48   guint   accelerator_signal;
49   guint16 toggle_size;
50   guint16 accelerator_width;
51   
52   guint show_toggle_indicator : 1;
53   guint show_submenu_indicator : 1;
54   guint submenu_placement : 1;
55   guint submenu_direction : 1;
56   guint right_justify: 1;
57   guint timer;
58 };
59
60 struct _GtkMenuItemClass
61 {
62   GtkItemClass parent_class;
63   
64   guint toggle_size;
65   /* If the following flag is true, then we should always hide
66    * the menu when the MenuItem is activated. Otherwise, the 
67    * it is up to the caller. For instance, when navigating
68    * a menu with the keyboard, <Space> doesn't hide, but
69    * <Return> does.
70    */
71   guint hide_on_activate : 1;
72   
73   void (* activate)      (GtkMenuItem *menu_item);
74   void (* activate_item) (GtkMenuItem *menu_item);
75 };
76
77
78 GtkType    gtk_menu_item_get_type         (void);
79 GtkWidget* gtk_menu_item_new              (void);
80 GtkWidget* gtk_menu_item_new_with_label   (const gchar         *label);
81 void       gtk_menu_item_set_submenu      (GtkMenuItem         *menu_item,
82                                            GtkWidget           *submenu);
83 void       gtk_menu_item_remove_submenu   (GtkMenuItem         *menu_item);
84 void       gtk_menu_item_set_placement    (GtkMenuItem         *menu_item,
85                                            GtkSubmenuPlacement  placement);
86 void       gtk_menu_item_configure        (GtkMenuItem         *menu_item,
87                                            gint                 show_toggle_indicator,
88                                            gint                 show_submenu_indicator);
89 void       gtk_menu_item_select           (GtkMenuItem         *menu_item);
90 void       gtk_menu_item_deselect         (GtkMenuItem         *menu_item);
91 void       gtk_menu_item_activate         (GtkMenuItem         *menu_item);
92 void       gtk_menu_item_right_justify    (GtkMenuItem         *menu_item);
93
94
95 #ifdef __cplusplus
96 }
97 #endif /* __cplusplus */
98
99
100 #endif /* __GTK_MENU_ITEM_H__ */