gmenu.h 8.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182
  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, see <http://www.gnu.org/licenses/>.
  16. *
  17. * Author: Ryan Lortie <desrt@desrt.ca>
  18. */
  19. #ifndef __G_MENU_H__
  20. #define __G_MENU_H__
  21. #include <gio/gmenumodel.h>
  22. G_BEGIN_DECLS
  23. #define G_TYPE_MENU (g_menu_get_type ())
  24. #define G_MENU(inst) (G_TYPE_CHECK_INSTANCE_CAST ((inst), \
  25. G_TYPE_MENU, GMenu))
  26. #define G_IS_MENU(inst) (G_TYPE_CHECK_INSTANCE_TYPE ((inst), \
  27. G_TYPE_MENU))
  28. #define G_TYPE_MENU_ITEM (g_menu_item_get_type ())
  29. #define G_MENU_ITEM(inst) (G_TYPE_CHECK_INSTANCE_CAST ((inst), \
  30. G_TYPE_MENU_ITEM, GMenuItem))
  31. #define G_IS_MENU_ITEM(inst) (G_TYPE_CHECK_INSTANCE_TYPE ((inst), \
  32. G_TYPE_MENU_ITEM))
  33. typedef struct _GMenuItem GMenuItem;
  34. typedef struct _GMenu GMenu;
  35. GLIB_AVAILABLE_IN_2_32
  36. GType g_menu_get_type (void) G_GNUC_CONST;
  37. GLIB_AVAILABLE_IN_2_32
  38. GMenu * g_menu_new (void);
  39. GLIB_AVAILABLE_IN_2_32
  40. void g_menu_freeze (GMenu *menu);
  41. GLIB_AVAILABLE_IN_2_32
  42. void g_menu_insert_item (GMenu *menu,
  43. gint position,
  44. GMenuItem *item);
  45. GLIB_AVAILABLE_IN_2_32
  46. void g_menu_prepend_item (GMenu *menu,
  47. GMenuItem *item);
  48. GLIB_AVAILABLE_IN_2_32
  49. void g_menu_append_item (GMenu *menu,
  50. GMenuItem *item);
  51. GLIB_AVAILABLE_IN_2_32
  52. void g_menu_remove (GMenu *menu,
  53. gint position);
  54. GLIB_AVAILABLE_IN_2_38
  55. void g_menu_remove_all (GMenu *menu);
  56. GLIB_AVAILABLE_IN_2_32
  57. void g_menu_insert (GMenu *menu,
  58. gint position,
  59. const gchar *label,
  60. const gchar *detailed_action);
  61. GLIB_AVAILABLE_IN_2_32
  62. void g_menu_prepend (GMenu *menu,
  63. const gchar *label,
  64. const gchar *detailed_action);
  65. GLIB_AVAILABLE_IN_2_32
  66. void g_menu_append (GMenu *menu,
  67. const gchar *label,
  68. const gchar *detailed_action);
  69. GLIB_AVAILABLE_IN_2_32
  70. void g_menu_insert_section (GMenu *menu,
  71. gint position,
  72. const gchar *label,
  73. GMenuModel *section);
  74. GLIB_AVAILABLE_IN_2_32
  75. void g_menu_prepend_section (GMenu *menu,
  76. const gchar *label,
  77. GMenuModel *section);
  78. GLIB_AVAILABLE_IN_2_32
  79. void g_menu_append_section (GMenu *menu,
  80. const gchar *label,
  81. GMenuModel *section);
  82. GLIB_AVAILABLE_IN_2_32
  83. void g_menu_insert_submenu (GMenu *menu,
  84. gint position,
  85. const gchar *label,
  86. GMenuModel *submenu);
  87. GLIB_AVAILABLE_IN_2_32
  88. void g_menu_prepend_submenu (GMenu *menu,
  89. const gchar *label,
  90. GMenuModel *submenu);
  91. GLIB_AVAILABLE_IN_2_32
  92. void g_menu_append_submenu (GMenu *menu,
  93. const gchar *label,
  94. GMenuModel *submenu);
  95. GLIB_AVAILABLE_IN_2_32
  96. GType g_menu_item_get_type (void) G_GNUC_CONST;
  97. GLIB_AVAILABLE_IN_2_32
  98. GMenuItem * g_menu_item_new (const gchar *label,
  99. const gchar *detailed_action);
  100. GLIB_AVAILABLE_IN_2_34
  101. GMenuItem * g_menu_item_new_from_model (GMenuModel *model,
  102. gint item_index);
  103. GLIB_AVAILABLE_IN_2_32
  104. GMenuItem * g_menu_item_new_submenu (const gchar *label,
  105. GMenuModel *submenu);
  106. GLIB_AVAILABLE_IN_2_32
  107. GMenuItem * g_menu_item_new_section (const gchar *label,
  108. GMenuModel *section);
  109. GLIB_AVAILABLE_IN_2_34
  110. GVariant * g_menu_item_get_attribute_value (GMenuItem *menu_item,
  111. const gchar *attribute,
  112. const GVariantType *expected_type);
  113. GLIB_AVAILABLE_IN_2_34
  114. gboolean g_menu_item_get_attribute (GMenuItem *menu_item,
  115. const gchar *attribute,
  116. const gchar *format_string,
  117. ...);
  118. GLIB_AVAILABLE_IN_2_34
  119. GMenuModel *g_menu_item_get_link (GMenuItem *menu_item,
  120. const gchar *link);
  121. GLIB_AVAILABLE_IN_2_32
  122. void g_menu_item_set_attribute_value (GMenuItem *menu_item,
  123. const gchar *attribute,
  124. GVariant *value);
  125. GLIB_AVAILABLE_IN_2_32
  126. void g_menu_item_set_attribute (GMenuItem *menu_item,
  127. const gchar *attribute,
  128. const gchar *format_string,
  129. ...);
  130. GLIB_AVAILABLE_IN_2_32
  131. void g_menu_item_set_link (GMenuItem *menu_item,
  132. const gchar *link,
  133. GMenuModel *model);
  134. GLIB_AVAILABLE_IN_2_32
  135. void g_menu_item_set_label (GMenuItem *menu_item,
  136. const gchar *label);
  137. GLIB_AVAILABLE_IN_2_32
  138. void g_menu_item_set_submenu (GMenuItem *menu_item,
  139. GMenuModel *submenu);
  140. GLIB_AVAILABLE_IN_2_32
  141. void g_menu_item_set_section (GMenuItem *menu_item,
  142. GMenuModel *section);
  143. GLIB_AVAILABLE_IN_2_32
  144. void g_menu_item_set_action_and_target_value (GMenuItem *menu_item,
  145. const gchar *action,
  146. GVariant *target_value);
  147. GLIB_AVAILABLE_IN_2_32
  148. void g_menu_item_set_action_and_target (GMenuItem *menu_item,
  149. const gchar *action,
  150. const gchar *format_string,
  151. ...);
  152. GLIB_AVAILABLE_IN_2_32
  153. void g_menu_item_set_detailed_action (GMenuItem *menu_item,
  154. const gchar *detailed_action);
  155. GLIB_AVAILABLE_IN_2_38
  156. void g_menu_item_set_icon (GMenuItem *menu_item,
  157. GIcon *icon);
  158. G_END_DECLS
  159. #endif /* __G_MENU_H__ */