Github User Fetcher 1.0.0
C Application with Server and GUI
Loading...
Searching...
No Matches
gmenumodel.h
Go to the documentation of this file.
1/*
2 * Copyright © 2011 Canonical Ltd.
3 *
4 * SPDX-License-Identifier: LGPL-2.1-or-later
5 *
6 * This library is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU Lesser General Public
8 * License as published by the Free Software Foundation; either
9 * version 2.1 of the License, or (at your option) any later version.
10 *
11 * This library is distributed in the hope that it will be useful, but
12 * WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 * Lesser General Public License for more details.
15 *
16 * You should have received a copy of the GNU Lesser General Public
17 * License along with this library; if not, see <http://www.gnu.org/licenses/>.
18 *
19 * Author: Ryan Lortie <desrt@desrt.ca>
20 */
21
22#ifndef __G_MENU_MODEL_H__
23#define __G_MENU_MODEL_H__
24
25#include <glib-object.h>
26
27#include <gio/giotypes.h>
28
30
31/**
32 * G_MENU_ATTRIBUTE_ACTION:
33 *
34 * The menu item attribute which holds the action name of the item. Action
35 * names are namespaced with an identifier for the action group in which the
36 * action resides. For example, "win." for window-specific actions and "app."
37 * for application-wide actions.
38 *
39 * See also g_menu_model_get_item_attribute() and g_menu_item_set_attribute().
40 *
41 * Since: 2.32
42 **/
43#define G_MENU_ATTRIBUTE_ACTION "action"
44
45/**
46 * G_MENU_ATTRIBUTE_ACTION_NAMESPACE:
47 *
48 * The menu item attribute that holds the namespace for all action names in
49 * menus that are linked from this item.
50 *
51 * Since: 2.36
52 **/
53#define G_MENU_ATTRIBUTE_ACTION_NAMESPACE "action-namespace"
54
55/**
56 * G_MENU_ATTRIBUTE_TARGET:
57 *
58 * The menu item attribute which holds the target with which the item's action
59 * will be activated.
60 *
61 * See also g_menu_item_set_action_and_target()
62 *
63 * Since: 2.32
64 **/
65#define G_MENU_ATTRIBUTE_TARGET "target"
66
67/**
68 * G_MENU_ATTRIBUTE_LABEL:
69 *
70 * The menu item attribute which holds the label of the item.
71 *
72 * Since: 2.32
73 **/
74#define G_MENU_ATTRIBUTE_LABEL "label"
75
76/**
77 * G_MENU_ATTRIBUTE_ICON:
78 *
79 * The menu item attribute which holds the icon of the item.
80 *
81 * The icon is stored in the format returned by g_icon_serialize().
82 *
83 * This attribute is intended only to represent 'noun' icons such as
84 * favicons for a webpage, or application icons. It should not be used
85 * for 'verbs' (ie: stock icons).
86 *
87 * Since: 2.38
88 **/
89#define G_MENU_ATTRIBUTE_ICON "icon"
90
91/**
92 * G_MENU_LINK_SUBMENU:
93 *
94 * The name of the link that associates a menu item with a submenu.
95 *
96 * See also g_menu_item_set_link().
97 *
98 * Since: 2.32
99 **/
100#define G_MENU_LINK_SUBMENU "submenu"
101
102/**
103 * G_MENU_LINK_SECTION:
104 *
105 * The name of the link that associates a menu item with a section. The linked
106 * menu will usually be shown in place of the menu item, using the item's label
107 * as a header.
108 *
109 * See also g_menu_item_set_link().
110 *
111 * Since: 2.32
112 **/
113#define G_MENU_LINK_SECTION "section"
114
115#define G_TYPE_MENU_MODEL (g_menu_model_get_type ())
116#define G_MENU_MODEL(inst) (G_TYPE_CHECK_INSTANCE_CAST ((inst), \
117 G_TYPE_MENU_MODEL, GMenuModel))
118#define G_MENU_MODEL_CLASS(class) (G_TYPE_CHECK_CLASS_CAST ((class), \
119 G_TYPE_MENU_MODEL, GMenuModelClass))
120#define G_IS_MENU_MODEL(inst) (G_TYPE_CHECK_INSTANCE_TYPE ((inst), \
121 G_TYPE_MENU_MODEL))
122#define G_IS_MENU_MODEL_CLASS(class) (G_TYPE_CHECK_CLASS_TYPE ((class), \
123 G_TYPE_MENU_MODEL))
124#define G_MENU_MODEL_GET_CLASS(inst) (G_TYPE_INSTANCE_GET_CLASS ((inst), \
125 G_TYPE_MENU_MODEL, GMenuModelClass))
126
127typedef struct _GMenuModelPrivate GMenuModelPrivate;
129
130typedef struct _GMenuAttributeIterPrivate GMenuAttributeIterPrivate;
133
134typedef struct _GMenuLinkIterPrivate GMenuLinkIterPrivate;
137
143
144/**
145 * GMenuModelClass::get_item_attributes:
146 * @model: the #GMenuModel to query
147 * @item_index: The #GMenuItem to query
148 * @attributes: (out) (element-type utf8 GLib.Variant): Attributes on the item
149 *
150 * Gets all the attributes associated with the item in the menu model.
151 */
152/**
153 * GMenuModelClass::get_item_links:
154 * @model: the #GMenuModel to query
155 * @item_index: The #GMenuItem to query
156 * @links: (out) (element-type utf8 Gio.MenuModel): Links from the item
157 *
158 * Gets all the links associated with the item in the menu model.
159 */
161{
163
167 gint item_index,
168 GHashTable **attributes);
169 GMenuAttributeIter * (*iterate_item_attributes) (GMenuModel *model,
170 gint item_index);
171 GVariant * (*get_item_attribute_value) (GMenuModel *model,
172 gint item_index,
173 const gchar *attribute,
174 const GVariantType *expected_type);
175 void (*get_item_links) (GMenuModel *model,
176 gint item_index,
177 GHashTable **links);
178 GMenuLinkIter * (*iterate_item_links) (GMenuModel *model,
179 gint item_index);
180 GMenuModel * (*get_item_link) (GMenuModel *model,
181 gint item_index,
182 const gchar *link);
183};
184
187
192
195 gint item_index);
198 gint item_index,
199 const gchar *attribute,
200 const GVariantType *expected_type);
203 gint item_index,
204 const gchar *attribute,
205 const gchar *format_string,
206 ...);
209 gint item_index);
212 gint item_index,
213 const gchar *link);
214
217 gint position,
218 gint removed,
219 gint added);
220
221
222#define G_TYPE_MENU_ATTRIBUTE_ITER (g_menu_attribute_iter_get_type ())
223#define G_MENU_ATTRIBUTE_ITER(inst) (G_TYPE_CHECK_INSTANCE_CAST ((inst), \
224 G_TYPE_MENU_ATTRIBUTE_ITER, GMenuAttributeIter))
225#define G_MENU_ATTRIBUTE_ITER_CLASS(class) (G_TYPE_CHECK_CLASS_CAST ((class), \
226 G_TYPE_MENU_ATTRIBUTE_ITER, GMenuAttributeIterClass))
227#define G_IS_MENU_ATTRIBUTE_ITER(inst) (G_TYPE_CHECK_INSTANCE_TYPE ((inst), \
228 G_TYPE_MENU_ATTRIBUTE_ITER))
229#define G_IS_MENU_ATTRIBUTE_ITER_CLASS(class) (G_TYPE_CHECK_CLASS_TYPE ((class), \
230 G_TYPE_MENU_ATTRIBUTE_ITER))
231#define G_MENU_ATTRIBUTE_ITER_GET_CLASS(inst) (G_TYPE_INSTANCE_GET_CLASS ((inst), \
232 G_TYPE_MENU_ATTRIBUTE_ITER, GMenuAttributeIterClass))
233
239
248
251
254 const gchar **out_name,
255 GVariant **value);
262
263
264#define G_TYPE_MENU_LINK_ITER (g_menu_link_iter_get_type ())
265#define G_MENU_LINK_ITER(inst) (G_TYPE_CHECK_INSTANCE_CAST ((inst), \
266 G_TYPE_MENU_LINK_ITER, GMenuLinkIter))
267#define G_MENU_LINK_ITER_CLASS(class) (G_TYPE_CHECK_CLASS_CAST ((class), \
268 G_TYPE_MENU_LINK_ITER, GMenuLinkIterClass))
269#define G_IS_MENU_LINK_ITER(inst) (G_TYPE_CHECK_INSTANCE_TYPE ((inst), \
270 G_TYPE_MENU_LINK_ITER))
271#define G_IS_MENU_LINK_ITER_CLASS(class) (G_TYPE_CHECK_CLASS_TYPE ((class), \
272 G_TYPE_MENU_LINK_ITER))
273#define G_MENU_LINK_ITER_GET_CLASS(inst) (G_TYPE_INSTANCE_GET_CLASS ((inst), \
274 G_TYPE_MENU_LINK_ITER, GMenuLinkIterClass))
275
281
283{
285
287 const gchar **out_link,
288 GMenuModel **value);
289};
290
293
296 const gchar **out_link,
297 GMenuModel **value);
304
306
307#endif /* __G_MENU_MODEL_H__ */
typedefG_BEGIN_DECLS struct _GHashTable GHashTable
Definition ghash.h:40
#define GIO_AVAILABLE_IN_2_32
#define G_END_DECLS
Definition gmacros.h:910
#define G_BEGIN_DECLS
Definition gmacros.h:909
#define G_GNUC_CONST
Definition gmacros.h:637
GIO_AVAILABLE_IN_2_32 gboolean g_menu_model_get_item_attribute(GMenuModel *model, gint item_index, const gchar *attribute, const gchar *format_string,...)
GIO_AVAILABLE_IN_2_32 const gchar * g_menu_link_iter_get_name(GMenuLinkIter *iter)
GIO_AVAILABLE_IN_2_32 gboolean g_menu_link_iter_next(GMenuLinkIter *iter)
GIO_AVAILABLE_IN_2_32 gboolean g_menu_attribute_iter_next(GMenuAttributeIter *iter)
GIO_AVAILABLE_IN_2_32 GMenuModel * g_menu_model_get_item_link(GMenuModel *model, gint item_index, const gchar *link)
GIO_AVAILABLE_IN_2_32 gboolean g_menu_model_is_mutable(GMenuModel *model)
GIO_AVAILABLE_IN_2_32 GType g_menu_model_get_type(void) G_GNUC_CONST
GIO_AVAILABLE_IN_2_32 GMenuLinkIter * g_menu_model_iterate_item_links(GMenuModel *model, gint item_index)
GIO_AVAILABLE_IN_2_32 const gchar * g_menu_attribute_iter_get_name(GMenuAttributeIter *iter)
GIO_AVAILABLE_IN_2_32 GMenuAttributeIter * g_menu_model_iterate_item_attributes(GMenuModel *model, gint item_index)
GIO_AVAILABLE_IN_2_32 gint g_menu_model_get_n_items(GMenuModel *model)
GIO_AVAILABLE_IN_2_32 GVariant * g_menu_attribute_iter_get_value(GMenuAttributeIter *iter)
struct _GMenuLinkIterPrivate GMenuLinkIterPrivate
Definition gmenumodel.h:134
struct _GMenuModelPrivate GMenuModelPrivate
Definition gmenumodel.h:127
GIO_AVAILABLE_IN_2_32 GVariant * g_menu_model_get_item_attribute_value(GMenuModel *model, gint item_index, const gchar *attribute, const GVariantType *expected_type)
GIO_AVAILABLE_IN_2_32 GType g_menu_link_iter_get_type(void) G_GNUC_CONST
GIO_AVAILABLE_IN_2_32 void g_menu_model_items_changed(GMenuModel *model, gint position, gint removed, gint added)
struct _GMenuAttributeIterPrivate GMenuAttributeIterPrivate
Definition gmenumodel.h:130
GIO_AVAILABLE_IN_2_32 GType g_menu_attribute_iter_get_type(void) G_GNUC_CONST
GIO_AVAILABLE_IN_2_32 gboolean g_menu_attribute_iter_get_next(GMenuAttributeIter *iter, const gchar **out_name, GVariant **value)
GIO_AVAILABLE_IN_2_32 GMenuModel * g_menu_link_iter_get_value(GMenuLinkIter *iter)
GIO_AVAILABLE_IN_2_32 gboolean g_menu_link_iter_get_next(GMenuLinkIter *iter, const gchar **out_link, GMenuModel **value)
gsize GType
Definition gtype.h:427
gint gboolean
Definition gtypes.h:56
G_BEGIN_DECLS typedef char gchar
Definition gtypes.h:52
int gint
Definition gtypes.h:55
typedefG_BEGIN_DECLS struct _GVariant GVariant
Definition gvariant.h:36
typedefG_BEGIN_DECLS struct _GVariantType GVariantType
int value
Definition lsqlite3.c:2155
gboolean(* get_next)(GMenuAttributeIter *iter, const gchar **out_name, GVariant **value)
Definition gmenumodel.h:244
GObjectClass parent_class
Definition gmenumodel.h:242
GMenuAttributeIterPrivate * priv
Definition gmenumodel.h:237
gboolean(* get_next)(GMenuLinkIter *iter, const gchar **out_link, GMenuModel **value)
Definition gmenumodel.h:286
GObjectClass parent_class
Definition gmenumodel.h:284
GMenuLinkIterPrivate * priv
Definition gmenumodel.h:279
GObject parent_instance
Definition gmenumodel.h:278
void(* get_item_attributes)(GMenuModel *model, gint item_index, GHashTable **attributes)
Definition gmenumodel.h:166
gint(* get_n_items)(GMenuModel *model)
Definition gmenumodel.h:165
GObjectClass parent_class
Definition gmenumodel.h:162
gboolean(* is_mutable)(GMenuModel *model)
Definition gmenumodel.h:164
void(* get_item_links)(GMenuModel *model, gint item_index, GHashTable **links)
Definition gmenumodel.h:175
GMenuModelPrivate * priv
Definition gmenumodel.h:141
GObject parent_instance
Definition gmenumodel.h:140