2003-08-24 19:58:30 +00:00
|
|
|
/*
|
|
|
|
* GTK - The GIMP Toolkit
|
|
|
|
* Copyright (C) 1998, 1999 Red Hat, Inc.
|
|
|
|
* All rights reserved.
|
|
|
|
*
|
|
|
|
* This Library is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU Library General Public License as
|
|
|
|
* published by the Free Software Foundation; either version 2 of the
|
|
|
|
* License, 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
|
|
|
|
* Library General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Library General Public
|
|
|
|
* License along with the Gnome Library; see the file COPYING.LIB. If not,
|
|
|
|
* write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
|
|
|
|
* Boston, MA 02111-1307, USA.
|
|
|
|
*/
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Author: James Henstridge <james@daa.com.au>
|
|
|
|
*
|
|
|
|
* Modified by the GTK+ Team and others 2003. See the AUTHORS
|
|
|
|
* file for a list of people on the GTK+ Team. See the ChangeLog
|
|
|
|
* files for a list of changes. These files are distributed with
|
|
|
|
* GTK+ at ftp://ftp.gtk.org/pub/gtk/.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <config.h>
|
|
|
|
|
|
|
|
#include "gtkactiongroup.h"
|
2003-12-31 01:05:57 +00:00
|
|
|
#include "gtkstock.h"
|
2003-08-24 19:58:30 +00:00
|
|
|
#include "gtktoggleaction.h"
|
|
|
|
#include "gtkradioaction.h"
|
|
|
|
#include "gtkaccelmap.h"
|
2004-01-12 22:45:45 +00:00
|
|
|
#include "gtkmarshalers.h"
|
2003-08-24 19:58:30 +00:00
|
|
|
#include "gtkintl.h"
|
|
|
|
|
|
|
|
#define GTK_ACTION_GROUP_GET_PRIVATE(obj) (G_TYPE_INSTANCE_GET_PRIVATE ((obj), GTK_TYPE_ACTION_GROUP, GtkActionGroupPrivate))
|
|
|
|
|
|
|
|
struct _GtkActionGroupPrivate
|
|
|
|
{
|
2003-08-24 23:11:14 +00:00
|
|
|
gchar *name;
|
2004-01-12 22:45:45 +00:00
|
|
|
gboolean sensitive;
|
|
|
|
gboolean visible;
|
2003-08-24 23:11:14 +00:00
|
|
|
GHashTable *actions;
|
|
|
|
|
|
|
|
GtkTranslateFunc translate_func;
|
|
|
|
gpointer translate_data;
|
|
|
|
GtkDestroyNotify translate_notify;
|
2003-08-24 19:58:30 +00:00
|
|
|
};
|
|
|
|
|
2004-01-12 22:45:45 +00:00
|
|
|
enum
|
|
|
|
{
|
|
|
|
CONNECT_PROXY,
|
|
|
|
DISCONNECT_PROXY,
|
|
|
|
PRE_ACTIVATE,
|
|
|
|
POST_ACTIVATE,
|
|
|
|
LAST_SIGNAL
|
|
|
|
};
|
|
|
|
|
2003-10-25 21:34:24 +00:00
|
|
|
enum
|
|
|
|
{
|
|
|
|
PROP_0,
|
2004-01-12 22:45:45 +00:00
|
|
|
PROP_NAME,
|
|
|
|
PROP_SENSITIVE,
|
|
|
|
PROP_VISIBLE
|
2003-10-25 21:34:24 +00:00
|
|
|
};
|
|
|
|
|
2003-09-15 19:51:55 +00:00
|
|
|
static void gtk_action_group_init (GtkActionGroup *self);
|
|
|
|
static void gtk_action_group_class_init (GtkActionGroupClass *class);
|
|
|
|
static void gtk_action_group_finalize (GObject *object);
|
2003-10-25 21:34:24 +00:00
|
|
|
static void gtk_action_group_set_property (GObject *object,
|
|
|
|
guint prop_id,
|
|
|
|
const GValue *value,
|
|
|
|
GParamSpec *pspec);
|
|
|
|
static void gtk_action_group_get_property (GObject *object,
|
|
|
|
guint prop_id,
|
|
|
|
GValue *value,
|
|
|
|
GParamSpec *pspec);
|
2003-09-15 19:51:55 +00:00
|
|
|
static GtkAction *gtk_action_group_real_get_action (GtkActionGroup *self,
|
|
|
|
const gchar *name);
|
|
|
|
|
2003-08-24 19:58:30 +00:00
|
|
|
|
|
|
|
GType
|
|
|
|
gtk_action_group_get_type (void)
|
|
|
|
{
|
|
|
|
static GType type = 0;
|
|
|
|
|
|
|
|
if (!type)
|
|
|
|
{
|
|
|
|
static const GTypeInfo type_info =
|
|
|
|
{
|
|
|
|
sizeof (GtkActionGroupClass),
|
|
|
|
NULL, /* base_init */
|
|
|
|
NULL, /* base_finalize */
|
|
|
|
(GClassInitFunc) gtk_action_group_class_init,
|
|
|
|
NULL, /* class_finalize */
|
|
|
|
NULL, /* class_data */
|
|
|
|
sizeof (GtkActionGroup),
|
|
|
|
0, /* n_preallocs */
|
|
|
|
(GInstanceInitFunc) gtk_action_group_init,
|
|
|
|
};
|
|
|
|
|
|
|
|
type = g_type_register_static (G_TYPE_OBJECT, "GtkActionGroup",
|
|
|
|
&type_info, 0);
|
|
|
|
}
|
|
|
|
|
|
|
|
return type;
|
|
|
|
}
|
|
|
|
|
|
|
|
static GObjectClass *parent_class = NULL;
|
2004-01-12 22:45:45 +00:00
|
|
|
static guint action_group_signals[LAST_SIGNAL] = { 0 };
|
2003-08-24 19:58:30 +00:00
|
|
|
|
|
|
|
static void
|
|
|
|
gtk_action_group_class_init (GtkActionGroupClass *klass)
|
|
|
|
{
|
|
|
|
GObjectClass *gobject_class;
|
|
|
|
|
|
|
|
gobject_class = G_OBJECT_CLASS (klass);
|
|
|
|
parent_class = g_type_class_peek_parent (klass);
|
|
|
|
|
|
|
|
gobject_class->finalize = gtk_action_group_finalize;
|
2003-10-25 21:34:24 +00:00
|
|
|
gobject_class->set_property = gtk_action_group_set_property;
|
|
|
|
gobject_class->get_property = gtk_action_group_get_property;
|
2003-08-24 19:58:30 +00:00
|
|
|
klass->get_action = gtk_action_group_real_get_action;
|
|
|
|
|
2003-10-25 21:34:24 +00:00
|
|
|
g_object_class_install_property (gobject_class,
|
|
|
|
PROP_NAME,
|
|
|
|
g_param_spec_string ("name",
|
|
|
|
_("Name"),
|
|
|
|
_("A name for the action group."),
|
|
|
|
NULL,
|
|
|
|
G_PARAM_READWRITE |
|
|
|
|
G_PARAM_CONSTRUCT_ONLY));
|
2004-01-12 22:45:45 +00:00
|
|
|
g_object_class_install_property (gobject_class,
|
|
|
|
PROP_SENSITIVE,
|
|
|
|
g_param_spec_boolean ("sensitive",
|
|
|
|
_("Sensitive"),
|
|
|
|
_("Whether the action group is enabled."),
|
|
|
|
TRUE,
|
|
|
|
G_PARAM_READWRITE));
|
|
|
|
g_object_class_install_property (gobject_class,
|
|
|
|
PROP_VISIBLE,
|
|
|
|
g_param_spec_boolean ("visible",
|
|
|
|
_("Visible"),
|
|
|
|
_("Whether the action group is visible."),
|
|
|
|
TRUE,
|
|
|
|
G_PARAM_READWRITE));
|
|
|
|
|
|
|
|
/**
|
|
|
|
* GtkGroupAction::connect-proxy:
|
|
|
|
* @action_group: the group
|
|
|
|
* @action: the action
|
|
|
|
* @proxy: the proxy
|
|
|
|
*
|
|
|
|
* The connect_proxy signal is emitted after connecting a proxy to
|
|
|
|
* an action in the group. Note that the proxy may have been connected
|
|
|
|
* to a different action before.
|
|
|
|
*
|
|
|
|
* This is intended for simple customizations for which a custom action
|
|
|
|
* class would be too clumsy, e.g. showing tooltips for menuitems in the
|
|
|
|
* statusbar.
|
|
|
|
*
|
|
|
|
* #GtkUIManager proxies the signal and provides global notification
|
|
|
|
* just before any action is connected to a proxy, which is probably more
|
|
|
|
* convenient to use.
|
|
|
|
*
|
|
|
|
* Since: 2.4
|
|
|
|
*/
|
|
|
|
action_group_signals[CONNECT_PROXY] =
|
|
|
|
g_signal_new ("connect_proxy",
|
|
|
|
G_OBJECT_CLASS_TYPE (klass),
|
|
|
|
0, 0, NULL, NULL,
|
|
|
|
_gtk_marshal_VOID__OBJECT_OBJECT,
|
|
|
|
G_TYPE_NONE, 2,
|
|
|
|
GTK_TYPE_ACTION, GTK_TYPE_WIDGET);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* GtkAction::disconnect-proxy:
|
|
|
|
* @action_group: the group
|
|
|
|
* @action: the action
|
|
|
|
* @proxy: the proxy
|
|
|
|
*
|
|
|
|
* The disconnect_proxy signal is emitted after disconnecting a proxy
|
|
|
|
* from an action in the group.
|
|
|
|
*
|
|
|
|
* #GtkUIManager proxies the signal and provides global notification
|
|
|
|
* just before any action is connected to a proxy, which is probably more
|
|
|
|
* convenient to use.
|
|
|
|
*
|
|
|
|
* Since: 2.4
|
|
|
|
*/
|
|
|
|
action_group_signals[DISCONNECT_PROXY] =
|
|
|
|
g_signal_new ("disconnect_proxy",
|
|
|
|
G_OBJECT_CLASS_TYPE (klass),
|
|
|
|
0, 0, NULL, NULL,
|
|
|
|
_gtk_marshal_VOID__OBJECT_OBJECT,
|
|
|
|
G_TYPE_NONE, 2,
|
|
|
|
GTK_TYPE_ACTION, GTK_TYPE_WIDGET);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* GtkActionGroup::pre_activate:
|
|
|
|
* @action_group: the group
|
|
|
|
* @action: the action
|
|
|
|
*
|
|
|
|
* The pre_activate signal is emitted just before the @action in the
|
|
|
|
* @action_group is activated
|
|
|
|
*
|
|
|
|
* This is intended for #GtkUIManager to proxy the signal and provide global
|
|
|
|
* notification just before any action is activated.
|
|
|
|
*
|
|
|
|
* Since: 2.4
|
|
|
|
*/
|
|
|
|
action_group_signals[PRE_ACTIVATE] =
|
|
|
|
g_signal_new ("pre_activate",
|
|
|
|
G_OBJECT_CLASS_TYPE (klass),
|
|
|
|
0, 0, NULL, NULL,
|
|
|
|
_gtk_marshal_VOID__OBJECT,
|
|
|
|
G_TYPE_NONE, 1,
|
|
|
|
GTK_TYPE_ACTION);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* GtkActionGroup::post_activate:
|
|
|
|
* @action_group: the group
|
|
|
|
* @action: the action
|
|
|
|
*
|
|
|
|
* The post_activate signal is emitted just after the @action in the
|
|
|
|
* @action_group is activated
|
|
|
|
*
|
|
|
|
* This is intended for #GtkUIManager to proxy the signal and provide global
|
|
|
|
* notification just after any action is activated.
|
|
|
|
*
|
|
|
|
* Since: 2.4
|
|
|
|
*/
|
|
|
|
action_group_signals[POST_ACTIVATE] =
|
|
|
|
g_signal_new ("post_activate",
|
|
|
|
G_OBJECT_CLASS_TYPE (klass),
|
|
|
|
0, 0, NULL, NULL,
|
|
|
|
_gtk_marshal_VOID__OBJECT,
|
|
|
|
G_TYPE_NONE, 1,
|
|
|
|
GTK_TYPE_ACTION);
|
|
|
|
|
2003-08-24 19:58:30 +00:00
|
|
|
g_type_class_add_private (gobject_class, sizeof (GtkActionGroupPrivate));
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
gtk_action_group_init (GtkActionGroup *self)
|
|
|
|
{
|
|
|
|
self->private_data = GTK_ACTION_GROUP_GET_PRIVATE (self);
|
|
|
|
self->private_data->name = NULL;
|
2004-01-12 22:45:45 +00:00
|
|
|
self->private_data->sensitive = TRUE;
|
|
|
|
self->private_data->visible = TRUE;
|
2003-08-24 19:58:30 +00:00
|
|
|
self->private_data->actions = g_hash_table_new_full (g_str_hash, g_str_equal,
|
|
|
|
(GDestroyNotify) g_free,
|
|
|
|
(GDestroyNotify) g_object_unref);
|
2003-08-24 23:11:14 +00:00
|
|
|
self->private_data->translate_func = NULL;
|
|
|
|
self->private_data->translate_data = NULL;
|
|
|
|
self->private_data->translate_notify = NULL;
|
2003-08-24 19:58:30 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* gtk_action_group_new:
|
2003-09-01 23:45:54 +00:00
|
|
|
* @name: the name of the action group.
|
2003-08-24 19:58:30 +00:00
|
|
|
*
|
2003-09-01 23:45:54 +00:00
|
|
|
* Creates a new #GtkActionGroup object. The name of the action group
|
|
|
|
* is used when associating <link linkend="Action-Accel">keybindings</link>
|
|
|
|
* with the actions.
|
2003-08-24 19:58:30 +00:00
|
|
|
*
|
|
|
|
* Returns: the new #GtkActionGroup
|
|
|
|
*
|
|
|
|
* Since: 2.4
|
|
|
|
*/
|
|
|
|
GtkActionGroup *
|
|
|
|
gtk_action_group_new (const gchar *name)
|
|
|
|
{
|
|
|
|
GtkActionGroup *self;
|
|
|
|
|
|
|
|
self = g_object_new (GTK_TYPE_ACTION_GROUP, NULL);
|
|
|
|
self->private_data->name = g_strdup (name);
|
|
|
|
|
|
|
|
return self;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
gtk_action_group_finalize (GObject *object)
|
|
|
|
{
|
|
|
|
GtkActionGroup *self;
|
|
|
|
|
|
|
|
self = GTK_ACTION_GROUP (object);
|
|
|
|
|
|
|
|
g_free (self->private_data->name);
|
|
|
|
self->private_data->name = NULL;
|
|
|
|
|
|
|
|
g_hash_table_destroy (self->private_data->actions);
|
|
|
|
self->private_data->actions = NULL;
|
|
|
|
|
2003-08-24 23:11:14 +00:00
|
|
|
if (self->private_data->translate_notify)
|
|
|
|
self->private_data->translate_notify (self->private_data->translate_data);
|
|
|
|
|
2003-08-24 19:58:30 +00:00
|
|
|
if (parent_class->finalize)
|
|
|
|
(* parent_class->finalize) (object);
|
|
|
|
}
|
|
|
|
|
2003-10-25 21:34:24 +00:00
|
|
|
static void
|
|
|
|
gtk_action_group_set_property (GObject *object,
|
|
|
|
guint prop_id,
|
|
|
|
const GValue *value,
|
|
|
|
GParamSpec *pspec)
|
|
|
|
{
|
|
|
|
GtkActionGroup *self;
|
|
|
|
gchar *tmp;
|
|
|
|
|
|
|
|
self = GTK_ACTION_GROUP (object);
|
|
|
|
|
|
|
|
switch (prop_id)
|
|
|
|
{
|
|
|
|
case PROP_NAME:
|
|
|
|
tmp = self->private_data->name;
|
|
|
|
self->private_data->name = g_value_dup_string (value);
|
|
|
|
g_free (tmp);
|
|
|
|
break;
|
2004-01-12 22:45:45 +00:00
|
|
|
case PROP_SENSITIVE:
|
|
|
|
gtk_action_group_set_sensitive (self, g_value_get_boolean (value));
|
|
|
|
break;
|
|
|
|
case PROP_VISIBLE:
|
|
|
|
gtk_action_group_set_visible (self, g_value_get_boolean (value));
|
|
|
|
break;
|
2003-10-25 21:34:24 +00:00
|
|
|
default:
|
|
|
|
G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
gtk_action_group_get_property (GObject *object,
|
|
|
|
guint prop_id,
|
|
|
|
GValue *value,
|
|
|
|
GParamSpec *pspec)
|
|
|
|
{
|
|
|
|
GtkActionGroup *self;
|
|
|
|
|
|
|
|
self = GTK_ACTION_GROUP (object);
|
|
|
|
|
|
|
|
switch (prop_id)
|
|
|
|
{
|
|
|
|
case PROP_NAME:
|
|
|
|
g_value_set_string (value, self->private_data->name);
|
|
|
|
break;
|
2004-01-12 22:45:45 +00:00
|
|
|
case PROP_SENSITIVE:
|
|
|
|
g_value_set_boolean (value, self->private_data->sensitive);
|
|
|
|
break;
|
|
|
|
case PROP_VISIBLE:
|
|
|
|
g_value_set_boolean (value, self->private_data->visible);
|
|
|
|
break;
|
2003-10-25 21:34:24 +00:00
|
|
|
default:
|
|
|
|
G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2003-08-24 19:58:30 +00:00
|
|
|
static GtkAction *
|
|
|
|
gtk_action_group_real_get_action (GtkActionGroup *self,
|
|
|
|
const gchar *action_name)
|
|
|
|
{
|
|
|
|
return g_hash_table_lookup (self->private_data->actions, action_name);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* gtk_action_group_get_name:
|
|
|
|
* @action_group: the action group
|
|
|
|
*
|
|
|
|
* Gets the name of the action group.
|
|
|
|
*
|
|
|
|
* Returns: the name of the action group.
|
|
|
|
*
|
|
|
|
* Since: 2.4
|
|
|
|
*/
|
|
|
|
const gchar *
|
|
|
|
gtk_action_group_get_name (GtkActionGroup *action_group)
|
|
|
|
{
|
|
|
|
g_return_val_if_fail (GTK_IS_ACTION_GROUP (action_group), NULL);
|
|
|
|
|
|
|
|
return action_group->private_data->name;
|
|
|
|
}
|
|
|
|
|
2004-01-12 22:45:45 +00:00
|
|
|
/**
|
|
|
|
* gtk_action_group_get_sensitive:
|
|
|
|
* @action_group: the action group
|
|
|
|
*
|
|
|
|
* Returns %TRUE if the group is sensitive. The constituent actions
|
|
|
|
* can only be logically sensitive (see gtk_action_is_sensitive()) if
|
|
|
|
* they are sensitive (see gtk_action_get_sensitive()) and their group
|
|
|
|
* is sensitive.
|
|
|
|
*
|
|
|
|
* Return value: %TRUE if the group is sensitive.
|
|
|
|
*
|
|
|
|
* Since: 2.4
|
|
|
|
*/
|
|
|
|
gboolean
|
|
|
|
gtk_action_group_get_sensitive (GtkActionGroup *action_group)
|
|
|
|
{
|
|
|
|
g_return_val_if_fail (GTK_IS_ACTION_GROUP (action_group), FALSE);
|
|
|
|
|
|
|
|
return action_group->private_data->sensitive;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
cb_set_action_sensitivity (const gchar *name, GtkAction *action)
|
|
|
|
{
|
|
|
|
/* Minor optimization, the action_groups state only effects actions that are
|
|
|
|
* themselves sensitive */
|
|
|
|
if (gtk_action_get_sensitive (action))
|
|
|
|
g_object_notify (G_OBJECT (action), "sensitive");
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* gtk_action_group_set_sensitive:
|
|
|
|
* @action_group: the action group
|
|
|
|
* @sensitive: new sensitivity
|
|
|
|
*
|
|
|
|
* Changes the sensitivity of @action_group
|
|
|
|
*
|
|
|
|
* Since: 2.4
|
|
|
|
*/
|
|
|
|
void
|
|
|
|
gtk_action_group_set_sensitive (GtkActionGroup *action_group, gboolean sensitive)
|
|
|
|
{
|
|
|
|
g_return_if_fail (GTK_IS_ACTION_GROUP (action_group));
|
|
|
|
|
|
|
|
if (action_group->private_data->sensitive ^ sensitive)
|
|
|
|
{
|
|
|
|
action_group->private_data->sensitive = sensitive;
|
|
|
|
g_hash_table_foreach (action_group->private_data->actions,
|
|
|
|
(GHFunc) cb_set_action_sensitivity, NULL);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* gtk_action_group_get_visible:
|
|
|
|
* @action_group: the action group
|
|
|
|
*
|
|
|
|
* Returns %TRUE if the group is visible. The constituent actions
|
|
|
|
* can only be logically visible (see gtk_action_is_visible()) if
|
|
|
|
* they are visible (see gtk_action_get_visible()) and their group
|
|
|
|
* is visible.
|
|
|
|
*
|
|
|
|
* Return value: %TRUE if the group is sensitive.
|
|
|
|
*
|
|
|
|
* Since: 2.4
|
|
|
|
*/
|
|
|
|
gboolean
|
|
|
|
gtk_action_group_get_visible (GtkActionGroup *action_group)
|
|
|
|
{
|
|
|
|
g_return_val_if_fail (GTK_IS_ACTION_GROUP (action_group), FALSE);
|
|
|
|
|
|
|
|
return action_group->private_data->visible;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
cb_set_action_visiblity (const gchar *name, GtkAction *action)
|
|
|
|
{
|
|
|
|
/* Minor optimization, the action_groups state only effects actions that are
|
|
|
|
* themselves sensitive */
|
|
|
|
if (gtk_action_get_visible (action))
|
|
|
|
g_object_notify (G_OBJECT (action), "visible");
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* gtk_action_group_set_visible:
|
|
|
|
* @action_group: the action group
|
|
|
|
* @visible: new visiblity
|
|
|
|
*
|
|
|
|
* Changes the visible of @action_group.
|
|
|
|
*
|
|
|
|
* Since: 2.4
|
|
|
|
*/
|
|
|
|
void
|
|
|
|
gtk_action_group_set_visible (GtkActionGroup *action_group, gboolean visible)
|
|
|
|
{
|
|
|
|
g_return_if_fail (GTK_IS_ACTION_GROUP (action_group));
|
|
|
|
|
|
|
|
if (action_group->private_data->visible ^ visible)
|
|
|
|
{
|
|
|
|
action_group->private_data->visible = visible;
|
|
|
|
g_hash_table_foreach (action_group->private_data->actions,
|
|
|
|
(GHFunc) cb_set_action_visiblity, NULL);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2003-08-24 19:58:30 +00:00
|
|
|
/**
|
|
|
|
* gtk_action_group_get_action:
|
|
|
|
* @action_group: the action group
|
|
|
|
* @action_name: the name of the action
|
|
|
|
*
|
|
|
|
* Looks up an action in the action group by name.
|
|
|
|
*
|
|
|
|
* Returns: the action, or %NULL if no action by that name exists
|
|
|
|
*
|
|
|
|
* Since: 2.4
|
|
|
|
*/
|
|
|
|
GtkAction *
|
|
|
|
gtk_action_group_get_action (GtkActionGroup *action_group,
|
|
|
|
const gchar *action_name)
|
|
|
|
{
|
|
|
|
g_return_val_if_fail (GTK_IS_ACTION_GROUP (action_group), NULL);
|
|
|
|
g_return_val_if_fail (GTK_ACTION_GROUP_GET_CLASS (action_group)->get_action != NULL, NULL);
|
|
|
|
|
|
|
|
return (* GTK_ACTION_GROUP_GET_CLASS (action_group)->get_action)
|
|
|
|
(action_group, action_name);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* gtk_action_group_add_action:
|
|
|
|
* @action_group: the action group
|
|
|
|
* @action: an action
|
|
|
|
*
|
2003-09-04 00:49:37 +00:00
|
|
|
* Adds an action object to the action group.
|
2003-08-24 19:58:30 +00:00
|
|
|
*
|
|
|
|
* Since: 2.4
|
|
|
|
*/
|
|
|
|
void
|
|
|
|
gtk_action_group_add_action (GtkActionGroup *action_group,
|
|
|
|
GtkAction *action)
|
|
|
|
{
|
|
|
|
g_return_if_fail (GTK_IS_ACTION_GROUP (action_group));
|
|
|
|
g_return_if_fail (GTK_IS_ACTION (action));
|
|
|
|
g_return_if_fail (gtk_action_get_name (action) != NULL);
|
|
|
|
|
|
|
|
g_hash_table_insert (action_group->private_data->actions,
|
|
|
|
g_strdup (gtk_action_get_name (action)),
|
|
|
|
g_object_ref (action));
|
2004-01-12 22:45:45 +00:00
|
|
|
g_object_set (G_OBJECT (action), "action_group", action_group, NULL);
|
2003-08-24 19:58:30 +00:00
|
|
|
}
|
|
|
|
|
2004-01-02 23:14:28 +00:00
|
|
|
/**
|
|
|
|
* gtk_action_group_add_action_with_accel:
|
2004-01-07 22:02:02 +00:00
|
|
|
* @action_group: the action group
|
|
|
|
* @action: the action to add
|
2004-01-07 21:54:33 +00:00
|
|
|
* @accelerator: the accelerator for the action, in
|
2004-01-07 22:02:02 +00:00
|
|
|
* the format understood by gtk_accelerator_parse(), or %NULL to use the
|
|
|
|
* stock accelerator
|
2004-01-02 23:14:28 +00:00
|
|
|
*
|
|
|
|
* Adds an action object to the action group and sets up the accelerator.
|
|
|
|
*
|
2004-01-07 22:02:02 +00:00
|
|
|
* If @accelerator is %NULL, attempts to use the accelerator associated
|
|
|
|
* with the stock_id of the action.
|
2004-01-02 23:14:28 +00:00
|
|
|
*
|
2004-01-07 21:54:33 +00:00
|
|
|
* Accel paths are set to
|
|
|
|
* <literal><Actions>/<replaceable>group-name</replaceable>/<replaceable>action-name</replaceable></literal>.
|
|
|
|
*
|
2004-01-02 23:14:28 +00:00
|
|
|
* Since: 2.4
|
|
|
|
*/
|
|
|
|
void
|
|
|
|
gtk_action_group_add_action_with_accel (GtkActionGroup *action_group,
|
|
|
|
GtkAction *action,
|
2004-01-07 22:02:02 +00:00
|
|
|
const gchar *accelerator)
|
2004-01-02 23:14:28 +00:00
|
|
|
{
|
|
|
|
gchar *accel_path;
|
|
|
|
guint accel_key = 0;
|
|
|
|
GdkModifierType accel_mods;
|
|
|
|
GtkStockItem stock_item;
|
2004-01-07 22:02:02 +00:00
|
|
|
const gchar *name;
|
|
|
|
const gchar *stock_id;
|
|
|
|
|
|
|
|
g_object_get (action, "name", &name, "stock_id", &stock_id, NULL);
|
2004-01-02 23:14:28 +00:00
|
|
|
|
|
|
|
accel_path = g_strconcat ("<Actions>/",
|
|
|
|
action_group->private_data->name, "/", name, NULL);
|
|
|
|
|
|
|
|
if (accelerator)
|
|
|
|
gtk_accelerator_parse (accelerator, &accel_key, &accel_mods);
|
|
|
|
else if (stock_id && gtk_stock_lookup (stock_id, &stock_item))
|
|
|
|
{
|
|
|
|
accel_key = stock_item.keyval;
|
|
|
|
accel_mods = stock_item.modifier;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (accel_key)
|
|
|
|
gtk_accel_map_add_entry (accel_path, accel_key, accel_mods);
|
|
|
|
|
|
|
|
gtk_action_set_accel_path (action, accel_path);
|
|
|
|
g_free (accel_path);
|
|
|
|
|
|
|
|
gtk_action_group_add_action (action_group, action);
|
|
|
|
}
|
|
|
|
|
2003-08-24 19:58:30 +00:00
|
|
|
/**
|
2003-09-04 00:49:37 +00:00
|
|
|
* gtk_action_group_remove_action:
|
2003-08-24 19:58:30 +00:00
|
|
|
* @action_group: the action group
|
|
|
|
* @action: an action
|
|
|
|
*
|
|
|
|
* Removes an action object from the action group.
|
|
|
|
*
|
|
|
|
* Since: 2.4
|
|
|
|
*/
|
|
|
|
void
|
|
|
|
gtk_action_group_remove_action (GtkActionGroup *action_group,
|
|
|
|
GtkAction *action)
|
|
|
|
{
|
|
|
|
g_return_if_fail (GTK_IS_ACTION_GROUP (action_group));
|
|
|
|
g_return_if_fail (GTK_IS_ACTION (action));
|
|
|
|
g_return_if_fail (gtk_action_get_name (action) != NULL);
|
|
|
|
|
|
|
|
/* extra protection to make sure action->name is valid */
|
|
|
|
g_object_ref (action);
|
|
|
|
g_hash_table_remove (action_group->private_data->actions, gtk_action_get_name (action));
|
2004-01-12 22:45:45 +00:00
|
|
|
g_object_set (G_OBJECT (action), "action_group", NULL, NULL);
|
2003-08-24 19:58:30 +00:00
|
|
|
g_object_unref (action);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
add_single_action (gpointer key,
|
|
|
|
gpointer value,
|
|
|
|
gpointer user_data)
|
|
|
|
{
|
|
|
|
GList **list = user_data;
|
|
|
|
|
|
|
|
*list = g_list_prepend (*list, value);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* gtk_action_group_list_actions:
|
|
|
|
* @action_group: the action group
|
|
|
|
*
|
|
|
|
* Lists the actions in the action group.
|
|
|
|
*
|
|
|
|
* Returns: an allocated list of the action objects in the action group
|
|
|
|
*
|
|
|
|
* Since: 2.4
|
|
|
|
*/
|
|
|
|
GList *
|
|
|
|
gtk_action_group_list_actions (GtkActionGroup *action_group)
|
|
|
|
{
|
|
|
|
GList *actions = NULL;
|
2003-08-24 23:11:14 +00:00
|
|
|
g_return_val_if_fail (GTK_IS_ACTION_GROUP (action_group), NULL);
|
2003-08-24 19:58:30 +00:00
|
|
|
|
|
|
|
g_hash_table_foreach (action_group->private_data->actions, add_single_action, &actions);
|
|
|
|
|
|
|
|
return g_list_reverse (actions);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* gtk_action_group_add_actions:
|
|
|
|
* @action_group: the action group
|
|
|
|
* @entries: an array of action descriptions
|
|
|
|
* @n_entries: the number of entries
|
Change the XML format: <Root> element is replaced by <ui>, <menu> element
2003-08-28 Matthias Clasen <maclas@gmx.de>
* gtk/gtkuimanager.c: Change the XML format:
<Root> element is replaced by <ui>,
<menu> element is replaced by <menubar>,
<submenu> element is replaced by <menu>,
<dockitem> element is replaced by <toolbar>,
<popups> element is gone,
verb attribute is replaced by action,
name defaults to action or the element name.
* gtk/gtkactiongroup.[hc]: Replace GtkActionGroupEntry by GtkActionEntry
and GtkRadioActionEntry. GtkActionEntry is simplified by removing
the user_data, entry_type and extra_data fields, GtkRadioActionEntry is
further simplified by removing the callback. The user_data can now be
specified as an argument to gtk_action_group_add_actions(). There is
a new method gtk_action_group_add_radio_actions(), which is similar
to gtk_action_group_add_actions(), but takes GtkRadioActionEntrys
and a callback parameter in addition to the user_data. The callback
is connected to the ::changed signal of the first group member.
There are _full() variants taking a GDestroyNotify of
gtk_action_group_add_[radio_]actions().
* gtk/gtkradioaction.[hc]: Add a ::changed signal which gets emitted
on every member of the radio group when the active member is changed.
Add an integer property "value", and a getter for the value of "value"
on the currently active group member.
* tests/testactions.c:
* tests/testmerge.c:
* tests/merge-[123].ui:
* demos/gtk-demo/appwindow.c: Adjust to these changes.
* gtk/gtktoolbar.c (gtk_toolbar_append_element): Trivial doc fix.
2003-08-27 22:22:28 +00:00
|
|
|
* @user_data: data to pass to the action callbacks
|
2003-08-24 19:58:30 +00:00
|
|
|
*
|
2003-09-15 19:51:55 +00:00
|
|
|
* This is a convenience function to create a number of actions and add them
|
|
|
|
* to the action group.
|
2003-09-04 00:49:37 +00:00
|
|
|
*
|
|
|
|
* The "activate" signals of the actions are connected to the callbacks and
|
|
|
|
* their accel paths are set to
|
|
|
|
* <literal><Actions>/<replaceable>group-name</replaceable>/<replaceable>action-name</replaceable></literal>.
|
2003-08-24 19:58:30 +00:00
|
|
|
*
|
|
|
|
* Since: 2.4
|
|
|
|
*/
|
|
|
|
void
|
Change the XML format: <Root> element is replaced by <ui>, <menu> element
2003-08-28 Matthias Clasen <maclas@gmx.de>
* gtk/gtkuimanager.c: Change the XML format:
<Root> element is replaced by <ui>,
<menu> element is replaced by <menubar>,
<submenu> element is replaced by <menu>,
<dockitem> element is replaced by <toolbar>,
<popups> element is gone,
verb attribute is replaced by action,
name defaults to action or the element name.
* gtk/gtkactiongroup.[hc]: Replace GtkActionGroupEntry by GtkActionEntry
and GtkRadioActionEntry. GtkActionEntry is simplified by removing
the user_data, entry_type and extra_data fields, GtkRadioActionEntry is
further simplified by removing the callback. The user_data can now be
specified as an argument to gtk_action_group_add_actions(). There is
a new method gtk_action_group_add_radio_actions(), which is similar
to gtk_action_group_add_actions(), but takes GtkRadioActionEntrys
and a callback parameter in addition to the user_data. The callback
is connected to the ::changed signal of the first group member.
There are _full() variants taking a GDestroyNotify of
gtk_action_group_add_[radio_]actions().
* gtk/gtkradioaction.[hc]: Add a ::changed signal which gets emitted
on every member of the radio group when the active member is changed.
Add an integer property "value", and a getter for the value of "value"
on the currently active group member.
* tests/testactions.c:
* tests/testmerge.c:
* tests/merge-[123].ui:
* demos/gtk-demo/appwindow.c: Adjust to these changes.
* gtk/gtktoolbar.c (gtk_toolbar_append_element): Trivial doc fix.
2003-08-27 22:22:28 +00:00
|
|
|
gtk_action_group_add_actions (GtkActionGroup *action_group,
|
|
|
|
GtkActionEntry *entries,
|
|
|
|
guint n_entries,
|
|
|
|
gpointer user_data)
|
|
|
|
{
|
|
|
|
gtk_action_group_add_actions_full (action_group,
|
|
|
|
entries, n_entries,
|
|
|
|
user_data, NULL);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* gtk_action_group_add_actions_full:
|
|
|
|
* @action_group: the action group
|
|
|
|
* @entries: an array of action descriptions
|
|
|
|
* @n_entries: the number of entries
|
|
|
|
* @user_data: data to pass to the action callbacks
|
|
|
|
* @destroy: destroy notification callback for @user_data
|
|
|
|
*
|
|
|
|
* This variant of gtk_action_group_add_actions() adds a #GDestroyNotify
|
|
|
|
* callback for @user_data.
|
|
|
|
*
|
|
|
|
* Since: 2.4
|
|
|
|
*/
|
|
|
|
void
|
|
|
|
gtk_action_group_add_actions_full (GtkActionGroup *action_group,
|
|
|
|
GtkActionEntry *entries,
|
|
|
|
guint n_entries,
|
|
|
|
gpointer user_data,
|
|
|
|
GDestroyNotify destroy)
|
2003-08-24 19:58:30 +00:00
|
|
|
{
|
2003-12-31 01:05:57 +00:00
|
|
|
|
|
|
|
/* Keep this in sync with the other
|
|
|
|
* gtk_action_group_add_..._actions_full() functions.
|
|
|
|
*/
|
2003-08-24 19:58:30 +00:00
|
|
|
guint i;
|
2003-08-25 18:43:14 +00:00
|
|
|
GtkTranslateFunc translate_func;
|
|
|
|
gpointer translate_data;
|
|
|
|
|
2003-08-24 23:11:14 +00:00
|
|
|
g_return_if_fail (GTK_IS_ACTION_GROUP (action_group));
|
2003-08-25 18:43:14 +00:00
|
|
|
|
|
|
|
translate_func = action_group->private_data->translate_func;
|
2003-08-25 22:56:02 +00:00
|
|
|
translate_data = action_group->private_data->translate_data;
|
2003-08-24 19:58:30 +00:00
|
|
|
|
|
|
|
for (i = 0; i < n_entries; i++)
|
|
|
|
{
|
|
|
|
GtkAction *action;
|
2004-01-02 23:14:28 +00:00
|
|
|
const gchar *label;
|
|
|
|
const gchar *tooltip;
|
2003-08-24 19:58:30 +00:00
|
|
|
|
2003-09-15 19:51:55 +00:00
|
|
|
if (translate_func)
|
|
|
|
{
|
|
|
|
label = translate_func (entries[i].label, translate_data);
|
|
|
|
tooltip = translate_func (entries[i].tooltip, translate_data);
|
|
|
|
}
|
Change the XML format: <Root> element is replaced by <ui>, <menu> element
2003-08-28 Matthias Clasen <maclas@gmx.de>
* gtk/gtkuimanager.c: Change the XML format:
<Root> element is replaced by <ui>,
<menu> element is replaced by <menubar>,
<submenu> element is replaced by <menu>,
<dockitem> element is replaced by <toolbar>,
<popups> element is gone,
verb attribute is replaced by action,
name defaults to action or the element name.
* gtk/gtkactiongroup.[hc]: Replace GtkActionGroupEntry by GtkActionEntry
and GtkRadioActionEntry. GtkActionEntry is simplified by removing
the user_data, entry_type and extra_data fields, GtkRadioActionEntry is
further simplified by removing the callback. The user_data can now be
specified as an argument to gtk_action_group_add_actions(). There is
a new method gtk_action_group_add_radio_actions(), which is similar
to gtk_action_group_add_actions(), but takes GtkRadioActionEntrys
and a callback parameter in addition to the user_data. The callback
is connected to the ::changed signal of the first group member.
There are _full() variants taking a GDestroyNotify of
gtk_action_group_add_[radio_]actions().
* gtk/gtkradioaction.[hc]: Add a ::changed signal which gets emitted
on every member of the radio group when the active member is changed.
Add an integer property "value", and a getter for the value of "value"
on the currently active group member.
* tests/testactions.c:
* tests/testmerge.c:
* tests/merge-[123].ui:
* demos/gtk-demo/appwindow.c: Adjust to these changes.
* gtk/gtktoolbar.c (gtk_toolbar_append_element): Trivial doc fix.
2003-08-27 22:22:28 +00:00
|
|
|
else
|
2003-09-15 19:51:55 +00:00
|
|
|
{
|
|
|
|
label = entries[i].label;
|
|
|
|
tooltip = entries[i].tooltip;
|
|
|
|
}
|
|
|
|
|
2004-01-07 21:54:33 +00:00
|
|
|
action = gtk_action_new (entries[i].name,
|
|
|
|
label,
|
|
|
|
tooltip,
|
|
|
|
entries[i].stock_id);
|
2003-09-15 19:51:55 +00:00
|
|
|
|
|
|
|
if (entries[i].callback)
|
|
|
|
g_signal_connect_data (action, "activate",
|
|
|
|
entries[i].callback,
|
|
|
|
user_data, (GClosureNotify)destroy, 0);
|
|
|
|
|
2004-01-07 22:02:02 +00:00
|
|
|
gtk_action_group_add_action_with_accel (action_group,
|
|
|
|
action,
|
|
|
|
entries[i].accelerator);
|
2003-09-15 19:51:55 +00:00
|
|
|
g_object_unref (action);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* gtk_action_group_add_toggle_actions:
|
|
|
|
* @action_group: the action group
|
|
|
|
* @entries: an array of toggle action descriptions
|
|
|
|
* @n_entries: the number of entries
|
|
|
|
* @user_data: data to pass to the action callbacks
|
|
|
|
*
|
|
|
|
* This is a convenience function to create a number of toggle actions and add them
|
|
|
|
* to the action group.
|
|
|
|
*
|
|
|
|
* The "activate" signals of the actions are connected to the callbacks and
|
|
|
|
* their accel paths are set to
|
|
|
|
* <literal><Actions>/<replaceable>group-name</replaceable>/<replaceable>action-name</replaceable></literal>.
|
|
|
|
*
|
|
|
|
* Since: 2.4
|
|
|
|
*/
|
|
|
|
void
|
|
|
|
gtk_action_group_add_toggle_actions (GtkActionGroup *action_group,
|
|
|
|
GtkToggleActionEntry *entries,
|
|
|
|
guint n_entries,
|
|
|
|
gpointer user_data)
|
|
|
|
{
|
|
|
|
gtk_action_group_add_toggle_actions_full (action_group,
|
|
|
|
entries, n_entries,
|
|
|
|
user_data, NULL);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* gtk_action_group_add_toggle_actions_full:
|
|
|
|
* @action_group: the action group
|
|
|
|
* @entries: an array of toggle action descriptions
|
|
|
|
* @n_entries: the number of entries
|
|
|
|
* @user_data: data to pass to the action callbacks
|
|
|
|
* @destroy: destroy notification callback for @user_data
|
|
|
|
*
|
|
|
|
* This variant of gtk_action_group_add_toggle_actions() adds a
|
|
|
|
* #GDestroyNotify callback for @user_data.
|
|
|
|
*
|
|
|
|
* Since: 2.4
|
|
|
|
*/
|
|
|
|
void
|
|
|
|
gtk_action_group_add_toggle_actions_full (GtkActionGroup *action_group,
|
|
|
|
GtkToggleActionEntry *entries,
|
|
|
|
guint n_entries,
|
|
|
|
gpointer user_data,
|
|
|
|
GDestroyNotify destroy)
|
|
|
|
{
|
2003-12-31 01:05:57 +00:00
|
|
|
/* Keep this in sync with the other
|
|
|
|
* gtk_action_group_add_..._actions_full() functions.
|
|
|
|
*/
|
2003-09-15 19:51:55 +00:00
|
|
|
guint i;
|
|
|
|
GtkTranslateFunc translate_func;
|
|
|
|
gpointer translate_data;
|
|
|
|
|
|
|
|
g_return_if_fail (GTK_IS_ACTION_GROUP (action_group));
|
|
|
|
|
|
|
|
translate_func = action_group->private_data->translate_func;
|
|
|
|
translate_data = action_group->private_data->translate_data;
|
|
|
|
|
|
|
|
for (i = 0; i < n_entries; i++)
|
|
|
|
{
|
2004-01-07 21:54:33 +00:00
|
|
|
GtkToggleAction *action;
|
2004-01-02 23:14:28 +00:00
|
|
|
const gchar *label;
|
|
|
|
const gchar *tooltip;
|
2003-08-24 19:58:30 +00:00
|
|
|
|
2003-08-24 23:11:14 +00:00
|
|
|
if (translate_func)
|
|
|
|
{
|
|
|
|
label = translate_func (entries[i].label, translate_data);
|
|
|
|
tooltip = translate_func (entries[i].tooltip, translate_data);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
label = entries[i].label;
|
|
|
|
tooltip = entries[i].tooltip;
|
|
|
|
}
|
|
|
|
|
2004-01-07 21:54:33 +00:00
|
|
|
action = gtk_toggle_action_new (entries[i].name,
|
|
|
|
label,
|
|
|
|
tooltip,
|
|
|
|
entries[i].stock_id);
|
2003-08-24 19:58:30 +00:00
|
|
|
|
2004-01-07 21:54:33 +00:00
|
|
|
gtk_toggle_action_set_active (action, entries[i].is_active);
|
2003-09-15 19:51:55 +00:00
|
|
|
|
Change the XML format: <Root> element is replaced by <ui>, <menu> element
2003-08-28 Matthias Clasen <maclas@gmx.de>
* gtk/gtkuimanager.c: Change the XML format:
<Root> element is replaced by <ui>,
<menu> element is replaced by <menubar>,
<submenu> element is replaced by <menu>,
<dockitem> element is replaced by <toolbar>,
<popups> element is gone,
verb attribute is replaced by action,
name defaults to action or the element name.
* gtk/gtkactiongroup.[hc]: Replace GtkActionGroupEntry by GtkActionEntry
and GtkRadioActionEntry. GtkActionEntry is simplified by removing
the user_data, entry_type and extra_data fields, GtkRadioActionEntry is
further simplified by removing the callback. The user_data can now be
specified as an argument to gtk_action_group_add_actions(). There is
a new method gtk_action_group_add_radio_actions(), which is similar
to gtk_action_group_add_actions(), but takes GtkRadioActionEntrys
and a callback parameter in addition to the user_data. The callback
is connected to the ::changed signal of the first group member.
There are _full() variants taking a GDestroyNotify of
gtk_action_group_add_[radio_]actions().
* gtk/gtkradioaction.[hc]: Add a ::changed signal which gets emitted
on every member of the radio group when the active member is changed.
Add an integer property "value", and a getter for the value of "value"
on the currently active group member.
* tests/testactions.c:
* tests/testmerge.c:
* tests/merge-[123].ui:
* demos/gtk-demo/appwindow.c: Adjust to these changes.
* gtk/gtktoolbar.c (gtk_toolbar_append_element): Trivial doc fix.
2003-08-27 22:22:28 +00:00
|
|
|
if (entries[i].callback)
|
|
|
|
g_signal_connect_data (action, "activate",
|
|
|
|
entries[i].callback,
|
|
|
|
user_data, (GClosureNotify)destroy, 0);
|
|
|
|
|
2004-01-07 21:54:33 +00:00
|
|
|
gtk_action_group_add_action_with_accel (action_group,
|
2004-01-12 22:45:45 +00:00
|
|
|
GTK_ACTION (action),
|
2004-01-07 22:02:02 +00:00
|
|
|
entries[i].accelerator);
|
Change the XML format: <Root> element is replaced by <ui>, <menu> element
2003-08-28 Matthias Clasen <maclas@gmx.de>
* gtk/gtkuimanager.c: Change the XML format:
<Root> element is replaced by <ui>,
<menu> element is replaced by <menubar>,
<submenu> element is replaced by <menu>,
<dockitem> element is replaced by <toolbar>,
<popups> element is gone,
verb attribute is replaced by action,
name defaults to action or the element name.
* gtk/gtkactiongroup.[hc]: Replace GtkActionGroupEntry by GtkActionEntry
and GtkRadioActionEntry. GtkActionEntry is simplified by removing
the user_data, entry_type and extra_data fields, GtkRadioActionEntry is
further simplified by removing the callback. The user_data can now be
specified as an argument to gtk_action_group_add_actions(). There is
a new method gtk_action_group_add_radio_actions(), which is similar
to gtk_action_group_add_actions(), but takes GtkRadioActionEntrys
and a callback parameter in addition to the user_data. The callback
is connected to the ::changed signal of the first group member.
There are _full() variants taking a GDestroyNotify of
gtk_action_group_add_[radio_]actions().
* gtk/gtkradioaction.[hc]: Add a ::changed signal which gets emitted
on every member of the radio group when the active member is changed.
Add an integer property "value", and a getter for the value of "value"
on the currently active group member.
* tests/testactions.c:
* tests/testmerge.c:
* tests/merge-[123].ui:
* demos/gtk-demo/appwindow.c: Adjust to these changes.
* gtk/gtktoolbar.c (gtk_toolbar_append_element): Trivial doc fix.
2003-08-27 22:22:28 +00:00
|
|
|
g_object_unref (action);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* gtk_action_group_add_radio_actions:
|
|
|
|
* @action_group: the action group
|
|
|
|
* @entries: an array of radio action descriptions
|
|
|
|
* @n_entries: the number of entries
|
2003-09-15 19:51:55 +00:00
|
|
|
* @value: the value of the action to activate initially, or -1 if
|
|
|
|
* no action should be activated
|
Change the XML format: <Root> element is replaced by <ui>, <menu> element
2003-08-28 Matthias Clasen <maclas@gmx.de>
* gtk/gtkuimanager.c: Change the XML format:
<Root> element is replaced by <ui>,
<menu> element is replaced by <menubar>,
<submenu> element is replaced by <menu>,
<dockitem> element is replaced by <toolbar>,
<popups> element is gone,
verb attribute is replaced by action,
name defaults to action or the element name.
* gtk/gtkactiongroup.[hc]: Replace GtkActionGroupEntry by GtkActionEntry
and GtkRadioActionEntry. GtkActionEntry is simplified by removing
the user_data, entry_type and extra_data fields, GtkRadioActionEntry is
further simplified by removing the callback. The user_data can now be
specified as an argument to gtk_action_group_add_actions(). There is
a new method gtk_action_group_add_radio_actions(), which is similar
to gtk_action_group_add_actions(), but takes GtkRadioActionEntrys
and a callback parameter in addition to the user_data. The callback
is connected to the ::changed signal of the first group member.
There are _full() variants taking a GDestroyNotify of
gtk_action_group_add_[radio_]actions().
* gtk/gtkradioaction.[hc]: Add a ::changed signal which gets emitted
on every member of the radio group when the active member is changed.
Add an integer property "value", and a getter for the value of "value"
on the currently active group member.
* tests/testactions.c:
* tests/testmerge.c:
* tests/merge-[123].ui:
* demos/gtk-demo/appwindow.c: Adjust to these changes.
* gtk/gtktoolbar.c (gtk_toolbar_append_element): Trivial doc fix.
2003-08-27 22:22:28 +00:00
|
|
|
* @on_change: the callback to connect to the changed signal
|
|
|
|
* @user_data: data to pass to the action callbacks
|
|
|
|
*
|
2003-09-04 00:49:37 +00:00
|
|
|
* This is a convenience routine to create a group of radio actions and
|
|
|
|
* add them to the action group.
|
|
|
|
*
|
2003-09-15 19:51:55 +00:00
|
|
|
* The "changed" signal of the first radio action is connected to the
|
|
|
|
* @on_change callback and the accel paths of the actions are set to
|
2003-09-04 00:49:37 +00:00
|
|
|
* <literal><Actions>/<replaceable>group-name</replaceable>/<replaceable>action-name</replaceable></literal>.
|
Change the XML format: <Root> element is replaced by <ui>, <menu> element
2003-08-28 Matthias Clasen <maclas@gmx.de>
* gtk/gtkuimanager.c: Change the XML format:
<Root> element is replaced by <ui>,
<menu> element is replaced by <menubar>,
<submenu> element is replaced by <menu>,
<dockitem> element is replaced by <toolbar>,
<popups> element is gone,
verb attribute is replaced by action,
name defaults to action or the element name.
* gtk/gtkactiongroup.[hc]: Replace GtkActionGroupEntry by GtkActionEntry
and GtkRadioActionEntry. GtkActionEntry is simplified by removing
the user_data, entry_type and extra_data fields, GtkRadioActionEntry is
further simplified by removing the callback. The user_data can now be
specified as an argument to gtk_action_group_add_actions(). There is
a new method gtk_action_group_add_radio_actions(), which is similar
to gtk_action_group_add_actions(), but takes GtkRadioActionEntrys
and a callback parameter in addition to the user_data. The callback
is connected to the ::changed signal of the first group member.
There are _full() variants taking a GDestroyNotify of
gtk_action_group_add_[radio_]actions().
* gtk/gtkradioaction.[hc]: Add a ::changed signal which gets emitted
on every member of the radio group when the active member is changed.
Add an integer property "value", and a getter for the value of "value"
on the currently active group member.
* tests/testactions.c:
* tests/testmerge.c:
* tests/merge-[123].ui:
* demos/gtk-demo/appwindow.c: Adjust to these changes.
* gtk/gtktoolbar.c (gtk_toolbar_append_element): Trivial doc fix.
2003-08-27 22:22:28 +00:00
|
|
|
*
|
|
|
|
* Since: 2.4
|
|
|
|
**/
|
|
|
|
void
|
|
|
|
gtk_action_group_add_radio_actions (GtkActionGroup *action_group,
|
|
|
|
GtkRadioActionEntry *entries,
|
|
|
|
guint n_entries,
|
2003-09-15 19:51:55 +00:00
|
|
|
gint value,
|
Change the XML format: <Root> element is replaced by <ui>, <menu> element
2003-08-28 Matthias Clasen <maclas@gmx.de>
* gtk/gtkuimanager.c: Change the XML format:
<Root> element is replaced by <ui>,
<menu> element is replaced by <menubar>,
<submenu> element is replaced by <menu>,
<dockitem> element is replaced by <toolbar>,
<popups> element is gone,
verb attribute is replaced by action,
name defaults to action or the element name.
* gtk/gtkactiongroup.[hc]: Replace GtkActionGroupEntry by GtkActionEntry
and GtkRadioActionEntry. GtkActionEntry is simplified by removing
the user_data, entry_type and extra_data fields, GtkRadioActionEntry is
further simplified by removing the callback. The user_data can now be
specified as an argument to gtk_action_group_add_actions(). There is
a new method gtk_action_group_add_radio_actions(), which is similar
to gtk_action_group_add_actions(), but takes GtkRadioActionEntrys
and a callback parameter in addition to the user_data. The callback
is connected to the ::changed signal of the first group member.
There are _full() variants taking a GDestroyNotify of
gtk_action_group_add_[radio_]actions().
* gtk/gtkradioaction.[hc]: Add a ::changed signal which gets emitted
on every member of the radio group when the active member is changed.
Add an integer property "value", and a getter for the value of "value"
on the currently active group member.
* tests/testactions.c:
* tests/testmerge.c:
* tests/merge-[123].ui:
* demos/gtk-demo/appwindow.c: Adjust to these changes.
* gtk/gtktoolbar.c (gtk_toolbar_append_element): Trivial doc fix.
2003-08-27 22:22:28 +00:00
|
|
|
GCallback on_change,
|
|
|
|
gpointer user_data)
|
|
|
|
{
|
|
|
|
gtk_action_group_add_radio_actions_full (action_group,
|
|
|
|
entries, n_entries,
|
2003-09-15 19:51:55 +00:00
|
|
|
value,
|
Change the XML format: <Root> element is replaced by <ui>, <menu> element
2003-08-28 Matthias Clasen <maclas@gmx.de>
* gtk/gtkuimanager.c: Change the XML format:
<Root> element is replaced by <ui>,
<menu> element is replaced by <menubar>,
<submenu> element is replaced by <menu>,
<dockitem> element is replaced by <toolbar>,
<popups> element is gone,
verb attribute is replaced by action,
name defaults to action or the element name.
* gtk/gtkactiongroup.[hc]: Replace GtkActionGroupEntry by GtkActionEntry
and GtkRadioActionEntry. GtkActionEntry is simplified by removing
the user_data, entry_type and extra_data fields, GtkRadioActionEntry is
further simplified by removing the callback. The user_data can now be
specified as an argument to gtk_action_group_add_actions(). There is
a new method gtk_action_group_add_radio_actions(), which is similar
to gtk_action_group_add_actions(), but takes GtkRadioActionEntrys
and a callback parameter in addition to the user_data. The callback
is connected to the ::changed signal of the first group member.
There are _full() variants taking a GDestroyNotify of
gtk_action_group_add_[radio_]actions().
* gtk/gtkradioaction.[hc]: Add a ::changed signal which gets emitted
on every member of the radio group when the active member is changed.
Add an integer property "value", and a getter for the value of "value"
on the currently active group member.
* tests/testactions.c:
* tests/testmerge.c:
* tests/merge-[123].ui:
* demos/gtk-demo/appwindow.c: Adjust to these changes.
* gtk/gtktoolbar.c (gtk_toolbar_append_element): Trivial doc fix.
2003-08-27 22:22:28 +00:00
|
|
|
on_change, user_data, NULL);
|
|
|
|
}
|
|
|
|
|
2003-08-30 22:26:32 +00:00
|
|
|
/**
|
|
|
|
* gtk_action_group_add_radio_actions_full:
|
|
|
|
* @action_group: the action group
|
|
|
|
* @entries: an array of radio action descriptions
|
|
|
|
* @n_entries: the number of entries
|
2003-09-15 19:51:55 +00:00
|
|
|
* @value: the value of the action to activate initially, or -1 if
|
|
|
|
* no action should be activated
|
2003-08-30 22:26:32 +00:00
|
|
|
* @on_change: the callback to connect to the changed signal
|
|
|
|
* @user_data: data to pass to the action callbacks
|
|
|
|
* @destroy: destroy notification callback for @user_data
|
|
|
|
*
|
|
|
|
* This variant of gtk_action_group_add_radio_actions() adds a
|
|
|
|
* #GDestroyNotify callback for @user_data.
|
|
|
|
*
|
|
|
|
* Since: 2.4
|
|
|
|
**/
|
Change the XML format: <Root> element is replaced by <ui>, <menu> element
2003-08-28 Matthias Clasen <maclas@gmx.de>
* gtk/gtkuimanager.c: Change the XML format:
<Root> element is replaced by <ui>,
<menu> element is replaced by <menubar>,
<submenu> element is replaced by <menu>,
<dockitem> element is replaced by <toolbar>,
<popups> element is gone,
verb attribute is replaced by action,
name defaults to action or the element name.
* gtk/gtkactiongroup.[hc]: Replace GtkActionGroupEntry by GtkActionEntry
and GtkRadioActionEntry. GtkActionEntry is simplified by removing
the user_data, entry_type and extra_data fields, GtkRadioActionEntry is
further simplified by removing the callback. The user_data can now be
specified as an argument to gtk_action_group_add_actions(). There is
a new method gtk_action_group_add_radio_actions(), which is similar
to gtk_action_group_add_actions(), but takes GtkRadioActionEntrys
and a callback parameter in addition to the user_data. The callback
is connected to the ::changed signal of the first group member.
There are _full() variants taking a GDestroyNotify of
gtk_action_group_add_[radio_]actions().
* gtk/gtkradioaction.[hc]: Add a ::changed signal which gets emitted
on every member of the radio group when the active member is changed.
Add an integer property "value", and a getter for the value of "value"
on the currently active group member.
* tests/testactions.c:
* tests/testmerge.c:
* tests/merge-[123].ui:
* demos/gtk-demo/appwindow.c: Adjust to these changes.
* gtk/gtktoolbar.c (gtk_toolbar_append_element): Trivial doc fix.
2003-08-27 22:22:28 +00:00
|
|
|
void
|
|
|
|
gtk_action_group_add_radio_actions_full (GtkActionGroup *action_group,
|
|
|
|
GtkRadioActionEntry *entries,
|
|
|
|
guint n_entries,
|
2003-09-15 19:51:55 +00:00
|
|
|
gint value,
|
Change the XML format: <Root> element is replaced by <ui>, <menu> element
2003-08-28 Matthias Clasen <maclas@gmx.de>
* gtk/gtkuimanager.c: Change the XML format:
<Root> element is replaced by <ui>,
<menu> element is replaced by <menubar>,
<submenu> element is replaced by <menu>,
<dockitem> element is replaced by <toolbar>,
<popups> element is gone,
verb attribute is replaced by action,
name defaults to action or the element name.
* gtk/gtkactiongroup.[hc]: Replace GtkActionGroupEntry by GtkActionEntry
and GtkRadioActionEntry. GtkActionEntry is simplified by removing
the user_data, entry_type and extra_data fields, GtkRadioActionEntry is
further simplified by removing the callback. The user_data can now be
specified as an argument to gtk_action_group_add_actions(). There is
a new method gtk_action_group_add_radio_actions(), which is similar
to gtk_action_group_add_actions(), but takes GtkRadioActionEntrys
and a callback parameter in addition to the user_data. The callback
is connected to the ::changed signal of the first group member.
There are _full() variants taking a GDestroyNotify of
gtk_action_group_add_[radio_]actions().
* gtk/gtkradioaction.[hc]: Add a ::changed signal which gets emitted
on every member of the radio group when the active member is changed.
Add an integer property "value", and a getter for the value of "value"
on the currently active group member.
* tests/testactions.c:
* tests/testmerge.c:
* tests/merge-[123].ui:
* demos/gtk-demo/appwindow.c: Adjust to these changes.
* gtk/gtktoolbar.c (gtk_toolbar_append_element): Trivial doc fix.
2003-08-27 22:22:28 +00:00
|
|
|
GCallback on_change,
|
|
|
|
gpointer user_data,
|
|
|
|
GDestroyNotify destroy)
|
|
|
|
{
|
2003-12-31 01:05:57 +00:00
|
|
|
/* Keep this in sync with the other
|
|
|
|
* gtk_action_group_add_..._actions_full() functions.
|
|
|
|
*/
|
Change the XML format: <Root> element is replaced by <ui>, <menu> element
2003-08-28 Matthias Clasen <maclas@gmx.de>
* gtk/gtkuimanager.c: Change the XML format:
<Root> element is replaced by <ui>,
<menu> element is replaced by <menubar>,
<submenu> element is replaced by <menu>,
<dockitem> element is replaced by <toolbar>,
<popups> element is gone,
verb attribute is replaced by action,
name defaults to action or the element name.
* gtk/gtkactiongroup.[hc]: Replace GtkActionGroupEntry by GtkActionEntry
and GtkRadioActionEntry. GtkActionEntry is simplified by removing
the user_data, entry_type and extra_data fields, GtkRadioActionEntry is
further simplified by removing the callback. The user_data can now be
specified as an argument to gtk_action_group_add_actions(). There is
a new method gtk_action_group_add_radio_actions(), which is similar
to gtk_action_group_add_actions(), but takes GtkRadioActionEntrys
and a callback parameter in addition to the user_data. The callback
is connected to the ::changed signal of the first group member.
There are _full() variants taking a GDestroyNotify of
gtk_action_group_add_[radio_]actions().
* gtk/gtkradioaction.[hc]: Add a ::changed signal which gets emitted
on every member of the radio group when the active member is changed.
Add an integer property "value", and a getter for the value of "value"
on the currently active group member.
* tests/testactions.c:
* tests/testmerge.c:
* tests/merge-[123].ui:
* demos/gtk-demo/appwindow.c: Adjust to these changes.
* gtk/gtktoolbar.c (gtk_toolbar_append_element): Trivial doc fix.
2003-08-27 22:22:28 +00:00
|
|
|
guint i;
|
|
|
|
GtkTranslateFunc translate_func;
|
|
|
|
gpointer translate_data;
|
2003-08-29 20:21:01 +00:00
|
|
|
GSList *group = NULL;
|
2004-01-12 22:45:45 +00:00
|
|
|
GtkRadioAction *first_action = NULL;
|
Change the XML format: <Root> element is replaced by <ui>, <menu> element
2003-08-28 Matthias Clasen <maclas@gmx.de>
* gtk/gtkuimanager.c: Change the XML format:
<Root> element is replaced by <ui>,
<menu> element is replaced by <menubar>,
<submenu> element is replaced by <menu>,
<dockitem> element is replaced by <toolbar>,
<popups> element is gone,
verb attribute is replaced by action,
name defaults to action or the element name.
* gtk/gtkactiongroup.[hc]: Replace GtkActionGroupEntry by GtkActionEntry
and GtkRadioActionEntry. GtkActionEntry is simplified by removing
the user_data, entry_type and extra_data fields, GtkRadioActionEntry is
further simplified by removing the callback. The user_data can now be
specified as an argument to gtk_action_group_add_actions(). There is
a new method gtk_action_group_add_radio_actions(), which is similar
to gtk_action_group_add_actions(), but takes GtkRadioActionEntrys
and a callback parameter in addition to the user_data. The callback
is connected to the ::changed signal of the first group member.
There are _full() variants taking a GDestroyNotify of
gtk_action_group_add_[radio_]actions().
* gtk/gtkradioaction.[hc]: Add a ::changed signal which gets emitted
on every member of the radio group when the active member is changed.
Add an integer property "value", and a getter for the value of "value"
on the currently active group member.
* tests/testactions.c:
* tests/testmerge.c:
* tests/merge-[123].ui:
* demos/gtk-demo/appwindow.c: Adjust to these changes.
* gtk/gtktoolbar.c (gtk_toolbar_append_element): Trivial doc fix.
2003-08-27 22:22:28 +00:00
|
|
|
|
|
|
|
g_return_if_fail (GTK_IS_ACTION_GROUP (action_group));
|
|
|
|
|
|
|
|
translate_func = action_group->private_data->translate_func;
|
|
|
|
translate_data = action_group->private_data->translate_data;
|
|
|
|
|
|
|
|
for (i = 0; i < n_entries; i++)
|
|
|
|
{
|
2004-01-07 21:54:33 +00:00
|
|
|
GtkRadioAction *action;
|
2004-01-02 23:14:28 +00:00
|
|
|
const gchar *label;
|
|
|
|
const gchar *tooltip;
|
2003-08-29 19:28:44 +00:00
|
|
|
|
Change the XML format: <Root> element is replaced by <ui>, <menu> element
2003-08-28 Matthias Clasen <maclas@gmx.de>
* gtk/gtkuimanager.c: Change the XML format:
<Root> element is replaced by <ui>,
<menu> element is replaced by <menubar>,
<submenu> element is replaced by <menu>,
<dockitem> element is replaced by <toolbar>,
<popups> element is gone,
verb attribute is replaced by action,
name defaults to action or the element name.
* gtk/gtkactiongroup.[hc]: Replace GtkActionGroupEntry by GtkActionEntry
and GtkRadioActionEntry. GtkActionEntry is simplified by removing
the user_data, entry_type and extra_data fields, GtkRadioActionEntry is
further simplified by removing the callback. The user_data can now be
specified as an argument to gtk_action_group_add_actions(). There is
a new method gtk_action_group_add_radio_actions(), which is similar
to gtk_action_group_add_actions(), but takes GtkRadioActionEntrys
and a callback parameter in addition to the user_data. The callback
is connected to the ::changed signal of the first group member.
There are _full() variants taking a GDestroyNotify of
gtk_action_group_add_[radio_]actions().
* gtk/gtkradioaction.[hc]: Add a ::changed signal which gets emitted
on every member of the radio group when the active member is changed.
Add an integer property "value", and a getter for the value of "value"
on the currently active group member.
* tests/testactions.c:
* tests/testmerge.c:
* tests/merge-[123].ui:
* demos/gtk-demo/appwindow.c: Adjust to these changes.
* gtk/gtktoolbar.c (gtk_toolbar_append_element): Trivial doc fix.
2003-08-27 22:22:28 +00:00
|
|
|
if (translate_func)
|
|
|
|
{
|
|
|
|
label = translate_func (entries[i].label, translate_data);
|
|
|
|
tooltip = translate_func (entries[i].tooltip, translate_data);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
label = entries[i].label;
|
|
|
|
tooltip = entries[i].tooltip;
|
|
|
|
}
|
|
|
|
|
2004-01-07 21:54:33 +00:00
|
|
|
action = gtk_radio_action_new (entries[i].name,
|
|
|
|
label,
|
|
|
|
tooltip,
|
|
|
|
entries[i].stock_id,
|
|
|
|
value);
|
2003-09-15 19:51:55 +00:00
|
|
|
|
Change the XML format: <Root> element is replaced by <ui>, <menu> element
2003-08-28 Matthias Clasen <maclas@gmx.de>
* gtk/gtkuimanager.c: Change the XML format:
<Root> element is replaced by <ui>,
<menu> element is replaced by <menubar>,
<submenu> element is replaced by <menu>,
<dockitem> element is replaced by <toolbar>,
<popups> element is gone,
verb attribute is replaced by action,
name defaults to action or the element name.
* gtk/gtkactiongroup.[hc]: Replace GtkActionGroupEntry by GtkActionEntry
and GtkRadioActionEntry. GtkActionEntry is simplified by removing
the user_data, entry_type and extra_data fields, GtkRadioActionEntry is
further simplified by removing the callback. The user_data can now be
specified as an argument to gtk_action_group_add_actions(). There is
a new method gtk_action_group_add_radio_actions(), which is similar
to gtk_action_group_add_actions(), but takes GtkRadioActionEntrys
and a callback parameter in addition to the user_data. The callback
is connected to the ::changed signal of the first group member.
There are _full() variants taking a GDestroyNotify of
gtk_action_group_add_[radio_]actions().
* gtk/gtkradioaction.[hc]: Add a ::changed signal which gets emitted
on every member of the radio group when the active member is changed.
Add an integer property "value", and a getter for the value of "value"
on the currently active group member.
* tests/testactions.c:
* tests/testmerge.c:
* tests/merge-[123].ui:
* demos/gtk-demo/appwindow.c: Adjust to these changes.
* gtk/gtktoolbar.c (gtk_toolbar_append_element): Trivial doc fix.
2003-08-27 22:22:28 +00:00
|
|
|
if (i == 0)
|
2003-09-15 19:51:55 +00:00
|
|
|
first_action = action;
|
|
|
|
|
2004-01-07 21:54:33 +00:00
|
|
|
gtk_radio_action_set_group (action, group);
|
|
|
|
group = gtk_radio_action_get_group (action);
|
2003-08-24 19:58:30 +00:00
|
|
|
|
2003-09-22 08:54:23 +00:00
|
|
|
if (value == entries[i].value)
|
2004-01-12 22:45:45 +00:00
|
|
|
gtk_toggle_action_set_active (GTK_TOGGLE_ACTION (action), TRUE);
|
2003-12-31 01:05:57 +00:00
|
|
|
|
2004-01-07 21:54:33 +00:00
|
|
|
gtk_action_group_add_action_with_accel (action_group,
|
2004-01-12 22:45:45 +00:00
|
|
|
GTK_ACTION (action),
|
2004-01-07 22:02:02 +00:00
|
|
|
entries[i].accelerator);
|
2003-08-24 19:58:30 +00:00
|
|
|
g_object_unref (action);
|
|
|
|
}
|
2003-09-15 19:51:55 +00:00
|
|
|
|
2003-12-26 22:23:50 +00:00
|
|
|
if (on_change && first_action)
|
2003-09-15 19:51:55 +00:00
|
|
|
g_signal_connect_data (first_action, "changed",
|
|
|
|
on_change, user_data,
|
|
|
|
(GClosureNotify)destroy, 0);
|
2003-08-24 19:58:30 +00:00
|
|
|
}
|
2003-08-24 23:11:14 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* gtk_action_group_set_translate_func:
|
|
|
|
* @action_group: a #GtkActionGroup
|
|
|
|
* @func: a #GtkTranslateFunc
|
|
|
|
* @data: data to be passed to @func and @notify
|
|
|
|
* @notify: a #GtkDestroyNotify function to be called when @action_group is
|
|
|
|
* destroyed and when the translation function is changed again
|
|
|
|
*
|
|
|
|
* Sets a function to be used for translating the @label and @tooltip of
|
|
|
|
* #GtkActionGroupEntry<!-- -->s added by gtk_action_group_add_actions().
|
|
|
|
*
|
|
|
|
* If you're using gettext(), it is enough to set the translation domain
|
|
|
|
* with gtk_action_group_set_translation_domain().
|
|
|
|
*
|
|
|
|
* Since: 2.4
|
|
|
|
**/
|
|
|
|
void
|
|
|
|
gtk_action_group_set_translate_func (GtkActionGroup *action_group,
|
|
|
|
GtkTranslateFunc func,
|
|
|
|
gpointer data,
|
|
|
|
GtkDestroyNotify notify)
|
|
|
|
{
|
|
|
|
g_return_if_fail (GTK_IS_ACTION_GROUP (action_group));
|
|
|
|
|
|
|
|
if (action_group->private_data->translate_notify)
|
|
|
|
action_group->private_data->translate_notify (action_group->private_data->translate_data);
|
|
|
|
|
|
|
|
action_group->private_data->translate_func = func;
|
|
|
|
action_group->private_data->translate_data = data;
|
|
|
|
action_group->private_data->translate_notify = notify;
|
|
|
|
}
|
|
|
|
|
|
|
|
static gchar *
|
|
|
|
dgettext_swapped (const gchar *msgid,
|
|
|
|
const gchar *domainname)
|
|
|
|
{
|
|
|
|
return dgettext (domainname, msgid);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* gtk_action_group_set_translation_domain:
|
|
|
|
* @action_group: a #GtkActionGroup
|
|
|
|
* @domain: the translation domain to use for dgettext() calls
|
|
|
|
*
|
|
|
|
* Sets the translation domain and uses dgettext() for translating the
|
Change the XML format: <Root> element is replaced by <ui>, <menu> element
2003-08-28 Matthias Clasen <maclas@gmx.de>
* gtk/gtkuimanager.c: Change the XML format:
<Root> element is replaced by <ui>,
<menu> element is replaced by <menubar>,
<submenu> element is replaced by <menu>,
<dockitem> element is replaced by <toolbar>,
<popups> element is gone,
verb attribute is replaced by action,
name defaults to action or the element name.
* gtk/gtkactiongroup.[hc]: Replace GtkActionGroupEntry by GtkActionEntry
and GtkRadioActionEntry. GtkActionEntry is simplified by removing
the user_data, entry_type and extra_data fields, GtkRadioActionEntry is
further simplified by removing the callback. The user_data can now be
specified as an argument to gtk_action_group_add_actions(). There is
a new method gtk_action_group_add_radio_actions(), which is similar
to gtk_action_group_add_actions(), but takes GtkRadioActionEntrys
and a callback parameter in addition to the user_data. The callback
is connected to the ::changed signal of the first group member.
There are _full() variants taking a GDestroyNotify of
gtk_action_group_add_[radio_]actions().
* gtk/gtkradioaction.[hc]: Add a ::changed signal which gets emitted
on every member of the radio group when the active member is changed.
Add an integer property "value", and a getter for the value of "value"
on the currently active group member.
* tests/testactions.c:
* tests/testmerge.c:
* tests/merge-[123].ui:
* demos/gtk-demo/appwindow.c: Adjust to these changes.
* gtk/gtktoolbar.c (gtk_toolbar_append_element): Trivial doc fix.
2003-08-27 22:22:28 +00:00
|
|
|
* @label and @tooltip of #GtkActionEntry<!-- -->s added by
|
2003-08-24 23:11:14 +00:00
|
|
|
* gtk_action_group_add_actions().
|
|
|
|
*
|
|
|
|
* If you're not using gettext() for localization, see
|
|
|
|
* gtk_action_group_set_translate_func().
|
|
|
|
*
|
|
|
|
* Since: 2.4
|
|
|
|
**/
|
|
|
|
void
|
|
|
|
gtk_action_group_set_translation_domain (GtkActionGroup *action_group,
|
|
|
|
const gchar *domain)
|
|
|
|
{
|
|
|
|
g_return_if_fail (GTK_IS_ACTION_GROUP (action_group));
|
|
|
|
|
|
|
|
gtk_action_group_set_translate_func (action_group,
|
2003-08-25 22:56:02 +00:00
|
|
|
(GtkTranslateFunc)dgettext_swapped,
|
2003-08-24 23:11:14 +00:00
|
|
|
g_strdup (domain),
|
|
|
|
g_free);
|
|
|
|
}
|
2004-01-12 22:45:45 +00:00
|
|
|
|
|
|
|
/* Protected for use by GtkAction */
|
|
|
|
void
|
|
|
|
_gtk_action_group_emit_connect_proxy (GtkActionGroup *action_group,
|
|
|
|
GtkAction *action,
|
|
|
|
GtkWidget *proxy)
|
|
|
|
{
|
|
|
|
g_signal_emit (action_group, action_group_signals[CONNECT_PROXY], 0,
|
|
|
|
action, proxy);
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
_gtk_action_group_emit_disconnect_proxy (GtkActionGroup *action_group,
|
|
|
|
GtkAction *action,
|
|
|
|
GtkWidget *proxy)
|
|
|
|
{
|
|
|
|
g_signal_emit (action_group, action_group_signals[DISCONNECT_PROXY], 0,
|
|
|
|
action, proxy);
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
_gtk_action_group_emit_pre_activate (GtkActionGroup *action_group,
|
|
|
|
GtkAction *action)
|
|
|
|
{
|
|
|
|
g_signal_emit (action_group, action_group_signals[PRE_ACTIVATE], 0, action);
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
_gtk_action_group_emit_post_activate (GtkActionGroup *action_group,
|
|
|
|
GtkAction *action)
|
|
|
|
{
|
|
|
|
g_signal_emit (action_group, action_group_signals[POST_ACTIVATE], 0, action);
|
|
|
|
}
|