aboutsummaryrefslogtreecommitdiff
path: root/libdbusmenu-glib/menuitem.h
blob: 97682dbd6cb2c2211498d7f2ccf4e63bc13f5fa9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
/*
A library to communicate a menu object set accross DBus and
track updates and maintain consistency.

Copyright 2009 Canonical Ltd.

Authors:
    Ted Gould <ted@canonical.com>

This program is free software: you can redistribute it and/or modify it 
under the terms of either or both of the following licenses:

1) the GNU Lesser General Public License version 3, as published by the 
Free Software Foundation; and/or
2) the GNU Lesser General Public License version 2.1, as published by 
the Free Software Foundation.

This program is distributed in the hope that it will be useful, but 
WITHOUT ANY WARRANTY; without even the implied warranties of 
MERCHANTABILITY, SATISFACTORY QUALITY or FITNESS FOR A PARTICULAR 
PURPOSE.  See the applicable version of the GNU Lesser General Public 
License for more details.

You should have received a copy of both the GNU Lesser General Public 
License version 3 and version 2.1 along with this program.  If not, see 
<http://www.gnu.org/licenses/>
*/

#ifndef __DBUSMENU_MENUITEM_H__
#define __DBUSMENU_MENUITEM_H__

#include <glib.h>
#include <glib-object.h>

G_BEGIN_DECLS

#define DBUSMENU_TYPE_MENUITEM            (dbusmenu_menuitem_get_type ())
#define DBUSMENU_MENUITEM(obj)            (G_TYPE_CHECK_INSTANCE_CAST ((obj), DBUSMENU_TYPE_MENUITEM, DbusmenuMenuitem))
#define DBUSMENU_MENUITEM_CLASS(klass)    (G_TYPE_CHECK_CLASS_CAST ((klass), DBUSMENU_TYPE_MENUITEM, DbusmenuMenuitemClass))
#define DBUSMENU_IS_MENUITEM(obj)         (G_TYPE_CHECK_INSTANCE_TYPE ((obj), DBUSMENU_TYPE_MENUITEM))
#define DBUSMENU_IS_MENUITEM_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE ((klass), DBUSMENU_TYPE_MENUITEM))
#define DBUSMENU_MENUITEM_GET_CLASS(obj)  (G_TYPE_INSTANCE_GET_CLASS ((obj), DBUSMENU_TYPE_MENUITEM, DbusmenuMenuitemClass))

/* ***************************************** */
/* *********  GLib Object Signals  ********* */
/* ***************************************** */
/**
 * DBUSMENU_MENUITEM_SIGNAL_PROPERTY_CHANGED:
 *
 * String to attach to signal #DbusmenuServer::property-changed
 */
#define DBUSMENU_MENUITEM_SIGNAL_PROPERTY_CHANGED    "property-changed"
/**
 * DBUSMENU_MENUITEM_SIGNAL_ITEM_ACTIVATED:
 *
 * String to attach to signal #DbusmenuServer::item-activated
 */
#define DBUSMENU_MENUITEM_SIGNAL_ITEM_ACTIVATED      "item-activated"
/**
 * DBUSMENU_MENUITEM_SIGNAL_CHILD_ADDED:
 *
 * String to attach to signal #DbusmenuServer::child-added
 */
#define DBUSMENU_MENUITEM_SIGNAL_CHILD_ADDED         "child-added"
/**
 * DBUSMENU_MENUITEM_SIGNAL_CHILD_REMOVED:
 *
 * String to attach to signal #DbusmenuServer::child-removed
 */
#define DBUSMENU_MENUITEM_SIGNAL_CHILD_REMOVED       "child-removed"
/**
 * DBUSMENU_MENUITEM_SIGNAL_CHILD_MOVED:
 *
 * String to attach to signal #DbusmenuServer::child-moved
 */
#define DBUSMENU_MENUITEM_SIGNAL_CHILD_MOVED         "child-moved"
/**
 * DBUSMENU_MENUITEM_SIGNAL_REALIZED:
 *
 * String to attach to signal #DbusmenuServer::realized
 */
#define DBUSMENU_MENUITEM_SIGNAL_REALIZED            "realized"
/**
 * DBUSMENU_MENUITEM_SIGNAL_REALIZED_ID:
 *
 * ID to attach to signal #DbusmenuServer::realized
 */
#define DBUSMENU_MENUITEM_SIGNAL_REALIZED_ID         (g_signal_lookup(DBUSMENU_MENUITEM_SIGNAL_REALIZED, DBUSMENU_TYPE_MENUITEM))
/**
 * DBUSMENU_MENUITEM_SIGNAL_SHOW_TO_USER:
 *
 * String to attach to signal #DbusmenuServer::show-to-user
 */
#define DBUSMENU_MENUITEM_SIGNAL_SHOW_TO_USER        "show-to-user"
/**
 * DBUSMENU_MENUITEM_SIGNAL_ABOUT_TO_SHOW:
 *
 * String to attach to signal #DbusmenuServer::about-to-show
 */
#define DBUSMENU_MENUITEM_SIGNAL_ABOUT_TO_SHOW       "about-to-show"
/**
 * DBUSMENU_MENUITEM_SIGNAL_EVENT:
 *
 * String to attach to signal #DbusmenuServer::event
 */
#define DBUSMENU_MENUITEM_SIGNAL_EVENT               "event"

/* ***************************************** */
/* *********  Menuitem Properties  ********* */
/* ***************************************** */
/**
 * DBUSMENU_MENUITEM_PROP_TYPE:
 *
 * #DbusmenuMenuitem property used to represent what type of menuitem
 * this object represents.  Type: #G_VARIANT_TYPE_STRING.
 */
#define DBUSMENU_MENUITEM_PROP_TYPE                  "type"
/**
 * DBUSMENU_MENUITEM_PROP_VISIBLE:
 *
 * #DbusmenuMenuitem property used to represent whether the menuitem
 * should be shown or not.  Type: #G_VARIANT_TYPE_BOOLEAN.
 */
#define DBUSMENU_MENUITEM_PROP_VISIBLE               "visible"
/**
 * DBUSMENU_MENUITEM_PROP_ENABLED:
 *
 * #DbusmenuMenuitem property used to represent whether the menuitem
 * is clickable or not.  Type: #G_VARIANT_TYPE_BOOLEAN.
 */
#define DBUSMENU_MENUITEM_PROP_ENABLED               "enabled"
/**
 * DBUSMENU_MENUITEM_PROP_LABEL:
 *
 * #DbusmenuMenuitem property used for the text on the menu item.
 * Type: #G_VARIANT_TYPE_STRING
 */
#define DBUSMENU_MENUITEM_PROP_LABEL                 "label"
/**
 * DBUSMENU_MENUITEM_PROP_ICON_NAME:
 *
 * #DbusmenuMenuitem property that is the name of the icon under the
 * Freedesktop.org icon naming spec.  Type: #G_VARIANT_TYPE_STRING
 */
#define DBUSMENU_MENUITEM_PROP_ICON_NAME             "icon-name"
/**
 * DBUSMENU_MENUITEM_PROP_ICON_DATA:
 *
 * #DbusmenuMenuitem property that is the raw data of a custom icon
 * used in the application.  Type: #G_VARIANT_TYPE_VARIANT
 *
 * It is recommended that this is not set directly but instead the
 * libdbusmenu-gtk library is used with the function dbusmenu_menuitem_property_set_image()
 */
#define DBUSMENU_MENUITEM_PROP_ICON_DATA             "icon-data"
/**
 * DBUSMENU_MENUITEM_PROP_ACCESSIBLE_DESC:
 *
 * #DbusmenuMenuitem property used to provide a textual description of any
 * information that the icon may convey. The contents of this property are
 * passed through to assistive technologies such as the Orca screen reader.
 * The contents of this property will not be visible in the menu item. If
 * this property is set, Orca will use this property instead of the label 
 * property.
 * Type: #G_VARIANT_TYPE_STRING
 */
#define DBUSMENU_MENUITEM_PROP_ACCESSIBLE_DESC       "accessible-desc"
/**
 * DBUSMENU_MENUITEM_PROP_TOGGLE_TYPE:
 *
 * #DbusmenuMenuitem property that says what type of toggle entry should
 * be shown in the menu.  Should be either #DBUSMENU_MENUITEM_TOGGLE_CHECK
 * or #DBUSMENU_MENUITEM_TOGGLE_RADIO.  Type: #G_VARIANT_TYPE_STRING
 */
#define DBUSMENU_MENUITEM_PROP_TOGGLE_TYPE           "toggle-type"
/**
 * DBUSMENU_MENUITEM_PROP_TOGGLE_STATE:
 *
 * #DbusmenuMenuitem property that says what state a toggle entry should
 * be shown as the menu.  Should be either #DBUSMENU_MENUITEM_TOGGLE_STATE_UNCHECKED
 * #DBUSMENU_MENUITEM_TOGGLE_STATE_CHECKED or #DBUSMENU_MENUITEM_TOGGLE_STATUE_UNKNOWN.
 * Type: #G_VARIANT_TYPE_INT32
 */
#define DBUSMENU_MENUITEM_PROP_TOGGLE_STATE          "toggle-state"
/**
 * DBUSMENU_MENUITEM_PROP_SHORTCUT:
 *
 * #DbusmenuMenuitem property that is the entries that represent a shortcut
 * to activate the menuitem.  It is an array of arrays of strings.
 * Type: #G_VARIANT_TYPE_ARRAY
 *
 * It is recommended that this is not set directly but instead the
 * libdbusmenu-gtk library is used with the function dbusmenu_menuitem_property_set_shortcut()
 */
#define DBUSMENU_MENUITEM_PROP_SHORTCUT              "shortcut"
/**
 * DBUSMENU_MENUITEM_PROP_CHILD_DISPLAY:
 *
 * #DbusmenuMenuitem property that tells how the children of this menuitem
 * should be displayed.  Most likely this will be unset or of the value
 * #DBUSMENU_MENUITEM_CHILD_DISPLAY_SUBMENU.  Type: #G_VARIANT_TYPE_STRING
 */
#define DBUSMENU_MENUITEM_PROP_CHILD_DISPLAY         "children-display"
/**
 * DBUSMENU_MENUITEM_PROP_DISPOSITION:
 *
 * #DbusmenuMenuitem property to tell what type of information that the
 * menu item is displaying to the user.  Type: #G_VARIANT_TYPE_STRING
 */
#define DBUSMENU_MENUITEM_PROP_DISPOSITION           "disposition"

/* ***************************************** */
/* *********    Toggle Values      ********* */
/* ***************************************** */
/**
 * DBUSMENU_MENUITEM_TOGGLE_CHECK:
 *
 * Used to set #DBUSMENU_MENUITEM_PROP_TOGGLE_TYPE to be a standard
 * check mark item.
 */
#define DBUSMENU_MENUITEM_TOGGLE_CHECK               "checkmark"
/**
 * DBUSMENU_MENUITEM_TOGGLE_RADIO:
 *
 * Used to set #DBUSMENU_MENUITEM_PROP_TOGGLE_TYPE to be a standard
 * radio item.
 */
#define DBUSMENU_MENUITEM_TOGGLE_RADIO               "radio"

/* ***************************************** */
/* *********    Toggle States      ********* */
/* ***************************************** */
/**
 * DBUSMENU_MENUITEM_TOGGLE_STATE_UNCHECKED:
 *
 * Used to set #DBUSMENU_MENUITEM_PROP_TOGGLE_STATE so that the menu's
 * toggle item is empty.
 */
#define DBUSMENU_MENUITEM_TOGGLE_STATE_UNCHECKED     0
/**
 * DBUSMENU_MENUITEM_TOGGLE_STATE_CHECKED:
 *
 * Used to set #DBUSMENU_MENUITEM_PROP_TOGGLE_STATE so that the menu's
 * toggle item is filled.
 */
#define DBUSMENU_MENUITEM_TOGGLE_STATE_CHECKED       1
/**
 * DBUSMENU_MENUITEM_TOGGLE_STATE_UNKNOWN:
 *
 * Used to set #DBUSMENU_MENUITEM_PROP_TOGGLE_STATE so that the menu's
 * toggle item is undecided.
 */
#define DBUSMENU_MENUITEM_TOGGLE_STATE_UNKNOWN       -1

/* ***************************************** */
/* *********    Icon specials      ********* */
/* ***************************************** */
/**
 * DBUSMENU_MENUITEM_ICON_NAME_BLANK:
 *
 * Used to set #DBUSMENU_MENUITEM_PROP_TOGGLE_STATE so that the menu's
 * toggle item is undecided.
 */
#define DBUSMENU_MENUITEM_ICON_NAME_BLANK            "blank-icon"

/* ***************************************** */
/* *********  Shortcut Modifiers   ********* */
/* ***************************************** */
/**
 * DBUSMENU_MENUITEM_SHORTCUT_CONTROL:
 *
 * Used in #DBUSMENU_MENUITEM_PROP_SHORTCUT to represent the
 * control key.
 */
#define DBUSMENU_MENUITEM_SHORTCUT_CONTROL           "Control"
/**
 * DBUSMENU_MENUITEM_SHORTCUT_ALT:
 *
 * Used in #DBUSMENU_MENUITEM_PROP_SHORTCUT to represent the
 * alternate key.
 */
#define DBUSMENU_MENUITEM_SHORTCUT_ALT               "Alt"
/**
 * DBUSMENU_MENUITEM_SHORTCUT_SHIFT:
 *
 * Used in #DBUSMENU_MENUITEM_PROP_SHORTCUT to represent the
 * shift key.
 */
#define DBUSMENU_MENUITEM_SHORTCUT_SHIFT             "Shift"
/**
 * DBUSMENU_MENUITEM_SHORTCUT_SUPER:
 *
 * Used in #DBUSMENU_MENUITEM_PROP_SHORTCUT to represent the
 * super key.
 */
#define DBUSMENU_MENUITEM_SHORTCUT_SUPER             "Super"

/* ***************************************** */
/* *********  Child Display Types  ********* */
/* ***************************************** */
/**
 * DBUSMENU_MENUITEM_CHILD_DISPLAY_SUBMENU:
 *
 * Used in #DBUSMENU_MENUITEM_PROP_CHILD_DISPLAY to have the
 * subitems displayed as a submenu.
 */
#define DBUSMENU_MENUITEM_CHILD_DISPLAY_SUBMENU      "submenu"

/* ***************************************** */
/* ********* Menuitem Dispositions ********* */
/* ***************************************** */
/**
 * DBUSMENU_MENUITEM_DISPOSITION_NORMAL:
 *
 * Used in #DBUSMENU_MENUITEM_PROP_DISPOSITION to have a menu
 * item displayed in the normal manner.  Default value.
 */
#define DBUSMENU_MENUITEM_DISPOSITION_NORMAL         "normal"
/**
 * DBUSMENU_MENUITEM_DISPOSITION_INFORMATIVE:
 *
 * Used in #DBUSMENU_MENUITEM_PROP_DISPOSITION to have a menu
 * item displayed in a way that conveys it's giving additional
 * information to the user.
 */
#define DBUSMENU_MENUITEM_DISPOSITION_INFORMATIVE    "informative"
/**
 * DBUSMENU_MENUITEM_DISPOSITION_WARNING:
 *
 * Used in #DBUSMENU_MENUITEM_PROP_DISPOSITION to have a menu
 * item displayed in a way that conveys it's giving a warning
 * to the user.
 */
#define DBUSMENU_MENUITEM_DISPOSITION_WARNING        "warning"
/**
 * DBUSMENU_MENUITEM_DISPOSITION_ALERT:
 *
 * Used in #DBUSMENU_MENUITEM_PROP_DISPOSITION to have a menu
 * item displayed in a way that conveys it's giving an alert
 * to the user.
 */
#define DBUSMENU_MENUITEM_DISPOSITION_ALERT          "alert"

/* ***************************************** */
/* *********   Dbusmenu Events     ********* */
/* ***************************************** */
/**
 * DBUSMENU_MENUITEM_EVENT_ACTIVATED:
 *
 * String for the event identifier when a menu item is clicked
 * on by the user.
 */
#define DBUSMENU_MENUITEM_EVENT_ACTIVATED            "clicked"

/**
 * DBUSMENU_MENUITEM_EVENT_OPENED:
 *
 * String for the event identifier when a menu is opened and
 * displayed to the user.  Only valid for items that contain
 * submenus.
 */
#define DBUSMENU_MENUITEM_EVENT_OPENED               "opened"

/**
 * DBUSMENU_MENUITEM_EVENT_CLOSED:
 *
 * String for the event identifier when a menu is closed and
 * displayed to the user.  Only valid for items that contain
 * submenus.
 */
#define DBUSMENU_MENUITEM_EVENT_CLOSED               "closed"

typedef struct _DbusmenuMenuitemPrivate DbusmenuMenuitemPrivate;

/**
 * DbusmenuMenuitem:
 * @parent: Parent object
 * @priv: Private data
 * 
 * This is the #GObject based object that represents a menu
 * item.  It gets created the same on both the client and
 * the server side and libdbusmenu-glib does the work of making
 * this object model appear on both sides of DBus.  Simple
 * really, though through updates and people coming on and off
 * the bus it can lead to lots of fun complex scenarios.
 */
typedef struct _DbusmenuMenuitem      DbusmenuMenuitem;
struct _DbusmenuMenuitem
{
	GObject parent;

	/*< Private >*/
	DbusmenuMenuitemPrivate * priv;
};

/**
 * dbusmenu_menuitem_about_to_show_cb:
 * @mi: Menu item that should be shown
 * @user_data: (closure): Extra user data sent with the function
 * 
 * Callback prototype for a callback that is called when the
 * menu should be shown.
 */
typedef void (*dbusmenu_menuitem_about_to_show_cb) (DbusmenuMenuitem * mi, gpointer user_data);

/**
 * dbusmenu_menuitem_buildvariant_slot_t:
 * @mi: (in): Menu item that should be built from
 * @properties: (allow-none): A list of properties that should be the only ones in the resulting variant structure
 * 
 * This is the function that is called to represent this menu item
 * as a variant.  Should call its own children.
 *
 * Return value: (transfer full): A variant representing this item and its children
 */
typedef GVariant * (*dbusmenu_menuitem_buildvariant_slot_t) (DbusmenuMenuitem * mi, gchar ** properties);

/**
 * DbusmenuMenuitemClass:
 * @parent_class: Functions and signals from our parent
 * @property_changed: Slot for #DbusmenuMenuitem::property-changed.
 * @item_activated: Slot for #DbusmenuMenuitem::item-activated.
 * @child_added: Slot for #DbusmenuMenuitem::child-added.
 * @child_removed: Slot for #DbusmenuMenuitem::child-removed.
 * @child_moved: Slot for #DbusmenuMenuitem::child-moved.
 * @realized: Slot for #DbusmenuMenuitem::realized.
 * @about_to_show: Slot for #DbusmenuMenuitem::about-to-show.
 * @buildvariant: Virtual function that appends the strings required to represent this menu item in the menu variant.
 * @handle_event: This function is to override how events are handled by subclasses.  Look at #dbusmenu_menuitem_handle_event for lots of good information.
 * @send_about_to_show: Virtual function that notifies server that the client is about to show a menu.
 * @show_to_user: Slot for #DbusmenuMenuitem::show-to-user.
 * @event: Slot for #DbsumenuMenuitem::event.
 * @reserved1: Reserved for future use.
 * @reserved2: Reserved for future use.
 * @reserved3: Reserved for future use.
 * @reserved4: Reserved for future use.
 * @reserved5: Reserved for future use.
 *
 * Functions and signals that every menuitem should know something 
 * about.
 */
typedef struct _DbusmenuMenuitemClass DbusmenuMenuitemClass;
struct _DbusmenuMenuitemClass
{
	GObjectClass parent_class;

	/* Signals */
	void (*property_changed) (gchar * property, GVariant * value);
	void (*item_activated) (guint timestamp);
	void (*child_added) (DbusmenuMenuitem * child, guint position);
	void (*child_removed) (DbusmenuMenuitem * child);
	void (*child_moved) (DbusmenuMenuitem * child, guint newpos, guint oldpos);
	void (*realized) (void);

	/* Virtual functions */
	dbusmenu_menuitem_buildvariant_slot_t buildvariant;
	void (*handle_event) (DbusmenuMenuitem * mi, const gchar * name, GVariant * variant, guint timestamp);
	void (*send_about_to_show) (DbusmenuMenuitem * mi, dbusmenu_menuitem_about_to_show_cb cb, gpointer cb_data);

	void (*show_to_user) (DbusmenuMenuitem * mi, guint timestamp, gpointer cb_data);
	gboolean (*about_to_show) (void);

	void (*event) (const gchar * name, GVariant * value, guint timestamp);

	/*< Private >*/
	void (*reserved1) (void);
	void (*reserved2) (void);
	void (*reserved3) (void);
	void (*reserved4) (void);
	void (*reserved5) (void);
};

GType dbusmenu_menuitem_get_type (void);

DbusmenuMenuitem * dbusmenu_menuitem_new (void) G_GNUC_WARN_UNUSED_RESULT;
DbusmenuMenuitem * dbusmenu_menuitem_new_with_id (gint id) G_GNUC_WARN_UNUSED_RESULT;
gint dbusmenu_menuitem_get_id (DbusmenuMenuitem * mi);

GList * dbusmenu_menuitem_get_children (DbusmenuMenuitem * mi);
GList * dbusmenu_menuitem_take_children (DbusmenuMenuitem * mi) G_GNUC_WARN_UNUSED_RESULT;
guint dbusmenu_menuitem_get_position (DbusmenuMenuitem * mi, DbusmenuMenuitem * parent);
guint dbusmenu_menuitem_get_position_realized (DbusmenuMenuitem * mi, DbusmenuMenuitem * parent);

gboolean dbusmenu_menuitem_child_append (DbusmenuMenuitem * mi, DbusmenuMenuitem * child);
gboolean dbusmenu_menuitem_child_prepend (DbusmenuMenuitem * mi, DbusmenuMenuitem * child);
gboolean dbusmenu_menuitem_child_delete (DbusmenuMenuitem * mi, DbusmenuMenuitem * child);
gboolean dbusmenu_menuitem_child_add_position (DbusmenuMenuitem * mi, DbusmenuMenuitem * child, guint position);
gboolean dbusmenu_menuitem_child_reorder (DbusmenuMenuitem * mi, DbusmenuMenuitem * child, guint position);
DbusmenuMenuitem * dbusmenu_menuitem_child_find (DbusmenuMenuitem * mi, gint id);
DbusmenuMenuitem * dbusmenu_menuitem_find_id (DbusmenuMenuitem * mi, gint id);

gboolean dbusmenu_menuitem_set_parent (DbusmenuMenuitem * mi, DbusmenuMenuitem * parent);
gboolean dbusmenu_menuitem_unparent (DbusmenuMenuitem *mi);
DbusmenuMenuitem * dbusmenu_menuitem_get_parent (DbusmenuMenuitem * mi);

gboolean dbusmenu_menuitem_property_set (DbusmenuMenuitem * mi, const gchar * property, const gchar * value);
gboolean dbusmenu_menuitem_property_set_variant (DbusmenuMenuitem * mi, const gchar * property, GVariant * value);
gboolean dbusmenu_menuitem_property_set_bool (DbusmenuMenuitem * mi, const gchar * property, const gboolean value);
gboolean dbusmenu_menuitem_property_set_int (DbusmenuMenuitem * mi, const gchar * property, const gint value);
gboolean dbusmenu_menuitem_property_set_byte_array (DbusmenuMenuitem * mi, const gchar * property, const guchar * value, gsize nelements);
const gchar * dbusmenu_menuitem_property_get (const DbusmenuMenuitem * mi, const gchar * property);
GVariant * dbusmenu_menuitem_property_get_variant (const DbusmenuMenuitem * mi, const gchar * property);
gboolean dbusmenu_menuitem_property_get_bool (const DbusmenuMenuitem * mi, const gchar * property);
gint dbusmenu_menuitem_property_get_int (const DbusmenuMenuitem * mi, const gchar * property);
const guchar * dbusmenu_menuitem_property_get_byte_array (const DbusmenuMenuitem * mi, const gchar * property, gsize * nelements);
gboolean dbusmenu_menuitem_property_exist (const DbusmenuMenuitem * mi, const gchar * property);
GList * dbusmenu_menuitem_properties_list (DbusmenuMenuitem * mi) G_GNUC_WARN_UNUSED_RESULT;
GHashTable * dbusmenu_menuitem_properties_copy (DbusmenuMenuitem * mi);
void dbusmenu_menuitem_property_remove (DbusmenuMenuitem * mi, const gchar * property);

void dbusmenu_menuitem_set_root (DbusmenuMenuitem * mi, gboolean root);
gboolean dbusmenu_menuitem_get_root (DbusmenuMenuitem * mi);

void dbusmenu_menuitem_foreach (DbusmenuMenuitem * mi, void (*func) (DbusmenuMenuitem * mi, gpointer data), gpointer data);
void dbusmenu_menuitem_handle_event (DbusmenuMenuitem * mi, const gchar * name, GVariant * variant, guint timestamp);
void dbusmenu_menuitem_send_about_to_show (DbusmenuMenuitem * mi, void (*cb) (DbusmenuMenuitem * mi, gpointer user_data), gpointer cb_data);

void dbusmenu_menuitem_show_to_user (DbusmenuMenuitem * mi, guint timestamp);

/**
 * SECTION:menuitem
 * @short_description: A lowlevel represenation of a menuitem
 * @stability: Unstable
 * @include: libdbusmenu-glib/menuitem.h
 * 
 * A #DbusmenuMenuitem is the lowest level of represenation of a
 * single item in a menu.  It gets created on the server side
 * and copied over to the client side where it gets rendered.  As
 * the server starts to change it, and grow it, and do all kinds
 * of fun stuff that information is transfered over DBus and the
 * client updates its understanding of the object model.
 * 
 * Most people using either the client or the server should be
 * able to deal mostly with #DbusmenuMenuitem objects.  These
 * are simple, but then they can be attached to more complex
 * objects and handled appropriately.
 */

G_END_DECLS

#endif