2011-11-27 04:46:51 +01:00
|
|
|
/*
|
|
|
|
* Copyright © 2011 Canonical Ltd.
|
|
|
|
*
|
|
|
|
* This library is free software; you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU Lesser General Public License as
|
|
|
|
* published by the Free Software Foundation; either version 2 of the
|
|
|
|
* licence, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This library is distributed in the hope that it will be useful, but
|
|
|
|
* WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
* Lesser General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Lesser General Public
|
2014-01-23 12:58:29 +01:00
|
|
|
* License along with this library; if not, see <http://www.gnu.org/licenses/>.
|
2011-11-27 04:46:51 +01:00
|
|
|
*
|
|
|
|
* Author: Ryan Lortie <desrt@desrt.ca>
|
|
|
|
*/
|
|
|
|
|
2012-12-06 19:29:31 +01:00
|
|
|
#include "config.h"
|
|
|
|
|
2011-11-27 04:46:51 +01:00
|
|
|
#include "gmenumodel.h"
|
|
|
|
|
2015-09-12 06:00:40 +02:00
|
|
|
#include "glibintl.h"
|
|
|
|
|
2011-11-27 04:46:51 +01:00
|
|
|
/**
|
|
|
|
* SECTION:gmenumodel
|
|
|
|
* @title: GMenuModel
|
|
|
|
* @short_description: An abstract class representing the contents of a menu
|
2014-01-08 04:55:43 +01:00
|
|
|
* @include: gio/gio.h
|
2011-11-27 04:46:51 +01:00
|
|
|
* @see_also: #GActionGroup
|
|
|
|
*
|
|
|
|
* #GMenuModel represents the contents of a menu -- an ordered list of
|
|
|
|
* menu items. The items are associated with actions, which can be
|
|
|
|
* activated through them. Items can be grouped in sections, and may
|
|
|
|
* have submenus associated with them. Both items and sections usually
|
|
|
|
* have some representation data, such as labels or icons. The type of
|
|
|
|
* the associated action (ie whether it is stateful, and what kind of
|
|
|
|
* state it has) can influence the representation of the item.
|
|
|
|
*
|
|
|
|
* The conceptual model of menus in #GMenuModel is hierarchical:
|
|
|
|
* sections and submenus are again represented by #GMenuModels.
|
|
|
|
* Menus themselves do not define their own roles. Rather, the role
|
|
|
|
* of a particular #GMenuModel is defined by the item that references
|
|
|
|
* it (or, in the case of the 'root' menu, is defined by the context
|
|
|
|
* in which it is used).
|
|
|
|
*
|
2014-02-08 18:26:56 +01:00
|
|
|
* As an example, consider the visible portions of this menu:
|
2011-11-27 04:46:51 +01:00
|
|
|
*
|
2014-02-06 04:02:24 +01:00
|
|
|
* ## An example menu # {#menu-example}
|
|
|
|
*
|
|
|
|
* ![](menu-example.png)
|
2011-11-27 04:46:51 +01:00
|
|
|
*
|
|
|
|
* There are 8 "menus" visible in the screenshot: one menubar, two
|
|
|
|
* submenus and 5 sections:
|
2014-02-01 05:00:58 +01:00
|
|
|
*
|
|
|
|
* - the toplevel menubar (containing 4 items)
|
|
|
|
* - the View submenu (containing 3 sections)
|
|
|
|
* - the first section of the View submenu (containing 2 items)
|
|
|
|
* - the second section of the View submenu (containing 1 item)
|
|
|
|
* - the final section of the View submenu (containing 1 item)
|
|
|
|
* - the Highlight Mode submenu (containing 2 sections)
|
|
|
|
* - the Sources section (containing 2 items)
|
|
|
|
* - the Markup section (containing 2 items)
|
2011-11-27 04:46:51 +01:00
|
|
|
*
|
2014-02-08 18:26:56 +01:00
|
|
|
* The [example][menu-model] illustrates the conceptual connection between
|
2011-11-27 04:46:51 +01:00
|
|
|
* these 8 menus. Each large block in the figure represents a menu and the
|
|
|
|
* smaller blocks within the large block represent items in that menu. Some
|
|
|
|
* items contain references to other menus.
|
|
|
|
*
|
2014-02-06 04:02:24 +01:00
|
|
|
* ## A menu example # {#menu-model}
|
|
|
|
*
|
|
|
|
* ![](menu-model.png)
|
2011-11-27 04:46:51 +01:00
|
|
|
*
|
2014-02-08 18:26:56 +01:00
|
|
|
* Notice that the separators visible in the [example][menu-example]
|
|
|
|
* appear nowhere in the [menu model][menu-model]. This is because
|
2011-11-27 04:46:51 +01:00
|
|
|
* separators are not explicitly represented in the menu model. Instead,
|
|
|
|
* a separator is inserted between any two non-empty sections of a menu.
|
|
|
|
* Section items can have labels just like any other item. In that case,
|
|
|
|
* a display system may show a section header instead of a separator.
|
|
|
|
*
|
|
|
|
* The motivation for this abstract model of application controls is
|
|
|
|
* that modern user interfaces tend to make these controls available
|
|
|
|
* outside the application. Examples include global menus, jumplists,
|
|
|
|
* dash boards, etc. To support such uses, it is necessary to 'export'
|
|
|
|
* information about actions and their representation in menus, which
|
2014-02-08 18:26:56 +01:00
|
|
|
* is exactly what the [GActionGroup exporter][gio-GActionGroup-exporter]
|
|
|
|
* and the [GMenuModel exporter][gio-GMenuModel-exporter] do for
|
|
|
|
* #GActionGroup and #GMenuModel. The client-side counterparts to
|
|
|
|
* make use of the exported information are #GDBusActionGroup and
|
2011-12-14 05:06:16 +01:00
|
|
|
* #GDBusMenuModel.
|
2011-11-27 04:46:51 +01:00
|
|
|
*
|
|
|
|
* The API of #GMenuModel is very generic, with iterators for the
|
|
|
|
* attributes and links of an item, see g_menu_model_iterate_item_attributes()
|
|
|
|
* and g_menu_model_iterate_item_links(). The 'standard' attributes and
|
|
|
|
* link types have predefined names: %G_MENU_ATTRIBUTE_LABEL,
|
|
|
|
* %G_MENU_ATTRIBUTE_ACTION, %G_MENU_ATTRIBUTE_TARGET, %G_MENU_LINK_SECTION
|
|
|
|
* and %G_MENU_LINK_SUBMENU.
|
|
|
|
*
|
2011-12-14 05:16:25 +01:00
|
|
|
* Items in a #GMenuModel represent active controls if they refer to
|
|
|
|
* an action that can get activated when the user interacts with the
|
|
|
|
* menu item. The reference to the action is encoded by the string id
|
|
|
|
* in the %G_MENU_ATTRIBUTE_ACTION attribute. An action id uniquely
|
|
|
|
* identifies an action in an action group. Which action group(s) provide
|
|
|
|
* actions depends on the context in which the menu model is used.
|
|
|
|
* E.g. when the model is exported as the application menu of a
|
|
|
|
* #GtkApplication, actions can be application-wide or window-specific
|
|
|
|
* (and thus come from two different action groups). By convention, the
|
|
|
|
* application-wide actions have names that start with "app.", while the
|
|
|
|
* names of window-specific actions start with "win.".
|
2011-11-27 04:46:51 +01:00
|
|
|
*
|
|
|
|
* While a wide variety of stateful actions is possible, the following
|
|
|
|
* is the minimum that is expected to be supported by all users of exported
|
|
|
|
* menu information:
|
2014-02-01 05:00:58 +01:00
|
|
|
* - an action with no parameter type and no state
|
|
|
|
* - an action with no parameter type and boolean state
|
|
|
|
* - an action with string parameter type and string state
|
|
|
|
*
|
|
|
|
* ## Stateless
|
|
|
|
*
|
2011-11-27 04:46:51 +01:00
|
|
|
* A stateless action typically corresponds to an ordinary menu item.
|
2014-02-01 05:00:58 +01:00
|
|
|
*
|
2011-11-27 04:46:51 +01:00
|
|
|
* Selecting such a menu item will activate the action (with no parameter).
|
|
|
|
*
|
2014-02-01 05:00:58 +01:00
|
|
|
* ## Boolean State
|
|
|
|
*
|
2011-11-27 04:46:51 +01:00
|
|
|
* An action with a boolean state will most typically be used with a "toggle"
|
|
|
|
* or "switch" menu item. The state can be set directly, but activating the
|
|
|
|
* action (with no parameter) results in the state being toggled.
|
2014-02-01 05:00:58 +01:00
|
|
|
*
|
2011-11-27 04:46:51 +01:00
|
|
|
* Selecting a toggle menu item will activate the action. The menu item should
|
|
|
|
* be rendered as "checked" when the state is true.
|
|
|
|
*
|
2014-02-01 05:00:58 +01:00
|
|
|
* ## String Parameter and State
|
|
|
|
*
|
2011-11-27 04:46:51 +01:00
|
|
|
* Actions with string parameters and state will most typically be used to
|
|
|
|
* represent an enumerated choice over the items available for a group of
|
|
|
|
* radio menu items. Activating the action with a string parameter is
|
|
|
|
* equivalent to setting that parameter as the state.
|
2014-02-01 05:00:58 +01:00
|
|
|
*
|
2011-11-27 04:46:51 +01:00
|
|
|
* Radio menu items, in addition to being associated with the action, will
|
|
|
|
* have a target value. Selecting that menu item will result in activation
|
|
|
|
* of the action with the target value as the parameter. The menu item should
|
|
|
|
* be rendered as "selected" when the state of the action is equal to the
|
|
|
|
* target value of the menu item.
|
|
|
|
*/
|
|
|
|
|
|
|
|
/**
|
|
|
|
* GMenuModel:
|
|
|
|
*
|
|
|
|
* #GMenuModel is an opaque structure type. You must access it using the
|
|
|
|
* functions below.
|
2011-12-11 04:14:34 +01:00
|
|
|
*
|
|
|
|
* Since: 2.32
|
|
|
|
*/
|
2011-11-27 04:46:51 +01:00
|
|
|
|
|
|
|
/**
|
|
|
|
* GMenuAttributeIter:
|
|
|
|
*
|
|
|
|
* #GMenuAttributeIter is an opaque structure type. You must access it
|
|
|
|
* using the functions below.
|
2011-12-11 04:14:34 +01:00
|
|
|
*
|
|
|
|
* Since: 2.32
|
|
|
|
*/
|
2011-11-27 04:46:51 +01:00
|
|
|
|
|
|
|
/**
|
|
|
|
* GMenuLinkIter:
|
|
|
|
*
|
|
|
|
* #GMenuLinkIter is an opaque structure type. You must access it using
|
|
|
|
* the functions below.
|
2011-12-11 04:14:34 +01:00
|
|
|
*
|
|
|
|
* Since: 2.32
|
|
|
|
*/
|
2011-11-27 04:46:51 +01:00
|
|
|
|
|
|
|
typedef struct
|
|
|
|
{
|
|
|
|
GMenuLinkIter parent_instance;
|
|
|
|
GHashTableIter iter;
|
|
|
|
GHashTable *table;
|
|
|
|
} GMenuLinkHashIter;
|
|
|
|
|
|
|
|
typedef GMenuLinkIterClass GMenuLinkHashIterClass;
|
|
|
|
|
2012-11-19 22:10:55 +01:00
|
|
|
static GType g_menu_link_hash_iter_get_type (void);
|
2012-11-02 00:36:15 +01:00
|
|
|
|
2011-11-27 04:46:51 +01:00
|
|
|
G_DEFINE_TYPE (GMenuLinkHashIter, g_menu_link_hash_iter, G_TYPE_MENU_LINK_ITER)
|
|
|
|
|
|
|
|
static gboolean
|
|
|
|
g_menu_link_hash_iter_get_next (GMenuLinkIter *link_iter,
|
|
|
|
const gchar **out_name,
|
|
|
|
GMenuModel **value)
|
|
|
|
{
|
|
|
|
GMenuLinkHashIter *iter = (GMenuLinkHashIter *) link_iter;
|
|
|
|
gpointer keyptr, valueptr;
|
|
|
|
|
|
|
|
if (!g_hash_table_iter_next (&iter->iter, &keyptr, &valueptr))
|
|
|
|
return FALSE;
|
|
|
|
|
|
|
|
*out_name = keyptr;
|
|
|
|
*value = g_object_ref (valueptr);
|
|
|
|
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
g_menu_link_hash_iter_finalize (GObject *object)
|
|
|
|
{
|
|
|
|
GMenuLinkHashIter *iter = (GMenuLinkHashIter *) object;
|
|
|
|
|
|
|
|
g_hash_table_unref (iter->table);
|
|
|
|
|
|
|
|
G_OBJECT_CLASS (g_menu_link_hash_iter_parent_class)
|
|
|
|
->finalize (object);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
g_menu_link_hash_iter_init (GMenuLinkHashIter *iter)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
g_menu_link_hash_iter_class_init (GMenuLinkHashIterClass *class)
|
|
|
|
{
|
|
|
|
GObjectClass *object_class = G_OBJECT_CLASS (class);
|
|
|
|
|
|
|
|
object_class->finalize = g_menu_link_hash_iter_finalize;
|
|
|
|
class->get_next = g_menu_link_hash_iter_get_next;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
typedef struct
|
|
|
|
{
|
|
|
|
GMenuAttributeIter parent_instance;
|
|
|
|
GHashTableIter iter;
|
|
|
|
GHashTable *table;
|
|
|
|
} GMenuAttributeHashIter;
|
|
|
|
|
|
|
|
typedef GMenuAttributeIterClass GMenuAttributeHashIterClass;
|
|
|
|
|
2012-11-19 22:10:55 +01:00
|
|
|
static GType g_menu_attribute_hash_iter_get_type (void);
|
2012-11-02 00:36:15 +01:00
|
|
|
|
2011-11-27 04:46:51 +01:00
|
|
|
G_DEFINE_TYPE (GMenuAttributeHashIter, g_menu_attribute_hash_iter, G_TYPE_MENU_ATTRIBUTE_ITER)
|
|
|
|
|
|
|
|
static gboolean
|
|
|
|
g_menu_attribute_hash_iter_get_next (GMenuAttributeIter *attr_iter,
|
|
|
|
const gchar **name,
|
|
|
|
GVariant **value)
|
|
|
|
{
|
|
|
|
GMenuAttributeHashIter *iter = (GMenuAttributeHashIter *) attr_iter;
|
|
|
|
gpointer keyptr, valueptr;
|
|
|
|
|
|
|
|
if (!g_hash_table_iter_next (&iter->iter, &keyptr, &valueptr))
|
|
|
|
return FALSE;
|
|
|
|
|
|
|
|
*name = keyptr;
|
|
|
|
|
|
|
|
*value = g_variant_ref (valueptr);
|
|
|
|
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
g_menu_attribute_hash_iter_finalize (GObject *object)
|
|
|
|
{
|
|
|
|
GMenuAttributeHashIter *iter = (GMenuAttributeHashIter *) object;
|
|
|
|
|
|
|
|
g_hash_table_unref (iter->table);
|
|
|
|
|
|
|
|
G_OBJECT_CLASS (g_menu_attribute_hash_iter_parent_class)
|
|
|
|
->finalize (object);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
g_menu_attribute_hash_iter_init (GMenuAttributeHashIter *iter)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
g_menu_attribute_hash_iter_class_init (GMenuAttributeHashIterClass *class)
|
|
|
|
{
|
|
|
|
GObjectClass *object_class = G_OBJECT_CLASS (class);
|
|
|
|
|
|
|
|
object_class->finalize = g_menu_attribute_hash_iter_finalize;
|
|
|
|
class->get_next = g_menu_attribute_hash_iter_get_next;
|
|
|
|
}
|
|
|
|
|
|
|
|
G_DEFINE_ABSTRACT_TYPE (GMenuModel, g_menu_model, G_TYPE_OBJECT)
|
|
|
|
|
|
|
|
|
2013-01-14 04:57:27 +01:00
|
|
|
static guint g_menu_model_items_changed_signal;
|
2011-11-27 04:46:51 +01:00
|
|
|
|
|
|
|
static GMenuAttributeIter *
|
|
|
|
g_menu_model_real_iterate_item_attributes (GMenuModel *model,
|
|
|
|
gint item_index)
|
|
|
|
{
|
|
|
|
GHashTable *table = NULL;
|
|
|
|
GMenuAttributeIter *result;
|
|
|
|
|
|
|
|
G_MENU_MODEL_GET_CLASS (model)->get_item_attributes (model, item_index, &table);
|
|
|
|
|
|
|
|
if (table)
|
|
|
|
{
|
|
|
|
GMenuAttributeHashIter *iter = g_object_new (g_menu_attribute_hash_iter_get_type (), NULL);
|
|
|
|
g_hash_table_iter_init (&iter->iter, table);
|
|
|
|
iter->table = g_hash_table_ref (table);
|
|
|
|
result = G_MENU_ATTRIBUTE_ITER (iter);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
g_critical ("GMenuModel implementation '%s' doesn't override iterate_item_attributes() "
|
|
|
|
"and fails to return sane values from get_item_attributes()",
|
|
|
|
G_OBJECT_TYPE_NAME (model));
|
|
|
|
result = NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (table != NULL)
|
|
|
|
g_hash_table_unref (table);
|
|
|
|
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
|
|
|
static GVariant *
|
|
|
|
g_menu_model_real_get_item_attribute_value (GMenuModel *model,
|
|
|
|
gint item_index,
|
|
|
|
const gchar *attribute,
|
|
|
|
const GVariantType *expected_type)
|
|
|
|
{
|
|
|
|
GHashTable *table = NULL;
|
|
|
|
GVariant *value = NULL;
|
|
|
|
|
|
|
|
G_MENU_MODEL_GET_CLASS (model)
|
|
|
|
->get_item_attributes (model, item_index, &table);
|
|
|
|
|
|
|
|
if (table != NULL)
|
|
|
|
{
|
|
|
|
value = g_hash_table_lookup (table, attribute);
|
|
|
|
|
|
|
|
if (value != NULL)
|
|
|
|
{
|
|
|
|
if (expected_type == NULL || g_variant_is_of_type (value, expected_type))
|
|
|
|
value = g_variant_ref (value);
|
|
|
|
else
|
|
|
|
value = NULL;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
g_assert_not_reached ();
|
|
|
|
|
|
|
|
if (table != NULL)
|
|
|
|
g_hash_table_unref (table);
|
|
|
|
|
|
|
|
return value;
|
|
|
|
}
|
|
|
|
|
|
|
|
static GMenuLinkIter *
|
|
|
|
g_menu_model_real_iterate_item_links (GMenuModel *model,
|
|
|
|
gint item_index)
|
|
|
|
{
|
|
|
|
GHashTable *table = NULL;
|
|
|
|
GMenuLinkIter *result;
|
|
|
|
|
|
|
|
G_MENU_MODEL_GET_CLASS (model)
|
|
|
|
->get_item_links (model, item_index, &table);
|
|
|
|
|
|
|
|
if (table)
|
|
|
|
{
|
|
|
|
GMenuLinkHashIter *iter = g_object_new (g_menu_link_hash_iter_get_type (), NULL);
|
|
|
|
g_hash_table_iter_init (&iter->iter, table);
|
|
|
|
iter->table = g_hash_table_ref (table);
|
|
|
|
result = G_MENU_LINK_ITER (iter);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
g_critical ("GMenuModel implementation '%s' doesn't override iterate_item_links() "
|
|
|
|
"and fails to return sane values from get_item_links()",
|
|
|
|
G_OBJECT_TYPE_NAME (model));
|
|
|
|
result = NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (table != NULL)
|
|
|
|
g_hash_table_unref (table);
|
|
|
|
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
|
|
|
static GMenuModel *
|
|
|
|
g_menu_model_real_get_item_link (GMenuModel *model,
|
|
|
|
gint item_index,
|
|
|
|
const gchar *link)
|
|
|
|
{
|
|
|
|
GHashTable *table = NULL;
|
|
|
|
GMenuModel *value = NULL;
|
|
|
|
|
|
|
|
G_MENU_MODEL_GET_CLASS (model)
|
|
|
|
->get_item_links (model, item_index, &table);
|
|
|
|
|
|
|
|
if (table != NULL)
|
|
|
|
value = g_hash_table_lookup (table, link);
|
|
|
|
else
|
|
|
|
g_assert_not_reached ();
|
|
|
|
|
2011-11-28 17:44:25 +01:00
|
|
|
if (value != NULL)
|
|
|
|
g_object_ref (value);
|
|
|
|
|
2011-11-27 04:46:51 +01:00
|
|
|
if (table != NULL)
|
|
|
|
g_hash_table_unref (table);
|
|
|
|
|
2011-11-28 17:44:25 +01:00
|
|
|
return value;
|
2011-11-27 04:46:51 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
g_menu_model_init (GMenuModel *model)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
g_menu_model_class_init (GMenuModelClass *class)
|
|
|
|
{
|
|
|
|
class->iterate_item_attributes = g_menu_model_real_iterate_item_attributes;
|
|
|
|
class->get_item_attribute_value = g_menu_model_real_get_item_attribute_value;
|
|
|
|
class->iterate_item_links = g_menu_model_real_iterate_item_links;
|
|
|
|
class->get_item_link = g_menu_model_real_get_item_link;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* GMenuModel::items-changed:
|
|
|
|
* @model: the #GMenuModel that is changing
|
|
|
|
* @position: the position of the change
|
|
|
|
* @removed: the number of items removed
|
|
|
|
* @added: the number of items added
|
|
|
|
*
|
|
|
|
* Emitted when a change has occured to the menu.
|
|
|
|
*
|
|
|
|
* The only changes that can occur to a menu is that items are removed
|
|
|
|
* or added. Items may not change (except by being removed and added
|
|
|
|
* back in the same location). This signal is capable of describing
|
|
|
|
* both of those changes (at the same time).
|
|
|
|
*
|
|
|
|
* The signal means that starting at the index @position, @removed
|
|
|
|
* items were removed and @added items were added in their place. If
|
|
|
|
* @removed is zero then only items were added. If @added is zero
|
|
|
|
* then only items were removed.
|
|
|
|
*
|
|
|
|
* As an example, if the menu contains items a, b, c, d (in that
|
|
|
|
* order) and the signal (2, 1, 3) occurs then the new composition of
|
|
|
|
* the menu will be a, b, _, _, _, d (with each _ representing some
|
|
|
|
* new item).
|
|
|
|
*
|
|
|
|
* Signal handlers may query the model (particularly the added items)
|
|
|
|
* and expect to see the results of the modification that is being
|
|
|
|
* reported. The signal is emitted after the modification.
|
|
|
|
**/
|
|
|
|
g_menu_model_items_changed_signal =
|
2015-09-12 06:00:40 +02:00
|
|
|
g_signal_new (I_("items-changed"), G_TYPE_MENU_MODEL,
|
2011-11-27 04:46:51 +01:00
|
|
|
G_SIGNAL_RUN_LAST, 0, NULL, NULL,
|
|
|
|
g_cclosure_marshal_generic, G_TYPE_NONE,
|
|
|
|
3, G_TYPE_INT, G_TYPE_INT, G_TYPE_INT);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* g_menu_model_is_mutable:
|
|
|
|
* @model: a #GMenuModel
|
|
|
|
*
|
|
|
|
* Queries if @model is mutable.
|
|
|
|
*
|
|
|
|
* An immutable #GMenuModel will never emit the #GMenuModel::items-changed
|
|
|
|
* signal. Consumers of the model may make optimisations accordingly.
|
|
|
|
*
|
|
|
|
* Returns: %TRUE if the model is mutable (ie: "items-changed" may be
|
2011-12-11 02:47:22 +01:00
|
|
|
* emitted).
|
|
|
|
*
|
|
|
|
* Since: 2.32
|
|
|
|
*/
|
2011-11-27 04:46:51 +01:00
|
|
|
gboolean
|
|
|
|
g_menu_model_is_mutable (GMenuModel *model)
|
|
|
|
{
|
|
|
|
return G_MENU_MODEL_GET_CLASS (model)
|
|
|
|
->is_mutable (model);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* g_menu_model_get_n_items:
|
|
|
|
* @model: a #GMenuModel
|
|
|
|
*
|
|
|
|
* Query the number of items in @model.
|
|
|
|
*
|
|
|
|
* Returns: the number of items
|
2011-12-11 02:47:22 +01:00
|
|
|
*
|
|
|
|
* Since: 2.32
|
|
|
|
*/
|
2011-11-27 04:46:51 +01:00
|
|
|
gint
|
|
|
|
g_menu_model_get_n_items (GMenuModel *model)
|
|
|
|
{
|
|
|
|
return G_MENU_MODEL_GET_CLASS (model)
|
|
|
|
->get_n_items (model);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* g_menu_model_iterate_item_attributes:
|
|
|
|
* @model: a #GMenuModel
|
|
|
|
* @item_index: the index of the item
|
|
|
|
*
|
|
|
|
* Creates a #GMenuAttributeIter to iterate over the attributes of
|
|
|
|
* the item at position @item_index in @model.
|
|
|
|
*
|
|
|
|
* You must free the iterator with g_object_unref() when you are done.
|
|
|
|
*
|
|
|
|
* Returns: (transfer full): a new #GMenuAttributeIter
|
2011-12-11 02:47:22 +01:00
|
|
|
*
|
|
|
|
* Since: 2.32
|
2011-11-27 04:46:51 +01:00
|
|
|
*/
|
|
|
|
GMenuAttributeIter *
|
|
|
|
g_menu_model_iterate_item_attributes (GMenuModel *model,
|
|
|
|
gint item_index)
|
|
|
|
{
|
|
|
|
return G_MENU_MODEL_GET_CLASS (model)
|
|
|
|
->iterate_item_attributes (model, item_index);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* g_menu_model_get_item_attribute_value:
|
|
|
|
* @model: a #GMenuModel
|
|
|
|
* @item_index: the index of the item
|
|
|
|
* @attribute: the attribute to query
|
|
|
|
* @expected_type: (allow-none): the expected type of the attribute, or
|
|
|
|
* %NULL
|
|
|
|
*
|
|
|
|
* Queries the item at position @item_index in @model for the attribute
|
|
|
|
* specified by @attribute.
|
|
|
|
*
|
|
|
|
* If @expected_type is non-%NULL then it specifies the expected type of
|
|
|
|
* the attribute. If it is %NULL then any type will be accepted.
|
|
|
|
*
|
|
|
|
* If the attribute exists and matches @expected_type (or if the
|
|
|
|
* expected type is unspecified) then the value is returned.
|
|
|
|
*
|
|
|
|
* If the attribute does not exist, or does not match the expected type
|
|
|
|
* then %NULL is returned.
|
|
|
|
*
|
|
|
|
* Returns: (transfer full): the value of the attribute
|
2011-12-11 02:47:22 +01:00
|
|
|
*
|
|
|
|
* Since: 2.32
|
|
|
|
*/
|
2011-11-27 04:46:51 +01:00
|
|
|
GVariant *
|
|
|
|
g_menu_model_get_item_attribute_value (GMenuModel *model,
|
|
|
|
gint item_index,
|
|
|
|
const gchar *attribute,
|
|
|
|
const GVariantType *expected_type)
|
|
|
|
{
|
|
|
|
return G_MENU_MODEL_GET_CLASS (model)
|
|
|
|
->get_item_attribute_value (model, item_index, attribute, expected_type);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* g_menu_model_get_item_attribute:
|
|
|
|
* @model: a #GMenuModel
|
|
|
|
* @item_index: the index of the item
|
|
|
|
* @attribute: the attribute to query
|
|
|
|
* @format_string: a #GVariant format string
|
|
|
|
* @...: positional parameters, as per @format_string
|
|
|
|
*
|
|
|
|
* Queries item at position @item_index in @model for the attribute
|
|
|
|
* specified by @attribute.
|
|
|
|
*
|
|
|
|
* If the attribute exists and matches the #GVariantType corresponding
|
|
|
|
* to @format_string then @format_string is used to deconstruct the
|
|
|
|
* value into the positional parameters and %TRUE is returned.
|
|
|
|
*
|
|
|
|
* If the attribute does not exist, or it does exist but has the wrong
|
|
|
|
* type, then the positional parameters are ignored and %FALSE is
|
|
|
|
* returned.
|
|
|
|
*
|
2012-08-18 20:14:21 +02:00
|
|
|
* This function is a mix of g_menu_model_get_item_attribute_value() and
|
|
|
|
* g_variant_get(), followed by a g_variant_unref(). As such,
|
|
|
|
* @format_string must make a complete copy of the data (since the
|
|
|
|
* #GVariant may go away after the call to g_variant_unref()). In
|
2014-02-09 08:07:26 +01:00
|
|
|
* particular, no '&' characters are allowed in @format_string.
|
2012-08-18 20:14:21 +02:00
|
|
|
*
|
2011-11-27 04:46:51 +01:00
|
|
|
* Returns: %TRUE if the named attribute was found with the expected
|
2011-12-11 02:47:22 +01:00
|
|
|
* type
|
|
|
|
*
|
|
|
|
* Since: 2.32
|
|
|
|
*/
|
2011-11-27 04:46:51 +01:00
|
|
|
gboolean
|
|
|
|
g_menu_model_get_item_attribute (GMenuModel *model,
|
|
|
|
gint item_index,
|
|
|
|
const gchar *attribute,
|
|
|
|
const gchar *format_string,
|
|
|
|
...)
|
|
|
|
{
|
|
|
|
GVariant *value;
|
|
|
|
va_list ap;
|
|
|
|
|
2012-08-18 20:14:21 +02:00
|
|
|
value = g_menu_model_get_item_attribute_value (model, item_index, attribute, NULL);
|
2011-11-27 04:46:51 +01:00
|
|
|
|
|
|
|
if (value == NULL)
|
|
|
|
return FALSE;
|
|
|
|
|
2012-08-18 20:14:21 +02:00
|
|
|
if (!g_variant_check_format_string (value, format_string, TRUE))
|
|
|
|
{
|
|
|
|
g_variant_unref (value);
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
2011-11-27 04:46:51 +01:00
|
|
|
va_start (ap, format_string);
|
|
|
|
g_variant_get_va (value, format_string, NULL, &ap);
|
|
|
|
g_variant_unref (value);
|
|
|
|
va_end (ap);
|
|
|
|
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* g_menu_model_iterate_item_links:
|
|
|
|
* @model: a #GMenuModel
|
|
|
|
* @item_index: the index of the item
|
|
|
|
*
|
|
|
|
* Creates a #GMenuLinkIter to iterate over the links of the item at
|
|
|
|
* position @item_index in @model.
|
|
|
|
*
|
|
|
|
* You must free the iterator with g_object_unref() when you are done.
|
|
|
|
*
|
|
|
|
* Returns: (transfer full): a new #GMenuLinkIter
|
2011-12-11 02:47:22 +01:00
|
|
|
*
|
|
|
|
* Since: 2.32
|
|
|
|
*/
|
2011-11-27 04:46:51 +01:00
|
|
|
GMenuLinkIter *
|
|
|
|
g_menu_model_iterate_item_links (GMenuModel *model,
|
|
|
|
gint item_index)
|
|
|
|
{
|
|
|
|
return G_MENU_MODEL_GET_CLASS (model)
|
|
|
|
->iterate_item_links (model, item_index);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* g_menu_model_get_item_link:
|
|
|
|
* @model: a #GMenuModel
|
|
|
|
* @item_index: the index of the item
|
|
|
|
* @link: the link to query
|
|
|
|
*
|
|
|
|
* Queries the item at position @item_index in @model for the link
|
|
|
|
* specified by @link.
|
|
|
|
*
|
|
|
|
* If the link exists, the linked #GMenuModel is returned. If the link
|
|
|
|
* does not exist, %NULL is returned.
|
|
|
|
*
|
|
|
|
* Returns: (transfer full): the linked #GMenuModel, or %NULL
|
2011-12-11 02:47:22 +01:00
|
|
|
*
|
|
|
|
* Since: 2.32
|
|
|
|
*/
|
2011-11-27 04:46:51 +01:00
|
|
|
GMenuModel *
|
|
|
|
g_menu_model_get_item_link (GMenuModel *model,
|
|
|
|
gint item_index,
|
|
|
|
const gchar *link)
|
|
|
|
{
|
|
|
|
return G_MENU_MODEL_GET_CLASS (model)
|
|
|
|
->get_item_link (model, item_index, link);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* g_menu_model_items_changed:
|
|
|
|
* @model: a #GMenuModel
|
|
|
|
* @position: the position of the change
|
|
|
|
* @removed: the number of items removed
|
|
|
|
* @added: the number of items added
|
|
|
|
*
|
2011-12-01 01:04:08 +01:00
|
|
|
* Requests emission of the #GMenuModel::items-changed signal on @model.
|
2011-11-27 04:46:51 +01:00
|
|
|
*
|
|
|
|
* This function should never be called except by #GMenuModel
|
|
|
|
* subclasses. Any other calls to this function will very likely lead
|
|
|
|
* to a violation of the interface of the model.
|
|
|
|
*
|
|
|
|
* The implementation should update its internal representation of the
|
|
|
|
* menu before emitting the signal. The implementation should further
|
|
|
|
* expect to receive queries about the new state of the menu (and
|
|
|
|
* particularly added menu items) while signal handlers are running.
|
|
|
|
*
|
|
|
|
* The implementation must dispatch this call directly from a mainloop
|
|
|
|
* entry and not in response to calls -- particularly those from the
|
|
|
|
* #GMenuModel API. Said another way: the menu must not change while
|
|
|
|
* user code is running without returning to the mainloop.
|
2011-12-11 02:47:22 +01:00
|
|
|
*
|
|
|
|
* Since: 2.32
|
|
|
|
*/
|
2011-11-27 04:46:51 +01:00
|
|
|
void
|
|
|
|
g_menu_model_items_changed (GMenuModel *model,
|
|
|
|
gint position,
|
|
|
|
gint removed,
|
|
|
|
gint added)
|
|
|
|
{
|
|
|
|
g_signal_emit (model, g_menu_model_items_changed_signal, 0, position, removed, added);
|
|
|
|
}
|
|
|
|
|
|
|
|
struct _GMenuAttributeIterPrivate
|
|
|
|
{
|
|
|
|
GQuark name;
|
|
|
|
GVariant *value;
|
|
|
|
gboolean valid;
|
|
|
|
};
|
|
|
|
|
2013-06-11 01:29:58 +02:00
|
|
|
G_DEFINE_ABSTRACT_TYPE_WITH_PRIVATE (GMenuAttributeIter, g_menu_attribute_iter, G_TYPE_OBJECT)
|
|
|
|
|
2011-11-27 04:46:51 +01:00
|
|
|
/**
|
|
|
|
* g_menu_attribute_iter_get_next:
|
|
|
|
* @iter: a #GMenuAttributeIter
|
|
|
|
* @out_name: (out) (allow-none) (transfer none): the type of the attribute
|
|
|
|
* @value: (out) (allow-none) (transfer full): the attribute value
|
|
|
|
*
|
|
|
|
* This function combines g_menu_attribute_iter_next() with
|
|
|
|
* g_menu_attribute_iter_get_name() and g_menu_attribute_iter_get_value().
|
|
|
|
*
|
|
|
|
* First the iterator is advanced to the next (possibly first) attribute.
|
|
|
|
* If that fails, then %FALSE is returned and there are no other
|
|
|
|
* effects.
|
|
|
|
*
|
|
|
|
* If successful, @name and @value are set to the name and value of the
|
|
|
|
* attribute that has just been advanced to. At this point,
|
2012-02-19 17:37:55 +01:00
|
|
|
* g_menu_attribute_iter_get_name() and g_menu_attribute_iter_get_value() will
|
|
|
|
* return the same values again.
|
2011-11-27 04:46:51 +01:00
|
|
|
*
|
|
|
|
* The value returned in @name remains valid for as long as the iterator
|
|
|
|
* remains at the current position. The value returned in @value must
|
|
|
|
* be unreffed using g_variant_unref() when it is no longer in use.
|
|
|
|
*
|
|
|
|
* Returns: %TRUE on success, or %FALSE if there is no additional
|
2011-12-11 02:47:22 +01:00
|
|
|
* attribute
|
|
|
|
*
|
|
|
|
* Since: 2.32
|
|
|
|
*/
|
2011-11-27 04:46:51 +01:00
|
|
|
gboolean
|
|
|
|
g_menu_attribute_iter_get_next (GMenuAttributeIter *iter,
|
|
|
|
const gchar **out_name,
|
|
|
|
GVariant **value)
|
|
|
|
{
|
|
|
|
const gchar *name;
|
|
|
|
|
|
|
|
if (iter->priv->value)
|
|
|
|
{
|
|
|
|
g_variant_unref (iter->priv->value);
|
|
|
|
iter->priv->value = NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
iter->priv->valid = G_MENU_ATTRIBUTE_ITER_GET_CLASS (iter)
|
|
|
|
->get_next (iter, &name, &iter->priv->value);
|
|
|
|
|
|
|
|
if (iter->priv->valid)
|
|
|
|
{
|
|
|
|
iter->priv->name = g_quark_from_string (name);
|
|
|
|
if (out_name)
|
|
|
|
*out_name = g_quark_to_string (iter->priv->name);
|
|
|
|
|
|
|
|
if (value)
|
|
|
|
*value = g_variant_ref (iter->priv->value);
|
|
|
|
}
|
|
|
|
|
|
|
|
return iter->priv->valid;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* g_menu_attribute_iter_next:
|
|
|
|
* @iter: a #GMenuAttributeIter
|
|
|
|
*
|
|
|
|
* Attempts to advance the iterator to the next (possibly first)
|
|
|
|
* attribute.
|
|
|
|
*
|
|
|
|
* %TRUE is returned on success, or %FALSE if there are no more
|
|
|
|
* attributes.
|
|
|
|
*
|
|
|
|
* You must call this function when you first acquire the iterator
|
|
|
|
* to advance it to the first attribute (and determine if the first
|
|
|
|
* attribute exists at all).
|
|
|
|
*
|
|
|
|
* Returns: %TRUE on success, or %FALSE when there are no more attributes
|
2011-12-11 02:47:22 +01:00
|
|
|
*
|
|
|
|
* Since: 2.32
|
|
|
|
*/
|
2011-11-27 04:46:51 +01:00
|
|
|
gboolean
|
|
|
|
g_menu_attribute_iter_next (GMenuAttributeIter *iter)
|
|
|
|
{
|
|
|
|
return g_menu_attribute_iter_get_next (iter, NULL, NULL);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* g_menu_attribute_iter_get_name:
|
|
|
|
* @iter: a #GMenuAttributeIter
|
|
|
|
*
|
|
|
|
* Gets the name of the attribute at the current iterator position, as
|
|
|
|
* a string.
|
|
|
|
*
|
|
|
|
* The iterator is not advanced.
|
|
|
|
*
|
|
|
|
* Returns: the name of the attribute
|
2011-12-11 02:47:22 +01:00
|
|
|
*
|
|
|
|
* Since: 2.32
|
|
|
|
*/
|
2011-11-27 04:46:51 +01:00
|
|
|
const gchar *
|
|
|
|
g_menu_attribute_iter_get_name (GMenuAttributeIter *iter)
|
|
|
|
{
|
|
|
|
g_return_val_if_fail (iter->priv->valid, 0);
|
|
|
|
|
|
|
|
return g_quark_to_string (iter->priv->name);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* g_menu_attribute_iter_get_value:
|
|
|
|
* @iter: a #GMenuAttributeIter
|
|
|
|
*
|
|
|
|
* Gets the value of the attribute at the current iterator position.
|
|
|
|
*
|
|
|
|
* The iterator is not advanced.
|
|
|
|
*
|
|
|
|
* Returns: (transfer full): the value of the current attribute
|
2011-12-11 02:47:22 +01:00
|
|
|
*
|
|
|
|
* Since: 2.32
|
|
|
|
*/
|
2011-11-27 04:46:51 +01:00
|
|
|
GVariant *
|
|
|
|
g_menu_attribute_iter_get_value (GMenuAttributeIter *iter)
|
|
|
|
{
|
|
|
|
g_return_val_if_fail (iter->priv->valid, NULL);
|
|
|
|
|
|
|
|
return g_variant_ref (iter->priv->value);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
g_menu_attribute_iter_finalize (GObject *object)
|
|
|
|
{
|
|
|
|
GMenuAttributeIter *iter = G_MENU_ATTRIBUTE_ITER (object);
|
|
|
|
|
|
|
|
if (iter->priv->value)
|
|
|
|
g_variant_unref (iter->priv->value);
|
|
|
|
|
|
|
|
G_OBJECT_CLASS (g_menu_attribute_iter_parent_class)
|
|
|
|
->finalize (object);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
g_menu_attribute_iter_init (GMenuAttributeIter *iter)
|
|
|
|
{
|
2013-06-24 16:43:04 +02:00
|
|
|
iter->priv = g_menu_attribute_iter_get_instance_private (iter);
|
2011-11-27 04:46:51 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
g_menu_attribute_iter_class_init (GMenuAttributeIterClass *class)
|
|
|
|
{
|
|
|
|
GObjectClass *object_class = G_OBJECT_CLASS (class);
|
|
|
|
|
|
|
|
object_class->finalize = g_menu_attribute_iter_finalize;
|
|
|
|
}
|
|
|
|
|
|
|
|
struct _GMenuLinkIterPrivate
|
|
|
|
{
|
|
|
|
GQuark name;
|
|
|
|
GMenuModel *value;
|
|
|
|
gboolean valid;
|
|
|
|
};
|
|
|
|
|
2013-06-11 01:29:58 +02:00
|
|
|
G_DEFINE_ABSTRACT_TYPE_WITH_PRIVATE (GMenuLinkIter, g_menu_link_iter, G_TYPE_OBJECT)
|
|
|
|
|
2011-11-27 04:46:51 +01:00
|
|
|
/**
|
|
|
|
* g_menu_link_iter_get_next:
|
|
|
|
* @iter: a #GMenuLinkIter
|
2011-12-01 01:04:08 +01:00
|
|
|
* @out_link: (out) (allow-none) (transfer none): the name of the link
|
2011-11-27 04:46:51 +01:00
|
|
|
* @value: (out) (allow-none) (transfer full): the linked #GMenuModel
|
|
|
|
*
|
|
|
|
* This function combines g_menu_link_iter_next() with
|
|
|
|
* g_menu_link_iter_get_name() and g_menu_link_iter_get_value().
|
|
|
|
*
|
2011-12-01 01:04:08 +01:00
|
|
|
* First the iterator is advanced to the next (possibly first) link.
|
|
|
|
* If that fails, then %FALSE is returned and there are no other effects.
|
2011-11-27 04:46:51 +01:00
|
|
|
*
|
2011-12-01 01:04:08 +01:00
|
|
|
* If successful, @out_link and @value are set to the name and #GMenuModel
|
2011-11-27 04:46:51 +01:00
|
|
|
* of the link that has just been advanced to. At this point,
|
2012-02-19 17:37:55 +01:00
|
|
|
* g_menu_link_iter_get_name() and g_menu_link_iter_get_value() will return the
|
2011-11-27 04:46:51 +01:00
|
|
|
* same values again.
|
|
|
|
*
|
2011-12-01 01:04:08 +01:00
|
|
|
* The value returned in @out_link remains valid for as long as the iterator
|
2011-11-27 04:46:51 +01:00
|
|
|
* remains at the current position. The value returned in @value must
|
|
|
|
* be unreffed using g_object_unref() when it is no longer in use.
|
|
|
|
*
|
|
|
|
* Returns: %TRUE on success, or %FALSE if there is no additional link
|
2011-12-11 02:47:22 +01:00
|
|
|
*
|
|
|
|
* Since: 2.32
|
|
|
|
*/
|
2011-11-27 04:46:51 +01:00
|
|
|
gboolean
|
|
|
|
g_menu_link_iter_get_next (GMenuLinkIter *iter,
|
2011-12-01 01:04:08 +01:00
|
|
|
const gchar **out_link,
|
2011-11-27 04:46:51 +01:00
|
|
|
GMenuModel **value)
|
|
|
|
{
|
|
|
|
const gchar *name;
|
|
|
|
|
|
|
|
if (iter->priv->value)
|
|
|
|
{
|
|
|
|
g_object_unref (iter->priv->value);
|
|
|
|
iter->priv->value = NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
iter->priv->valid = G_MENU_LINK_ITER_GET_CLASS (iter)
|
|
|
|
->get_next (iter, &name, &iter->priv->value);
|
|
|
|
|
|
|
|
if (iter->priv->valid)
|
|
|
|
{
|
|
|
|
g_assert (name != NULL);
|
|
|
|
|
|
|
|
iter->priv->name = g_quark_from_string (name);
|
2011-12-01 01:04:08 +01:00
|
|
|
if (out_link)
|
|
|
|
*out_link = g_quark_to_string (iter->priv->name);
|
2011-11-27 04:46:51 +01:00
|
|
|
|
|
|
|
if (value)
|
|
|
|
*value = g_object_ref (iter->priv->value);
|
|
|
|
}
|
|
|
|
|
|
|
|
return iter->priv->valid;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* g_menu_link_iter_next:
|
|
|
|
* @iter: a #GMenuLinkIter
|
|
|
|
*
|
|
|
|
* Attempts to advance the iterator to the next (possibly first)
|
|
|
|
* link.
|
|
|
|
*
|
|
|
|
* %TRUE is returned on success, or %FALSE if there are no more links.
|
|
|
|
*
|
|
|
|
* You must call this function when you first acquire the iterator to
|
|
|
|
* advance it to the first link (and determine if the first link exists
|
|
|
|
* at all).
|
|
|
|
*
|
|
|
|
* Returns: %TRUE on success, or %FALSE when there are no more links
|
2011-12-11 02:47:22 +01:00
|
|
|
*
|
|
|
|
* Since: 2.32
|
|
|
|
*/
|
2011-11-27 04:46:51 +01:00
|
|
|
gboolean
|
|
|
|
g_menu_link_iter_next (GMenuLinkIter *iter)
|
|
|
|
{
|
|
|
|
return g_menu_link_iter_get_next (iter, NULL, NULL);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* g_menu_link_iter_get_name:
|
|
|
|
* @iter: a #GMenuLinkIter
|
|
|
|
*
|
|
|
|
* Gets the name of the link at the current iterator position.
|
|
|
|
*
|
|
|
|
* The iterator is not advanced.
|
|
|
|
*
|
|
|
|
* Returns: the type of the link
|
2011-12-11 02:47:22 +01:00
|
|
|
*
|
|
|
|
* Since: 2.32
|
|
|
|
*/
|
2011-11-27 04:46:51 +01:00
|
|
|
const gchar *
|
|
|
|
g_menu_link_iter_get_name (GMenuLinkIter *iter)
|
|
|
|
{
|
|
|
|
g_return_val_if_fail (iter->priv->valid, 0);
|
|
|
|
|
|
|
|
return g_quark_to_string (iter->priv->name);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* g_menu_link_iter_get_value:
|
|
|
|
* @iter: a #GMenuLinkIter
|
|
|
|
*
|
|
|
|
* Gets the linked #GMenuModel at the current iterator position.
|
|
|
|
*
|
|
|
|
* The iterator is not advanced.
|
|
|
|
*
|
|
|
|
* Returns: (transfer full): the #GMenuModel that is linked to
|
2011-12-11 02:47:22 +01:00
|
|
|
*
|
|
|
|
* Since: 2.32
|
|
|
|
*/
|
2011-11-27 04:46:51 +01:00
|
|
|
GMenuModel *
|
|
|
|
g_menu_link_iter_get_value (GMenuLinkIter *iter)
|
|
|
|
{
|
|
|
|
g_return_val_if_fail (iter->priv->valid, NULL);
|
|
|
|
|
|
|
|
return g_object_ref (iter->priv->value);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
g_menu_link_iter_finalize (GObject *object)
|
|
|
|
{
|
|
|
|
GMenuLinkIter *iter = G_MENU_LINK_ITER (object);
|
|
|
|
|
|
|
|
if (iter->priv->value)
|
|
|
|
g_object_unref (iter->priv->value);
|
|
|
|
|
|
|
|
G_OBJECT_CLASS (g_menu_link_iter_parent_class)
|
|
|
|
->finalize (object);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
g_menu_link_iter_init (GMenuLinkIter *iter)
|
|
|
|
{
|
2013-06-24 16:43:04 +02:00
|
|
|
iter->priv = g_menu_link_iter_get_instance_private (iter);
|
2011-11-27 04:46:51 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
g_menu_link_iter_class_init (GMenuLinkIterClass *class)
|
|
|
|
{
|
|
|
|
GObjectClass *object_class = G_OBJECT_CLASS (class);
|
|
|
|
|
|
|
|
object_class->finalize = g_menu_link_iter_finalize;
|
|
|
|
}
|