b7eafd1c15569d7747795a8f92cdb8d7bf3fc5d8
[platform/upstream/glib.git] / gio / gmenu.h
1 /*
2  * Copyright © 2011 Canonical Ltd.
3  *
4  * This library is free software; you can redistribute it and/or modify
5  * it under the terms of the GNU Lesser General Public License as
6  * published by the Free Software Foundation; either version 2 of the
7  * licence, or (at your option) any later version.
8  *
9  * This library is distributed in the hope that it will be useful, but
10  * 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 Free Software
16  * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307,
17  * USA.
18  *
19  * Author: Ryan Lortie <desrt@desrt.ca>
20  */
21
22 #ifndef __G_MENU_H__
23 #define __G_MENU_H__
24
25 #include <gio/gmenumodel.h>
26
27 G_BEGIN_DECLS
28
29 #define G_TYPE_MENU          (g_menu_get_type ())
30 #define G_MENU(inst)         (G_TYPE_CHECK_INSTANCE_CAST ((inst), \
31                               G_TYPE_MENU, GMenu))
32 #define G_IS_MENU(inst)      (G_TYPE_CHECK_INSTANCE_TYPE ((inst), \
33                               G_TYPE_MENU))
34
35 #define G_TYPE_MENU_ITEM     (g_menu_item_get_type ())
36 #define G_MENU_ITEM(inst)    (G_TYPE_CHECK_INSTANCE_CAST ((inst), \
37                               G_TYPE_MENU_ITEM, GMenuItem))
38 #define G_IS_MENU_ITEM(inst) (G_TYPE_CHECK_INSTANCE_TYPE ((inst), \
39                               G_TYPE_MENU_ITEM))
40
41 typedef struct _GMenuItem GMenuItem;
42 typedef struct _GMenu     GMenu;
43
44 GLIB_AVAILABLE_IN_2_32
45 GType       g_menu_get_type                         (void) G_GNUC_CONST;
46 GLIB_AVAILABLE_IN_2_32
47 GMenu *     g_menu_new                              (void);
48
49 void        g_menu_freeze                           (GMenu       *menu);
50
51 void        g_menu_insert_item                      (GMenu       *menu,
52                                                      gint         position,
53                                                      GMenuItem   *item);
54 void        g_menu_prepend_item                     (GMenu       *menu,
55                                                      GMenuItem   *item);
56 void        g_menu_append_item                      (GMenu       *menu,
57                                                      GMenuItem   *item);
58 void        g_menu_remove                           (GMenu       *menu,
59                                                      gint         position);
60
61 void        g_menu_insert                           (GMenu       *menu,
62                                                      gint         position,
63                                                      const gchar *label,
64                                                      const gchar *detailed_action);
65 void        g_menu_prepend                          (GMenu       *menu,
66                                                      const gchar *label,
67                                                      const gchar *detailed_action);
68 void        g_menu_append                           (GMenu       *menu,
69                                                      const gchar *label,
70                                                      const gchar *detailed_action);
71
72 void        g_menu_insert_section                   (GMenu       *menu,
73                                                      gint         position,
74                                                      const gchar *label,
75                                                      GMenuModel  *section);
76 void        g_menu_prepend_section                  (GMenu       *menu,
77                                                      const gchar *label,
78                                                      GMenuModel  *section);
79 void        g_menu_append_section                   (GMenu       *menu,
80                                                      const gchar *label,
81                                                      GMenuModel  *section);
82
83 void        g_menu_insert_submenu                   (GMenu       *menu,
84                                                      gint        position,
85                                                      const gchar *label,
86                                                      GMenuModel  *submenu);
87 void        g_menu_prepend_submenu                  (GMenu       *menu,
88                                                      const gchar *label,
89                                                      GMenuModel  *submenu);
90 void        g_menu_append_submenu                   (GMenu       *menu,
91                                                      const gchar *label,
92                                                      GMenuModel  *submenu);
93
94
95 GType       g_menu_item_get_type                    (void) G_GNUC_CONST;
96 GMenuItem * g_menu_item_new                         (const gchar *label,
97                                                      const gchar *detailed_action);
98
99 GMenuItem * g_menu_item_new_submenu                 (const gchar *label,
100                                                      GMenuModel  *submenu);
101
102 GMenuItem * g_menu_item_new_section                 (const gchar *label,
103                                                      GMenuModel  *section);
104
105 void        g_menu_item_set_attribute_value         (GMenuItem   *menu_item,
106                                                      const gchar *attribute,
107                                                      GVariant    *value);
108 void        g_menu_item_set_attribute               (GMenuItem   *menu_item,
109                                                      const gchar *attribute,
110                                                      const gchar *format_string,
111                                                      ...);
112 void        g_menu_item_set_link                    (GMenuItem   *menu_item,
113                                                      const gchar *link,
114                                                      GMenuModel  *model);
115 void        g_menu_item_set_label                   (GMenuItem   *menu_item,
116                                                      const gchar *label);
117 void        g_menu_item_set_submenu                 (GMenuItem   *menu_item,
118                                                      GMenuModel  *submenu);
119 void        g_menu_item_set_section                 (GMenuItem   *menu_item,
120                                                      GMenuModel  *section);
121 void        g_menu_item_set_action_and_target_value (GMenuItem   *menu_item,
122                                                      const gchar *action,
123                                                      GVariant    *target_value);
124 void        g_menu_item_set_action_and_target       (GMenuItem   *menu_item,
125                                                      const gchar *action,
126                                                      const gchar *format_string,
127                                                      ...);
128 void        g_menu_item_set_detailed_action         (GMenuItem   *menu_item,
129                                                      const gchar *detailed_action);
130
131 G_END_DECLS
132
133 #endif /* __G_MENU_H__ */