2003-08-24 19:58:30 +00:00
|
|
|
/*
|
2008-07-01 22:57:50 +00:00
|
|
|
* GTK - The GIMP Toolkit
|
2003-08-24 19:58:30 +00:00
|
|
|
* 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/.
|
|
|
|
*/
|
|
|
|
|
2010-07-03 21:16:39 +00:00
|
|
|
/**
|
|
|
|
* SECTION:gtkactiongroup
|
|
|
|
* @Short_description: A group of actions
|
|
|
|
* @Title: GtkActionGroup
|
|
|
|
*
|
|
|
|
* Actions are organised into groups. An action group is essentially a
|
|
|
|
* map from names to #GtkAction objects.
|
|
|
|
*
|
|
|
|
* All actions that would make sense to use in a particular context
|
|
|
|
* should be in a single group. Multiple action groups may be used for a
|
|
|
|
* particular user interface. In fact, it is expected that most nontrivial
|
|
|
|
* applications will make use of multiple groups. For example, in an
|
|
|
|
* application that can edit multiple documents, one group holding global
|
|
|
|
* actions (e.g. quit, about, new), and one group per document holding
|
|
|
|
* actions that act on that document (eg. save, cut/copy/paste, etc). Each
|
|
|
|
* window's menus would be constructed from a combination of two action
|
|
|
|
* groups.
|
|
|
|
* </para>
|
|
|
|
* <para id="Action-Accel">
|
|
|
|
* Accelerators are handled by the GTK+ accelerator map. All actions are
|
|
|
|
* assigned an accelerator path (which normally has the form
|
|
|
|
* <literal><Actions>/group-name/action-name</literal>)
|
|
|
|
* and a shortcut is associated with this accelerator path. All menuitems
|
|
|
|
* and toolitems take on this accelerator path. The GTK+ accelerator map
|
|
|
|
* code makes sure that the correct shortcut is displayed next to the menu
|
|
|
|
* item.
|
|
|
|
*
|
|
|
|
* <refsect2 id="GtkActionGroup-BUILDER-UI">
|
|
|
|
* <title>GtkActionGroup as GtkBuildable</title>
|
|
|
|
* <para>
|
|
|
|
* The #GtkActionGroup implementation of the #GtkBuildable interface accepts
|
|
|
|
* #GtkAction objects as <child> elements in UI definitions.
|
|
|
|
*
|
|
|
|
* Note that it is probably more common to define actions and action groups
|
|
|
|
* in the code, since they are directly related to what the code can do.
|
|
|
|
*
|
|
|
|
* The GtkActionGroup implementation of the GtkBuildable interface supports
|
|
|
|
* a custom <accelerator> element, which has attributes named key and
|
|
|
|
* modifiers and allows to specify accelerators. This is similar to the
|
|
|
|
* <accelerator> element of #GtkWidget, the main difference is that
|
|
|
|
* it doesn't allow you to specify a signal.
|
|
|
|
* </para>
|
|
|
|
* <example>
|
|
|
|
* <title>A #GtkDialog UI definition fragment.</title>
|
|
|
|
* <programlisting><![CDATA[
|
|
|
|
* <object class="GtkActionGroup" id="actiongroup">
|
|
|
|
* <child>
|
|
|
|
* <object class="GtkAction" id="About">
|
|
|
|
* <property name="name">About</property>
|
|
|
|
* <property name="stock_id">gtk-about</property>
|
|
|
|
* <signal handler="about_activate" name="activate"/>
|
|
|
|
* </object>
|
|
|
|
* <accelerator key="F1" modifiers="GDK_CONTROL_MASK | GDK_SHIFT_MASK"/>
|
|
|
|
* </child>
|
|
|
|
* </object>
|
|
|
|
* ]]></programlisting>
|
|
|
|
* </example>
|
|
|
|
* </refsect2>
|
|
|
|
*/
|
|
|
|
|
2008-06-22 14:28:52 +00:00
|
|
|
#include "config.h"
|
2007-07-09 13:40:10 +00:00
|
|
|
#include <string.h>
|
2003-08-24 19:58:30 +00:00
|
|
|
|
|
|
|
#include "gtkactiongroup.h"
|
Add GtkBuilder, fixes #172535
2007-06-15 Johan Dahlin <jdahlin@async.com.br>
* demos/gtk-demo/Makefile.am:
* demos/gtk-demo/builder.c: (quit_activate), (about_activate),
(do_builder):
* demos/gtk-demo/demo.ui:
* docs/reference/gtk/gtk-docs.sgml:
* docs/reference/gtk/gtk-sections.txt:
* docs/reference/gtk/gtk.types:
* docs/reference/gtk/tmpl/gtkbuildable.sgml:
* docs/reference/gtk/tmpl/gtkbuilder.sgml:
* gtk/Makefile.am:
* gtk/gtk.h:
* gtk/gtk.symbols:
* gtk/gtkaction.c: (gtk_action_buildable_init),
(gtk_action_buildable_set_name), (gtk_action_buildable_get_name):
* gtk/gtkactiongroup.c: (gtk_action_group_get_type),
(gtk_action_group_buildable_init),
(gtk_action_group_buildable_add),
(gtk_action_group_buildable_set_name),
(gtk_action_group_buildable_get_name):
* gtk/gtkbuildable.c: (gtk_buildable_get_type),
(gtk_buildable_set_name), (gtk_buildable_get_name),
(gtk_buildable_add), (gtk_buildable_set_property),
(gtk_buildable_parser_finished), (gtk_buildable_construct_child),
(gtk_buildable_custom_tag_start), (gtk_buildable_custom_tag_end),
(gtk_buildable_custom_finished),
(gtk_buildable_get_internal_child):
* gtk/gtkbuildable.h:
* gtk/gtkbuilder.c: (gtk_builder_class_init), (gtk_builder_init),
(gtk_builder_finalize), (gtk_builder_set_property),
(gtk_builder_get_property), (_gtk_builder_resolve_type_lazily),
(gtk_builder_real_get_type_from_name),
(gtk_builder_get_parameters), (gtk_builder_get_internal_child),
(_gtk_builder_construct), (_gtk_builder_add),
(apply_delayed_properties), (_gtk_builder_finish),
(gtk_builder_new), (gtk_builder_add_from_file),
(gtk_builder_add_from_string), (gtk_builder_get_object),
(object_add_to_list), (gtk_builder_get_objects),
(gtk_builder_set_translation_domain),
(gtk_builder_get_translation_domain),
(gtk_builder_connect_signals_default),
(gtk_builder_connect_signals), (gtk_builder_connect_signals_full),
(gtk_builder_value_from_string),
(gtk_builder_value_from_string_type),
(_gtk_builder_enum_from_string), (_gtk_builder_flags_from_string),
(gtk_builder_get_type_from_name), (gtk_builder_error_quark):
* gtk/gtkbuilder.h:
* gtk/gtkbuilderparser.c: (state_push), (state_peek), (state_pop),
(error_missing_attribute), (error_invalid_attribute),
(error_invalid_tag), (builder_construct), (parse_object),
(free_object_info), (_get_type_by_symbol), (parse_child),
(free_child_info), (parse_property), (free_property_info),
(parse_signal), (_free_signal_info), (parse_interface),
(create_subparser), (free_subparser), (subparser_start),
(subparser_end), (parse_custom), (start_element), (end_element),
(text), (_gtk_builder_parser_parse_buffer):
* gtk/gtkbuilderprivate.h:
* gtk/gtkcelllayout.c: (attributes_start_element),
(attributes_text_element),
(_gtk_cell_layout_buildable_custom_tag_start),
(_gtk_cell_layout_buildable_custom_tag_end),
(_gtk_cell_layout_buildable_add):
* gtk/gtkcelllayout.h:
* gtk/gtkcellview.c: (gtk_cell_view_buildable_init),
(gtk_cell_view_buildable_custom_tag_start),
(gtk_cell_view_buildable_custom_tag_end):
* gtk/gtkcolorseldialog.c:
(gtk_color_selection_dialog_buildable_interface_init),
(gtk_color_selection_dialog_buildable_get_internal_child):
* gtk/gtkcombobox.c: (gtk_combo_box_buildable_init),
(gtk_combo_box_buildable_custom_tag_start),
(gtk_combo_box_buildable_custom_tag_end):
* gtk/gtkcomboboxentry.c:
(gtk_combo_box_entry_buildable_interface_init),
(gtk_combo_box_entry_buildable_get_internal_child):
* gtk/gtkcontainer.c: (gtk_container_get_type),
(gtk_container_buildable_init), (gtk_container_buildable_add),
(gtk_container_buildable_set_child_property),
(attributes_start_element), (attributes_text_element),
(gtk_container_buildable_custom_tag_start),
(gtk_container_buildable_custom_tag_end):
* gtk/gtkdebug.h:
* gtk/gtkdialog.c: (gtk_dialog_buildable_interface_init),
(gtk_dialog_buildable_get_internal_child),
(attributes_start_element), (attributes_text_element),
(gtk_dialog_buildable_custom_tag_start),
(gtk_dialog_buildable_custom_finished):
* gtk/gtkentrycompletion.c: (gtk_entry_completion_buildable_init):
* gtk/gtkexpander.c: (gtk_expander_buildable_add),
(gtk_expander_buildable_init):
* gtk/gtkfontsel.c:
(gtk_font_selection_dialog_buildable_interface_init),
(gtk_font_selection_dialog_buildable_get_internal_child):
* gtk/gtkframe.c: (gtk_frame_buildable_init),
(gtk_frame_buildable_add):
* gtk/gtkiconview.c: (gtk_icon_view_buildable_init),
(gtk_icon_view_buildable_custom_tag_start),
(gtk_icon_view_buildable_custom_tag_end):
* gtk/gtkliststore.c: (gtk_list_store_buildable_init),
(list_store_start_element), (list_store_end_element),
(list_store_text), (gtk_list_store_buildable_custom_tag_start),
(gtk_list_store_buildable_custom_tag_end):
* gtk/gtkmain.c:
* gtk/gtknotebook.c: (gtk_notebook_buildable_init),
(gtk_notebook_buildable_add):
* gtk/gtksizegroup.c: (gtk_size_group_buildable_init),
(size_group_start_element),
(gtk_size_group_buildable_custom_tag_start),
(gtk_size_group_buildable_custom_finished):
* gtk/gtktreestore.c: (gtk_tree_store_buildable_init),
(tree_model_start_element),
(gtk_tree_store_buildable_custom_tag_start),
(gtk_tree_store_buildable_custom_finished):
* gtk/gtktreeview.c: (gtk_tree_view_buildable_init),
(gtk_tree_view_buildable_add):
* gtk/gtktreeviewcolumn.c: (gtk_tree_view_column_buildable_init):
* gtk/gtkuimanager.c: (gtk_ui_manager_buildable_init),
(gtk_ui_manager_buildable_add),
(gtk_ui_manager_buildable_construct_child),
(gtk_ui_manager_buildable_custom_tag_start),
(gtk_ui_manager_buildable_custom_tag_end):
* gtk/gtkwidget.c: (gtk_widget_get_type),
(gtk_widget_buildable_interface_init),
(gtk_widget_buildable_set_name), (gtk_widget_buildable_get_name),
(gtk_widget_buildable_set_property),
(gtk_widget_buildable_parser_finshed), (accel_group_start_element),
(gtk_widget_buildable_custom_tag_start),
(gtk_widget_buildable_custom_finshed):
* gtk/gtkwindow.c: (gtk_window_buildable_interface_init),
(gtk_window_buildable_set_property),
(gtk_window_buildable_parser_finished):
* tests/Makefile.am:
* tests/buildertest.c: (builder_new_from_string), (test_parser),
(signal_normal), (signal_after), (signal_object),
(signal_object_after), (signal_first), (signal_second),
(signal_extra), (signal_extra2), (test_connect_signals),
(test_uimanager_simple), (test_domain), (test_translation),
(test_sizegroup), (test_list_store), (test_tree_store),
(test_types), (test_spin_button), (test_notebook),
(test_construct_only_property), (test_children),
(test_child_properties), (test_treeview_column), (test_icon_view),
(test_combo_box), (test_combo_box_entry), (test_cell_view),
(test_dialog), (test_accelerators), (test_widget), (main):
Add GtkBuilder, fixes #172535
svn path=/trunk/; revision=18141
2007-06-15 17:53:46 +00:00
|
|
|
#include "gtkbuildable.h"
|
2006-03-16 15:53:36 +00:00
|
|
|
#include "gtkiconfactory.h"
|
2006-06-22 15:56:55 +00:00
|
|
|
#include "gtkicontheme.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"
|
2007-07-09 13:40:10 +00:00
|
|
|
#include "gtkbuilderprivate.h"
|
2005-03-22 02:14:55 +00:00
|
|
|
#include "gtkprivate.h"
|
2003-08-24 19:58:30 +00:00
|
|
|
#include "gtkintl.h"
|
|
|
|
|
|
|
|
|
|
|
|
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;
|
2008-06-18 09:12:32 +00:00
|
|
|
GDestroyNotify 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);
|
|
|
|
|
Add GtkBuilder, fixes #172535
2007-06-15 Johan Dahlin <jdahlin@async.com.br>
* demos/gtk-demo/Makefile.am:
* demos/gtk-demo/builder.c: (quit_activate), (about_activate),
(do_builder):
* demos/gtk-demo/demo.ui:
* docs/reference/gtk/gtk-docs.sgml:
* docs/reference/gtk/gtk-sections.txt:
* docs/reference/gtk/gtk.types:
* docs/reference/gtk/tmpl/gtkbuildable.sgml:
* docs/reference/gtk/tmpl/gtkbuilder.sgml:
* gtk/Makefile.am:
* gtk/gtk.h:
* gtk/gtk.symbols:
* gtk/gtkaction.c: (gtk_action_buildable_init),
(gtk_action_buildable_set_name), (gtk_action_buildable_get_name):
* gtk/gtkactiongroup.c: (gtk_action_group_get_type),
(gtk_action_group_buildable_init),
(gtk_action_group_buildable_add),
(gtk_action_group_buildable_set_name),
(gtk_action_group_buildable_get_name):
* gtk/gtkbuildable.c: (gtk_buildable_get_type),
(gtk_buildable_set_name), (gtk_buildable_get_name),
(gtk_buildable_add), (gtk_buildable_set_property),
(gtk_buildable_parser_finished), (gtk_buildable_construct_child),
(gtk_buildable_custom_tag_start), (gtk_buildable_custom_tag_end),
(gtk_buildable_custom_finished),
(gtk_buildable_get_internal_child):
* gtk/gtkbuildable.h:
* gtk/gtkbuilder.c: (gtk_builder_class_init), (gtk_builder_init),
(gtk_builder_finalize), (gtk_builder_set_property),
(gtk_builder_get_property), (_gtk_builder_resolve_type_lazily),
(gtk_builder_real_get_type_from_name),
(gtk_builder_get_parameters), (gtk_builder_get_internal_child),
(_gtk_builder_construct), (_gtk_builder_add),
(apply_delayed_properties), (_gtk_builder_finish),
(gtk_builder_new), (gtk_builder_add_from_file),
(gtk_builder_add_from_string), (gtk_builder_get_object),
(object_add_to_list), (gtk_builder_get_objects),
(gtk_builder_set_translation_domain),
(gtk_builder_get_translation_domain),
(gtk_builder_connect_signals_default),
(gtk_builder_connect_signals), (gtk_builder_connect_signals_full),
(gtk_builder_value_from_string),
(gtk_builder_value_from_string_type),
(_gtk_builder_enum_from_string), (_gtk_builder_flags_from_string),
(gtk_builder_get_type_from_name), (gtk_builder_error_quark):
* gtk/gtkbuilder.h:
* gtk/gtkbuilderparser.c: (state_push), (state_peek), (state_pop),
(error_missing_attribute), (error_invalid_attribute),
(error_invalid_tag), (builder_construct), (parse_object),
(free_object_info), (_get_type_by_symbol), (parse_child),
(free_child_info), (parse_property), (free_property_info),
(parse_signal), (_free_signal_info), (parse_interface),
(create_subparser), (free_subparser), (subparser_start),
(subparser_end), (parse_custom), (start_element), (end_element),
(text), (_gtk_builder_parser_parse_buffer):
* gtk/gtkbuilderprivate.h:
* gtk/gtkcelllayout.c: (attributes_start_element),
(attributes_text_element),
(_gtk_cell_layout_buildable_custom_tag_start),
(_gtk_cell_layout_buildable_custom_tag_end),
(_gtk_cell_layout_buildable_add):
* gtk/gtkcelllayout.h:
* gtk/gtkcellview.c: (gtk_cell_view_buildable_init),
(gtk_cell_view_buildable_custom_tag_start),
(gtk_cell_view_buildable_custom_tag_end):
* gtk/gtkcolorseldialog.c:
(gtk_color_selection_dialog_buildable_interface_init),
(gtk_color_selection_dialog_buildable_get_internal_child):
* gtk/gtkcombobox.c: (gtk_combo_box_buildable_init),
(gtk_combo_box_buildable_custom_tag_start),
(gtk_combo_box_buildable_custom_tag_end):
* gtk/gtkcomboboxentry.c:
(gtk_combo_box_entry_buildable_interface_init),
(gtk_combo_box_entry_buildable_get_internal_child):
* gtk/gtkcontainer.c: (gtk_container_get_type),
(gtk_container_buildable_init), (gtk_container_buildable_add),
(gtk_container_buildable_set_child_property),
(attributes_start_element), (attributes_text_element),
(gtk_container_buildable_custom_tag_start),
(gtk_container_buildable_custom_tag_end):
* gtk/gtkdebug.h:
* gtk/gtkdialog.c: (gtk_dialog_buildable_interface_init),
(gtk_dialog_buildable_get_internal_child),
(attributes_start_element), (attributes_text_element),
(gtk_dialog_buildable_custom_tag_start),
(gtk_dialog_buildable_custom_finished):
* gtk/gtkentrycompletion.c: (gtk_entry_completion_buildable_init):
* gtk/gtkexpander.c: (gtk_expander_buildable_add),
(gtk_expander_buildable_init):
* gtk/gtkfontsel.c:
(gtk_font_selection_dialog_buildable_interface_init),
(gtk_font_selection_dialog_buildable_get_internal_child):
* gtk/gtkframe.c: (gtk_frame_buildable_init),
(gtk_frame_buildable_add):
* gtk/gtkiconview.c: (gtk_icon_view_buildable_init),
(gtk_icon_view_buildable_custom_tag_start),
(gtk_icon_view_buildable_custom_tag_end):
* gtk/gtkliststore.c: (gtk_list_store_buildable_init),
(list_store_start_element), (list_store_end_element),
(list_store_text), (gtk_list_store_buildable_custom_tag_start),
(gtk_list_store_buildable_custom_tag_end):
* gtk/gtkmain.c:
* gtk/gtknotebook.c: (gtk_notebook_buildable_init),
(gtk_notebook_buildable_add):
* gtk/gtksizegroup.c: (gtk_size_group_buildable_init),
(size_group_start_element),
(gtk_size_group_buildable_custom_tag_start),
(gtk_size_group_buildable_custom_finished):
* gtk/gtktreestore.c: (gtk_tree_store_buildable_init),
(tree_model_start_element),
(gtk_tree_store_buildable_custom_tag_start),
(gtk_tree_store_buildable_custom_finished):
* gtk/gtktreeview.c: (gtk_tree_view_buildable_init),
(gtk_tree_view_buildable_add):
* gtk/gtktreeviewcolumn.c: (gtk_tree_view_column_buildable_init):
* gtk/gtkuimanager.c: (gtk_ui_manager_buildable_init),
(gtk_ui_manager_buildable_add),
(gtk_ui_manager_buildable_construct_child),
(gtk_ui_manager_buildable_custom_tag_start),
(gtk_ui_manager_buildable_custom_tag_end):
* gtk/gtkwidget.c: (gtk_widget_get_type),
(gtk_widget_buildable_interface_init),
(gtk_widget_buildable_set_name), (gtk_widget_buildable_get_name),
(gtk_widget_buildable_set_property),
(gtk_widget_buildable_parser_finshed), (accel_group_start_element),
(gtk_widget_buildable_custom_tag_start),
(gtk_widget_buildable_custom_finshed):
* gtk/gtkwindow.c: (gtk_window_buildable_interface_init),
(gtk_window_buildable_set_property),
(gtk_window_buildable_parser_finished):
* tests/Makefile.am:
* tests/buildertest.c: (builder_new_from_string), (test_parser),
(signal_normal), (signal_after), (signal_object),
(signal_object_after), (signal_first), (signal_second),
(signal_extra), (signal_extra2), (test_connect_signals),
(test_uimanager_simple), (test_domain), (test_translation),
(test_sizegroup), (test_list_store), (test_tree_store),
(test_types), (test_spin_button), (test_notebook),
(test_construct_only_property), (test_children),
(test_child_properties), (test_treeview_column), (test_icon_view),
(test_combo_box), (test_combo_box_entry), (test_cell_view),
(test_dialog), (test_accelerators), (test_widget), (main):
Add GtkBuilder, fixes #172535
svn path=/trunk/; revision=18141
2007-06-15 17:53:46 +00:00
|
|
|
/* GtkBuildable */
|
|
|
|
static void gtk_action_group_buildable_init (GtkBuildableIface *iface);
|
2007-06-19 12:23:36 +00:00
|
|
|
static void gtk_action_group_buildable_add_child (GtkBuildable *buildable,
|
|
|
|
GtkBuilder *builder,
|
|
|
|
GObject *child,
|
|
|
|
const gchar *type);
|
Add GtkBuilder, fixes #172535
2007-06-15 Johan Dahlin <jdahlin@async.com.br>
* demos/gtk-demo/Makefile.am:
* demos/gtk-demo/builder.c: (quit_activate), (about_activate),
(do_builder):
* demos/gtk-demo/demo.ui:
* docs/reference/gtk/gtk-docs.sgml:
* docs/reference/gtk/gtk-sections.txt:
* docs/reference/gtk/gtk.types:
* docs/reference/gtk/tmpl/gtkbuildable.sgml:
* docs/reference/gtk/tmpl/gtkbuilder.sgml:
* gtk/Makefile.am:
* gtk/gtk.h:
* gtk/gtk.symbols:
* gtk/gtkaction.c: (gtk_action_buildable_init),
(gtk_action_buildable_set_name), (gtk_action_buildable_get_name):
* gtk/gtkactiongroup.c: (gtk_action_group_get_type),
(gtk_action_group_buildable_init),
(gtk_action_group_buildable_add),
(gtk_action_group_buildable_set_name),
(gtk_action_group_buildable_get_name):
* gtk/gtkbuildable.c: (gtk_buildable_get_type),
(gtk_buildable_set_name), (gtk_buildable_get_name),
(gtk_buildable_add), (gtk_buildable_set_property),
(gtk_buildable_parser_finished), (gtk_buildable_construct_child),
(gtk_buildable_custom_tag_start), (gtk_buildable_custom_tag_end),
(gtk_buildable_custom_finished),
(gtk_buildable_get_internal_child):
* gtk/gtkbuildable.h:
* gtk/gtkbuilder.c: (gtk_builder_class_init), (gtk_builder_init),
(gtk_builder_finalize), (gtk_builder_set_property),
(gtk_builder_get_property), (_gtk_builder_resolve_type_lazily),
(gtk_builder_real_get_type_from_name),
(gtk_builder_get_parameters), (gtk_builder_get_internal_child),
(_gtk_builder_construct), (_gtk_builder_add),
(apply_delayed_properties), (_gtk_builder_finish),
(gtk_builder_new), (gtk_builder_add_from_file),
(gtk_builder_add_from_string), (gtk_builder_get_object),
(object_add_to_list), (gtk_builder_get_objects),
(gtk_builder_set_translation_domain),
(gtk_builder_get_translation_domain),
(gtk_builder_connect_signals_default),
(gtk_builder_connect_signals), (gtk_builder_connect_signals_full),
(gtk_builder_value_from_string),
(gtk_builder_value_from_string_type),
(_gtk_builder_enum_from_string), (_gtk_builder_flags_from_string),
(gtk_builder_get_type_from_name), (gtk_builder_error_quark):
* gtk/gtkbuilder.h:
* gtk/gtkbuilderparser.c: (state_push), (state_peek), (state_pop),
(error_missing_attribute), (error_invalid_attribute),
(error_invalid_tag), (builder_construct), (parse_object),
(free_object_info), (_get_type_by_symbol), (parse_child),
(free_child_info), (parse_property), (free_property_info),
(parse_signal), (_free_signal_info), (parse_interface),
(create_subparser), (free_subparser), (subparser_start),
(subparser_end), (parse_custom), (start_element), (end_element),
(text), (_gtk_builder_parser_parse_buffer):
* gtk/gtkbuilderprivate.h:
* gtk/gtkcelllayout.c: (attributes_start_element),
(attributes_text_element),
(_gtk_cell_layout_buildable_custom_tag_start),
(_gtk_cell_layout_buildable_custom_tag_end),
(_gtk_cell_layout_buildable_add):
* gtk/gtkcelllayout.h:
* gtk/gtkcellview.c: (gtk_cell_view_buildable_init),
(gtk_cell_view_buildable_custom_tag_start),
(gtk_cell_view_buildable_custom_tag_end):
* gtk/gtkcolorseldialog.c:
(gtk_color_selection_dialog_buildable_interface_init),
(gtk_color_selection_dialog_buildable_get_internal_child):
* gtk/gtkcombobox.c: (gtk_combo_box_buildable_init),
(gtk_combo_box_buildable_custom_tag_start),
(gtk_combo_box_buildable_custom_tag_end):
* gtk/gtkcomboboxentry.c:
(gtk_combo_box_entry_buildable_interface_init),
(gtk_combo_box_entry_buildable_get_internal_child):
* gtk/gtkcontainer.c: (gtk_container_get_type),
(gtk_container_buildable_init), (gtk_container_buildable_add),
(gtk_container_buildable_set_child_property),
(attributes_start_element), (attributes_text_element),
(gtk_container_buildable_custom_tag_start),
(gtk_container_buildable_custom_tag_end):
* gtk/gtkdebug.h:
* gtk/gtkdialog.c: (gtk_dialog_buildable_interface_init),
(gtk_dialog_buildable_get_internal_child),
(attributes_start_element), (attributes_text_element),
(gtk_dialog_buildable_custom_tag_start),
(gtk_dialog_buildable_custom_finished):
* gtk/gtkentrycompletion.c: (gtk_entry_completion_buildable_init):
* gtk/gtkexpander.c: (gtk_expander_buildable_add),
(gtk_expander_buildable_init):
* gtk/gtkfontsel.c:
(gtk_font_selection_dialog_buildable_interface_init),
(gtk_font_selection_dialog_buildable_get_internal_child):
* gtk/gtkframe.c: (gtk_frame_buildable_init),
(gtk_frame_buildable_add):
* gtk/gtkiconview.c: (gtk_icon_view_buildable_init),
(gtk_icon_view_buildable_custom_tag_start),
(gtk_icon_view_buildable_custom_tag_end):
* gtk/gtkliststore.c: (gtk_list_store_buildable_init),
(list_store_start_element), (list_store_end_element),
(list_store_text), (gtk_list_store_buildable_custom_tag_start),
(gtk_list_store_buildable_custom_tag_end):
* gtk/gtkmain.c:
* gtk/gtknotebook.c: (gtk_notebook_buildable_init),
(gtk_notebook_buildable_add):
* gtk/gtksizegroup.c: (gtk_size_group_buildable_init),
(size_group_start_element),
(gtk_size_group_buildable_custom_tag_start),
(gtk_size_group_buildable_custom_finished):
* gtk/gtktreestore.c: (gtk_tree_store_buildable_init),
(tree_model_start_element),
(gtk_tree_store_buildable_custom_tag_start),
(gtk_tree_store_buildable_custom_finished):
* gtk/gtktreeview.c: (gtk_tree_view_buildable_init),
(gtk_tree_view_buildable_add):
* gtk/gtktreeviewcolumn.c: (gtk_tree_view_column_buildable_init):
* gtk/gtkuimanager.c: (gtk_ui_manager_buildable_init),
(gtk_ui_manager_buildable_add),
(gtk_ui_manager_buildable_construct_child),
(gtk_ui_manager_buildable_custom_tag_start),
(gtk_ui_manager_buildable_custom_tag_end):
* gtk/gtkwidget.c: (gtk_widget_get_type),
(gtk_widget_buildable_interface_init),
(gtk_widget_buildable_set_name), (gtk_widget_buildable_get_name),
(gtk_widget_buildable_set_property),
(gtk_widget_buildable_parser_finshed), (accel_group_start_element),
(gtk_widget_buildable_custom_tag_start),
(gtk_widget_buildable_custom_finshed):
* gtk/gtkwindow.c: (gtk_window_buildable_interface_init),
(gtk_window_buildable_set_property),
(gtk_window_buildable_parser_finished):
* tests/Makefile.am:
* tests/buildertest.c: (builder_new_from_string), (test_parser),
(signal_normal), (signal_after), (signal_object),
(signal_object_after), (signal_first), (signal_second),
(signal_extra), (signal_extra2), (test_connect_signals),
(test_uimanager_simple), (test_domain), (test_translation),
(test_sizegroup), (test_list_store), (test_tree_store),
(test_types), (test_spin_button), (test_notebook),
(test_construct_only_property), (test_children),
(test_child_properties), (test_treeview_column), (test_icon_view),
(test_combo_box), (test_combo_box_entry), (test_cell_view),
(test_dialog), (test_accelerators), (test_widget), (main):
Add GtkBuilder, fixes #172535
svn path=/trunk/; revision=18141
2007-06-15 17:53:46 +00:00
|
|
|
static void gtk_action_group_buildable_set_name (GtkBuildable *buildable,
|
|
|
|
const gchar *name);
|
|
|
|
static const gchar* gtk_action_group_buildable_get_name (GtkBuildable *buildable);
|
2007-07-09 13:40:10 +00:00
|
|
|
static gboolean gtk_action_group_buildable_custom_tag_start (GtkBuildable *buildable,
|
|
|
|
GtkBuilder *builder,
|
|
|
|
GObject *child,
|
|
|
|
const gchar *tagname,
|
|
|
|
GMarkupParser *parser,
|
|
|
|
gpointer *data);
|
|
|
|
static void gtk_action_group_buildable_custom_tag_end (GtkBuildable *buildable,
|
|
|
|
GtkBuilder *builder,
|
|
|
|
GObject *child,
|
|
|
|
const gchar *tagname,
|
|
|
|
gpointer *user_data);
|
2003-08-24 19:58:30 +00:00
|
|
|
|
|
|
|
GType
|
|
|
|
gtk_action_group_get_type (void)
|
|
|
|
{
|
|
|
|
static GType type = 0;
|
|
|
|
|
|
|
|
if (!type)
|
|
|
|
{
|
2006-10-03 15:54:52 +00:00
|
|
|
const GTypeInfo type_info =
|
2003-08-24 19:58:30 +00:00
|
|
|
{
|
|
|
|
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,
|
|
|
|
};
|
|
|
|
|
2009-11-06 00:21:09 +00:00
|
|
|
const GInterfaceInfo buildable_info =
|
Add GtkBuilder, fixes #172535
2007-06-15 Johan Dahlin <jdahlin@async.com.br>
* demos/gtk-demo/Makefile.am:
* demos/gtk-demo/builder.c: (quit_activate), (about_activate),
(do_builder):
* demos/gtk-demo/demo.ui:
* docs/reference/gtk/gtk-docs.sgml:
* docs/reference/gtk/gtk-sections.txt:
* docs/reference/gtk/gtk.types:
* docs/reference/gtk/tmpl/gtkbuildable.sgml:
* docs/reference/gtk/tmpl/gtkbuilder.sgml:
* gtk/Makefile.am:
* gtk/gtk.h:
* gtk/gtk.symbols:
* gtk/gtkaction.c: (gtk_action_buildable_init),
(gtk_action_buildable_set_name), (gtk_action_buildable_get_name):
* gtk/gtkactiongroup.c: (gtk_action_group_get_type),
(gtk_action_group_buildable_init),
(gtk_action_group_buildable_add),
(gtk_action_group_buildable_set_name),
(gtk_action_group_buildable_get_name):
* gtk/gtkbuildable.c: (gtk_buildable_get_type),
(gtk_buildable_set_name), (gtk_buildable_get_name),
(gtk_buildable_add), (gtk_buildable_set_property),
(gtk_buildable_parser_finished), (gtk_buildable_construct_child),
(gtk_buildable_custom_tag_start), (gtk_buildable_custom_tag_end),
(gtk_buildable_custom_finished),
(gtk_buildable_get_internal_child):
* gtk/gtkbuildable.h:
* gtk/gtkbuilder.c: (gtk_builder_class_init), (gtk_builder_init),
(gtk_builder_finalize), (gtk_builder_set_property),
(gtk_builder_get_property), (_gtk_builder_resolve_type_lazily),
(gtk_builder_real_get_type_from_name),
(gtk_builder_get_parameters), (gtk_builder_get_internal_child),
(_gtk_builder_construct), (_gtk_builder_add),
(apply_delayed_properties), (_gtk_builder_finish),
(gtk_builder_new), (gtk_builder_add_from_file),
(gtk_builder_add_from_string), (gtk_builder_get_object),
(object_add_to_list), (gtk_builder_get_objects),
(gtk_builder_set_translation_domain),
(gtk_builder_get_translation_domain),
(gtk_builder_connect_signals_default),
(gtk_builder_connect_signals), (gtk_builder_connect_signals_full),
(gtk_builder_value_from_string),
(gtk_builder_value_from_string_type),
(_gtk_builder_enum_from_string), (_gtk_builder_flags_from_string),
(gtk_builder_get_type_from_name), (gtk_builder_error_quark):
* gtk/gtkbuilder.h:
* gtk/gtkbuilderparser.c: (state_push), (state_peek), (state_pop),
(error_missing_attribute), (error_invalid_attribute),
(error_invalid_tag), (builder_construct), (parse_object),
(free_object_info), (_get_type_by_symbol), (parse_child),
(free_child_info), (parse_property), (free_property_info),
(parse_signal), (_free_signal_info), (parse_interface),
(create_subparser), (free_subparser), (subparser_start),
(subparser_end), (parse_custom), (start_element), (end_element),
(text), (_gtk_builder_parser_parse_buffer):
* gtk/gtkbuilderprivate.h:
* gtk/gtkcelllayout.c: (attributes_start_element),
(attributes_text_element),
(_gtk_cell_layout_buildable_custom_tag_start),
(_gtk_cell_layout_buildable_custom_tag_end),
(_gtk_cell_layout_buildable_add):
* gtk/gtkcelllayout.h:
* gtk/gtkcellview.c: (gtk_cell_view_buildable_init),
(gtk_cell_view_buildable_custom_tag_start),
(gtk_cell_view_buildable_custom_tag_end):
* gtk/gtkcolorseldialog.c:
(gtk_color_selection_dialog_buildable_interface_init),
(gtk_color_selection_dialog_buildable_get_internal_child):
* gtk/gtkcombobox.c: (gtk_combo_box_buildable_init),
(gtk_combo_box_buildable_custom_tag_start),
(gtk_combo_box_buildable_custom_tag_end):
* gtk/gtkcomboboxentry.c:
(gtk_combo_box_entry_buildable_interface_init),
(gtk_combo_box_entry_buildable_get_internal_child):
* gtk/gtkcontainer.c: (gtk_container_get_type),
(gtk_container_buildable_init), (gtk_container_buildable_add),
(gtk_container_buildable_set_child_property),
(attributes_start_element), (attributes_text_element),
(gtk_container_buildable_custom_tag_start),
(gtk_container_buildable_custom_tag_end):
* gtk/gtkdebug.h:
* gtk/gtkdialog.c: (gtk_dialog_buildable_interface_init),
(gtk_dialog_buildable_get_internal_child),
(attributes_start_element), (attributes_text_element),
(gtk_dialog_buildable_custom_tag_start),
(gtk_dialog_buildable_custom_finished):
* gtk/gtkentrycompletion.c: (gtk_entry_completion_buildable_init):
* gtk/gtkexpander.c: (gtk_expander_buildable_add),
(gtk_expander_buildable_init):
* gtk/gtkfontsel.c:
(gtk_font_selection_dialog_buildable_interface_init),
(gtk_font_selection_dialog_buildable_get_internal_child):
* gtk/gtkframe.c: (gtk_frame_buildable_init),
(gtk_frame_buildable_add):
* gtk/gtkiconview.c: (gtk_icon_view_buildable_init),
(gtk_icon_view_buildable_custom_tag_start),
(gtk_icon_view_buildable_custom_tag_end):
* gtk/gtkliststore.c: (gtk_list_store_buildable_init),
(list_store_start_element), (list_store_end_element),
(list_store_text), (gtk_list_store_buildable_custom_tag_start),
(gtk_list_store_buildable_custom_tag_end):
* gtk/gtkmain.c:
* gtk/gtknotebook.c: (gtk_notebook_buildable_init),
(gtk_notebook_buildable_add):
* gtk/gtksizegroup.c: (gtk_size_group_buildable_init),
(size_group_start_element),
(gtk_size_group_buildable_custom_tag_start),
(gtk_size_group_buildable_custom_finished):
* gtk/gtktreestore.c: (gtk_tree_store_buildable_init),
(tree_model_start_element),
(gtk_tree_store_buildable_custom_tag_start),
(gtk_tree_store_buildable_custom_finished):
* gtk/gtktreeview.c: (gtk_tree_view_buildable_init),
(gtk_tree_view_buildable_add):
* gtk/gtktreeviewcolumn.c: (gtk_tree_view_column_buildable_init):
* gtk/gtkuimanager.c: (gtk_ui_manager_buildable_init),
(gtk_ui_manager_buildable_add),
(gtk_ui_manager_buildable_construct_child),
(gtk_ui_manager_buildable_custom_tag_start),
(gtk_ui_manager_buildable_custom_tag_end):
* gtk/gtkwidget.c: (gtk_widget_get_type),
(gtk_widget_buildable_interface_init),
(gtk_widget_buildable_set_name), (gtk_widget_buildable_get_name),
(gtk_widget_buildable_set_property),
(gtk_widget_buildable_parser_finshed), (accel_group_start_element),
(gtk_widget_buildable_custom_tag_start),
(gtk_widget_buildable_custom_finshed):
* gtk/gtkwindow.c: (gtk_window_buildable_interface_init),
(gtk_window_buildable_set_property),
(gtk_window_buildable_parser_finished):
* tests/Makefile.am:
* tests/buildertest.c: (builder_new_from_string), (test_parser),
(signal_normal), (signal_after), (signal_object),
(signal_object_after), (signal_first), (signal_second),
(signal_extra), (signal_extra2), (test_connect_signals),
(test_uimanager_simple), (test_domain), (test_translation),
(test_sizegroup), (test_list_store), (test_tree_store),
(test_types), (test_spin_button), (test_notebook),
(test_construct_only_property), (test_children),
(test_child_properties), (test_treeview_column), (test_icon_view),
(test_combo_box), (test_combo_box_entry), (test_cell_view),
(test_dialog), (test_accelerators), (test_widget), (main):
Add GtkBuilder, fixes #172535
svn path=/trunk/; revision=18141
2007-06-15 17:53:46 +00:00
|
|
|
{
|
|
|
|
(GInterfaceInitFunc) gtk_action_group_buildable_init,
|
|
|
|
NULL,
|
|
|
|
NULL
|
|
|
|
};
|
|
|
|
|
2005-09-01 05:11:46 +00:00
|
|
|
type = g_type_register_static (G_TYPE_OBJECT, I_("GtkActionGroup"),
|
2003-08-24 19:58:30 +00:00
|
|
|
&type_info, 0);
|
|
|
|
|
Add GtkBuilder, fixes #172535
2007-06-15 Johan Dahlin <jdahlin@async.com.br>
* demos/gtk-demo/Makefile.am:
* demos/gtk-demo/builder.c: (quit_activate), (about_activate),
(do_builder):
* demos/gtk-demo/demo.ui:
* docs/reference/gtk/gtk-docs.sgml:
* docs/reference/gtk/gtk-sections.txt:
* docs/reference/gtk/gtk.types:
* docs/reference/gtk/tmpl/gtkbuildable.sgml:
* docs/reference/gtk/tmpl/gtkbuilder.sgml:
* gtk/Makefile.am:
* gtk/gtk.h:
* gtk/gtk.symbols:
* gtk/gtkaction.c: (gtk_action_buildable_init),
(gtk_action_buildable_set_name), (gtk_action_buildable_get_name):
* gtk/gtkactiongroup.c: (gtk_action_group_get_type),
(gtk_action_group_buildable_init),
(gtk_action_group_buildable_add),
(gtk_action_group_buildable_set_name),
(gtk_action_group_buildable_get_name):
* gtk/gtkbuildable.c: (gtk_buildable_get_type),
(gtk_buildable_set_name), (gtk_buildable_get_name),
(gtk_buildable_add), (gtk_buildable_set_property),
(gtk_buildable_parser_finished), (gtk_buildable_construct_child),
(gtk_buildable_custom_tag_start), (gtk_buildable_custom_tag_end),
(gtk_buildable_custom_finished),
(gtk_buildable_get_internal_child):
* gtk/gtkbuildable.h:
* gtk/gtkbuilder.c: (gtk_builder_class_init), (gtk_builder_init),
(gtk_builder_finalize), (gtk_builder_set_property),
(gtk_builder_get_property), (_gtk_builder_resolve_type_lazily),
(gtk_builder_real_get_type_from_name),
(gtk_builder_get_parameters), (gtk_builder_get_internal_child),
(_gtk_builder_construct), (_gtk_builder_add),
(apply_delayed_properties), (_gtk_builder_finish),
(gtk_builder_new), (gtk_builder_add_from_file),
(gtk_builder_add_from_string), (gtk_builder_get_object),
(object_add_to_list), (gtk_builder_get_objects),
(gtk_builder_set_translation_domain),
(gtk_builder_get_translation_domain),
(gtk_builder_connect_signals_default),
(gtk_builder_connect_signals), (gtk_builder_connect_signals_full),
(gtk_builder_value_from_string),
(gtk_builder_value_from_string_type),
(_gtk_builder_enum_from_string), (_gtk_builder_flags_from_string),
(gtk_builder_get_type_from_name), (gtk_builder_error_quark):
* gtk/gtkbuilder.h:
* gtk/gtkbuilderparser.c: (state_push), (state_peek), (state_pop),
(error_missing_attribute), (error_invalid_attribute),
(error_invalid_tag), (builder_construct), (parse_object),
(free_object_info), (_get_type_by_symbol), (parse_child),
(free_child_info), (parse_property), (free_property_info),
(parse_signal), (_free_signal_info), (parse_interface),
(create_subparser), (free_subparser), (subparser_start),
(subparser_end), (parse_custom), (start_element), (end_element),
(text), (_gtk_builder_parser_parse_buffer):
* gtk/gtkbuilderprivate.h:
* gtk/gtkcelllayout.c: (attributes_start_element),
(attributes_text_element),
(_gtk_cell_layout_buildable_custom_tag_start),
(_gtk_cell_layout_buildable_custom_tag_end),
(_gtk_cell_layout_buildable_add):
* gtk/gtkcelllayout.h:
* gtk/gtkcellview.c: (gtk_cell_view_buildable_init),
(gtk_cell_view_buildable_custom_tag_start),
(gtk_cell_view_buildable_custom_tag_end):
* gtk/gtkcolorseldialog.c:
(gtk_color_selection_dialog_buildable_interface_init),
(gtk_color_selection_dialog_buildable_get_internal_child):
* gtk/gtkcombobox.c: (gtk_combo_box_buildable_init),
(gtk_combo_box_buildable_custom_tag_start),
(gtk_combo_box_buildable_custom_tag_end):
* gtk/gtkcomboboxentry.c:
(gtk_combo_box_entry_buildable_interface_init),
(gtk_combo_box_entry_buildable_get_internal_child):
* gtk/gtkcontainer.c: (gtk_container_get_type),
(gtk_container_buildable_init), (gtk_container_buildable_add),
(gtk_container_buildable_set_child_property),
(attributes_start_element), (attributes_text_element),
(gtk_container_buildable_custom_tag_start),
(gtk_container_buildable_custom_tag_end):
* gtk/gtkdebug.h:
* gtk/gtkdialog.c: (gtk_dialog_buildable_interface_init),
(gtk_dialog_buildable_get_internal_child),
(attributes_start_element), (attributes_text_element),
(gtk_dialog_buildable_custom_tag_start),
(gtk_dialog_buildable_custom_finished):
* gtk/gtkentrycompletion.c: (gtk_entry_completion_buildable_init):
* gtk/gtkexpander.c: (gtk_expander_buildable_add),
(gtk_expander_buildable_init):
* gtk/gtkfontsel.c:
(gtk_font_selection_dialog_buildable_interface_init),
(gtk_font_selection_dialog_buildable_get_internal_child):
* gtk/gtkframe.c: (gtk_frame_buildable_init),
(gtk_frame_buildable_add):
* gtk/gtkiconview.c: (gtk_icon_view_buildable_init),
(gtk_icon_view_buildable_custom_tag_start),
(gtk_icon_view_buildable_custom_tag_end):
* gtk/gtkliststore.c: (gtk_list_store_buildable_init),
(list_store_start_element), (list_store_end_element),
(list_store_text), (gtk_list_store_buildable_custom_tag_start),
(gtk_list_store_buildable_custom_tag_end):
* gtk/gtkmain.c:
* gtk/gtknotebook.c: (gtk_notebook_buildable_init),
(gtk_notebook_buildable_add):
* gtk/gtksizegroup.c: (gtk_size_group_buildable_init),
(size_group_start_element),
(gtk_size_group_buildable_custom_tag_start),
(gtk_size_group_buildable_custom_finished):
* gtk/gtktreestore.c: (gtk_tree_store_buildable_init),
(tree_model_start_element),
(gtk_tree_store_buildable_custom_tag_start),
(gtk_tree_store_buildable_custom_finished):
* gtk/gtktreeview.c: (gtk_tree_view_buildable_init),
(gtk_tree_view_buildable_add):
* gtk/gtktreeviewcolumn.c: (gtk_tree_view_column_buildable_init):
* gtk/gtkuimanager.c: (gtk_ui_manager_buildable_init),
(gtk_ui_manager_buildable_add),
(gtk_ui_manager_buildable_construct_child),
(gtk_ui_manager_buildable_custom_tag_start),
(gtk_ui_manager_buildable_custom_tag_end):
* gtk/gtkwidget.c: (gtk_widget_get_type),
(gtk_widget_buildable_interface_init),
(gtk_widget_buildable_set_name), (gtk_widget_buildable_get_name),
(gtk_widget_buildable_set_property),
(gtk_widget_buildable_parser_finshed), (accel_group_start_element),
(gtk_widget_buildable_custom_tag_start),
(gtk_widget_buildable_custom_finshed):
* gtk/gtkwindow.c: (gtk_window_buildable_interface_init),
(gtk_window_buildable_set_property),
(gtk_window_buildable_parser_finished):
* tests/Makefile.am:
* tests/buildertest.c: (builder_new_from_string), (test_parser),
(signal_normal), (signal_after), (signal_object),
(signal_object_after), (signal_first), (signal_second),
(signal_extra), (signal_extra2), (test_connect_signals),
(test_uimanager_simple), (test_domain), (test_translation),
(test_sizegroup), (test_list_store), (test_tree_store),
(test_types), (test_spin_button), (test_notebook),
(test_construct_only_property), (test_children),
(test_child_properties), (test_treeview_column), (test_icon_view),
(test_combo_box), (test_combo_box_entry), (test_cell_view),
(test_dialog), (test_accelerators), (test_widget), (main):
Add GtkBuilder, fixes #172535
svn path=/trunk/; revision=18141
2007-06-15 17:53:46 +00:00
|
|
|
g_type_add_interface_static (type,
|
|
|
|
GTK_TYPE_BUILDABLE,
|
|
|
|
&buildable_info);
|
|
|
|
}
|
2003-08-24 19:58:30 +00:00
|
|
|
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",
|
2004-01-16 23:10:05 +00:00
|
|
|
P_("Name"),
|
|
|
|
P_("A name for the action group."),
|
2003-10-25 21:34:24 +00:00
|
|
|
NULL,
|
2005-03-22 02:14:55 +00:00
|
|
|
GTK_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",
|
2004-01-16 23:10:05 +00:00
|
|
|
P_("Sensitive"),
|
|
|
|
P_("Whether the action group is enabled."),
|
2004-01-12 22:45:45 +00:00
|
|
|
TRUE,
|
2005-03-22 02:14:55 +00:00
|
|
|
GTK_PARAM_READWRITE));
|
2004-01-12 22:45:45 +00:00
|
|
|
g_object_class_install_property (gobject_class,
|
|
|
|
PROP_VISIBLE,
|
|
|
|
g_param_spec_boolean ("visible",
|
2004-01-16 23:10:05 +00:00
|
|
|
P_("Visible"),
|
|
|
|
P_("Whether the action group is visible."),
|
2004-01-12 22:45:45 +00:00
|
|
|
TRUE,
|
2005-03-22 02:14:55 +00:00
|
|
|
GTK_PARAM_READWRITE));
|
2004-01-12 22:45:45 +00:00
|
|
|
|
|
|
|
/**
|
2004-09-21 17:42:39 +00:00
|
|
|
* GtkActionGroup::connect-proxy:
|
2004-01-12 22:45:45 +00:00
|
|
|
* @action_group: the group
|
|
|
|
* @action: the action
|
|
|
|
* @proxy: the proxy
|
|
|
|
*
|
2008-08-11 13:07:18 +00:00
|
|
|
* The ::connect-proxy signal is emitted after connecting a proxy to
|
2004-01-12 22:45:45 +00:00
|
|
|
* 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] =
|
2008-08-11 13:07:18 +00:00
|
|
|
g_signal_new (I_("connect-proxy"),
|
2004-01-12 22:45:45 +00:00
|
|
|
G_OBJECT_CLASS_TYPE (klass),
|
|
|
|
0, 0, NULL, NULL,
|
|
|
|
_gtk_marshal_VOID__OBJECT_OBJECT,
|
|
|
|
G_TYPE_NONE, 2,
|
|
|
|
GTK_TYPE_ACTION, GTK_TYPE_WIDGET);
|
|
|
|
|
|
|
|
/**
|
2004-09-21 17:42:39 +00:00
|
|
|
* GtkActionGroup::disconnect-proxy:
|
2004-01-12 22:45:45 +00:00
|
|
|
* @action_group: the group
|
|
|
|
* @action: the action
|
|
|
|
* @proxy: the proxy
|
|
|
|
*
|
2008-08-11 13:07:18 +00:00
|
|
|
* The ::disconnect-proxy signal is emitted after disconnecting a proxy
|
2004-01-12 22:45:45 +00:00
|
|
|
* 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] =
|
2008-08-11 13:07:18 +00:00
|
|
|
g_signal_new (I_("disconnect-proxy"),
|
2004-01-12 22:45:45 +00:00
|
|
|
G_OBJECT_CLASS_TYPE (klass),
|
|
|
|
0, 0, NULL, NULL,
|
|
|
|
_gtk_marshal_VOID__OBJECT_OBJECT,
|
|
|
|
G_TYPE_NONE, 2,
|
|
|
|
GTK_TYPE_ACTION, GTK_TYPE_WIDGET);
|
|
|
|
|
|
|
|
/**
|
2004-08-02 04:14:17 +00:00
|
|
|
* GtkActionGroup::pre-activate:
|
2004-01-12 22:45:45 +00:00
|
|
|
* @action_group: the group
|
|
|
|
* @action: the action
|
|
|
|
*
|
2008-08-11 13:07:18 +00:00
|
|
|
* The ::pre-activate signal is emitted just before the @action in the
|
2004-01-12 22:45:45 +00:00
|
|
|
* @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] =
|
2008-08-11 13:07:18 +00:00
|
|
|
g_signal_new (I_("pre-activate"),
|
2004-01-12 22:45:45 +00:00
|
|
|
G_OBJECT_CLASS_TYPE (klass),
|
|
|
|
0, 0, NULL, NULL,
|
|
|
|
_gtk_marshal_VOID__OBJECT,
|
|
|
|
G_TYPE_NONE, 1,
|
|
|
|
GTK_TYPE_ACTION);
|
|
|
|
|
|
|
|
/**
|
2004-08-02 04:14:17 +00:00
|
|
|
* GtkActionGroup::post-activate:
|
2004-01-12 22:45:45 +00:00
|
|
|
* @action_group: the group
|
|
|
|
* @action: the action
|
|
|
|
*
|
2008-08-11 13:07:18 +00:00
|
|
|
* The ::post-activate signal is emitted just after the @action in the
|
2004-01-12 22:45:45 +00:00
|
|
|
* @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] =
|
2008-08-11 13:07:18 +00:00
|
|
|
g_signal_new (I_("post-activate"),
|
2004-01-12 22:45:45 +00:00
|
|
|
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));
|
|
|
|
}
|
|
|
|
|
2004-01-21 22:26:53 +00:00
|
|
|
|
|
|
|
static void
|
|
|
|
remove_action (GtkAction *action)
|
|
|
|
{
|
2006-01-07 04:18:40 +00:00
|
|
|
g_object_set (action, I_("action-group"), NULL, NULL);
|
2004-01-21 22:26:53 +00:00
|
|
|
g_object_unref (action);
|
|
|
|
}
|
|
|
|
|
2003-08-24 19:58:30 +00:00
|
|
|
static void
|
2010-05-22 23:25:06 +00:00
|
|
|
gtk_action_group_init (GtkActionGroup *action_group)
|
2003-08-24 19:58:30 +00:00
|
|
|
{
|
2008-06-20 10:58:40 +00:00
|
|
|
GtkActionGroupPrivate *private;
|
|
|
|
|
2010-05-22 23:25:06 +00:00
|
|
|
action_group->priv = G_TYPE_INSTANCE_GET_PRIVATE (action_group,
|
|
|
|
GTK_TYPE_ACTION_GROUP,
|
|
|
|
GtkActionGroupPrivate);
|
|
|
|
private = action_group->priv;
|
2008-06-20 10:58:40 +00:00
|
|
|
|
|
|
|
private->name = NULL;
|
|
|
|
private->sensitive = TRUE;
|
|
|
|
private->visible = TRUE;
|
|
|
|
private->actions = g_hash_table_new_full (g_str_hash, g_str_equal,
|
|
|
|
NULL,
|
|
|
|
(GDestroyNotify) remove_action);
|
|
|
|
private->translate_func = NULL;
|
|
|
|
private->translate_data = NULL;
|
|
|
|
private->translate_notify = NULL;
|
2003-08-24 19:58:30 +00:00
|
|
|
}
|
|
|
|
|
Add GtkBuilder, fixes #172535
2007-06-15 Johan Dahlin <jdahlin@async.com.br>
* demos/gtk-demo/Makefile.am:
* demos/gtk-demo/builder.c: (quit_activate), (about_activate),
(do_builder):
* demos/gtk-demo/demo.ui:
* docs/reference/gtk/gtk-docs.sgml:
* docs/reference/gtk/gtk-sections.txt:
* docs/reference/gtk/gtk.types:
* docs/reference/gtk/tmpl/gtkbuildable.sgml:
* docs/reference/gtk/tmpl/gtkbuilder.sgml:
* gtk/Makefile.am:
* gtk/gtk.h:
* gtk/gtk.symbols:
* gtk/gtkaction.c: (gtk_action_buildable_init),
(gtk_action_buildable_set_name), (gtk_action_buildable_get_name):
* gtk/gtkactiongroup.c: (gtk_action_group_get_type),
(gtk_action_group_buildable_init),
(gtk_action_group_buildable_add),
(gtk_action_group_buildable_set_name),
(gtk_action_group_buildable_get_name):
* gtk/gtkbuildable.c: (gtk_buildable_get_type),
(gtk_buildable_set_name), (gtk_buildable_get_name),
(gtk_buildable_add), (gtk_buildable_set_property),
(gtk_buildable_parser_finished), (gtk_buildable_construct_child),
(gtk_buildable_custom_tag_start), (gtk_buildable_custom_tag_end),
(gtk_buildable_custom_finished),
(gtk_buildable_get_internal_child):
* gtk/gtkbuildable.h:
* gtk/gtkbuilder.c: (gtk_builder_class_init), (gtk_builder_init),
(gtk_builder_finalize), (gtk_builder_set_property),
(gtk_builder_get_property), (_gtk_builder_resolve_type_lazily),
(gtk_builder_real_get_type_from_name),
(gtk_builder_get_parameters), (gtk_builder_get_internal_child),
(_gtk_builder_construct), (_gtk_builder_add),
(apply_delayed_properties), (_gtk_builder_finish),
(gtk_builder_new), (gtk_builder_add_from_file),
(gtk_builder_add_from_string), (gtk_builder_get_object),
(object_add_to_list), (gtk_builder_get_objects),
(gtk_builder_set_translation_domain),
(gtk_builder_get_translation_domain),
(gtk_builder_connect_signals_default),
(gtk_builder_connect_signals), (gtk_builder_connect_signals_full),
(gtk_builder_value_from_string),
(gtk_builder_value_from_string_type),
(_gtk_builder_enum_from_string), (_gtk_builder_flags_from_string),
(gtk_builder_get_type_from_name), (gtk_builder_error_quark):
* gtk/gtkbuilder.h:
* gtk/gtkbuilderparser.c: (state_push), (state_peek), (state_pop),
(error_missing_attribute), (error_invalid_attribute),
(error_invalid_tag), (builder_construct), (parse_object),
(free_object_info), (_get_type_by_symbol), (parse_child),
(free_child_info), (parse_property), (free_property_info),
(parse_signal), (_free_signal_info), (parse_interface),
(create_subparser), (free_subparser), (subparser_start),
(subparser_end), (parse_custom), (start_element), (end_element),
(text), (_gtk_builder_parser_parse_buffer):
* gtk/gtkbuilderprivate.h:
* gtk/gtkcelllayout.c: (attributes_start_element),
(attributes_text_element),
(_gtk_cell_layout_buildable_custom_tag_start),
(_gtk_cell_layout_buildable_custom_tag_end),
(_gtk_cell_layout_buildable_add):
* gtk/gtkcelllayout.h:
* gtk/gtkcellview.c: (gtk_cell_view_buildable_init),
(gtk_cell_view_buildable_custom_tag_start),
(gtk_cell_view_buildable_custom_tag_end):
* gtk/gtkcolorseldialog.c:
(gtk_color_selection_dialog_buildable_interface_init),
(gtk_color_selection_dialog_buildable_get_internal_child):
* gtk/gtkcombobox.c: (gtk_combo_box_buildable_init),
(gtk_combo_box_buildable_custom_tag_start),
(gtk_combo_box_buildable_custom_tag_end):
* gtk/gtkcomboboxentry.c:
(gtk_combo_box_entry_buildable_interface_init),
(gtk_combo_box_entry_buildable_get_internal_child):
* gtk/gtkcontainer.c: (gtk_container_get_type),
(gtk_container_buildable_init), (gtk_container_buildable_add),
(gtk_container_buildable_set_child_property),
(attributes_start_element), (attributes_text_element),
(gtk_container_buildable_custom_tag_start),
(gtk_container_buildable_custom_tag_end):
* gtk/gtkdebug.h:
* gtk/gtkdialog.c: (gtk_dialog_buildable_interface_init),
(gtk_dialog_buildable_get_internal_child),
(attributes_start_element), (attributes_text_element),
(gtk_dialog_buildable_custom_tag_start),
(gtk_dialog_buildable_custom_finished):
* gtk/gtkentrycompletion.c: (gtk_entry_completion_buildable_init):
* gtk/gtkexpander.c: (gtk_expander_buildable_add),
(gtk_expander_buildable_init):
* gtk/gtkfontsel.c:
(gtk_font_selection_dialog_buildable_interface_init),
(gtk_font_selection_dialog_buildable_get_internal_child):
* gtk/gtkframe.c: (gtk_frame_buildable_init),
(gtk_frame_buildable_add):
* gtk/gtkiconview.c: (gtk_icon_view_buildable_init),
(gtk_icon_view_buildable_custom_tag_start),
(gtk_icon_view_buildable_custom_tag_end):
* gtk/gtkliststore.c: (gtk_list_store_buildable_init),
(list_store_start_element), (list_store_end_element),
(list_store_text), (gtk_list_store_buildable_custom_tag_start),
(gtk_list_store_buildable_custom_tag_end):
* gtk/gtkmain.c:
* gtk/gtknotebook.c: (gtk_notebook_buildable_init),
(gtk_notebook_buildable_add):
* gtk/gtksizegroup.c: (gtk_size_group_buildable_init),
(size_group_start_element),
(gtk_size_group_buildable_custom_tag_start),
(gtk_size_group_buildable_custom_finished):
* gtk/gtktreestore.c: (gtk_tree_store_buildable_init),
(tree_model_start_element),
(gtk_tree_store_buildable_custom_tag_start),
(gtk_tree_store_buildable_custom_finished):
* gtk/gtktreeview.c: (gtk_tree_view_buildable_init),
(gtk_tree_view_buildable_add):
* gtk/gtktreeviewcolumn.c: (gtk_tree_view_column_buildable_init):
* gtk/gtkuimanager.c: (gtk_ui_manager_buildable_init),
(gtk_ui_manager_buildable_add),
(gtk_ui_manager_buildable_construct_child),
(gtk_ui_manager_buildable_custom_tag_start),
(gtk_ui_manager_buildable_custom_tag_end):
* gtk/gtkwidget.c: (gtk_widget_get_type),
(gtk_widget_buildable_interface_init),
(gtk_widget_buildable_set_name), (gtk_widget_buildable_get_name),
(gtk_widget_buildable_set_property),
(gtk_widget_buildable_parser_finshed), (accel_group_start_element),
(gtk_widget_buildable_custom_tag_start),
(gtk_widget_buildable_custom_finshed):
* gtk/gtkwindow.c: (gtk_window_buildable_interface_init),
(gtk_window_buildable_set_property),
(gtk_window_buildable_parser_finished):
* tests/Makefile.am:
* tests/buildertest.c: (builder_new_from_string), (test_parser),
(signal_normal), (signal_after), (signal_object),
(signal_object_after), (signal_first), (signal_second),
(signal_extra), (signal_extra2), (test_connect_signals),
(test_uimanager_simple), (test_domain), (test_translation),
(test_sizegroup), (test_list_store), (test_tree_store),
(test_types), (test_spin_button), (test_notebook),
(test_construct_only_property), (test_children),
(test_child_properties), (test_treeview_column), (test_icon_view),
(test_combo_box), (test_combo_box_entry), (test_cell_view),
(test_dialog), (test_accelerators), (test_widget), (main):
Add GtkBuilder, fixes #172535
svn path=/trunk/; revision=18141
2007-06-15 17:53:46 +00:00
|
|
|
static void
|
|
|
|
gtk_action_group_buildable_init (GtkBuildableIface *iface)
|
|
|
|
{
|
2007-06-19 12:23:36 +00:00
|
|
|
iface->add_child = gtk_action_group_buildable_add_child;
|
Add GtkBuilder, fixes #172535
2007-06-15 Johan Dahlin <jdahlin@async.com.br>
* demos/gtk-demo/Makefile.am:
* demos/gtk-demo/builder.c: (quit_activate), (about_activate),
(do_builder):
* demos/gtk-demo/demo.ui:
* docs/reference/gtk/gtk-docs.sgml:
* docs/reference/gtk/gtk-sections.txt:
* docs/reference/gtk/gtk.types:
* docs/reference/gtk/tmpl/gtkbuildable.sgml:
* docs/reference/gtk/tmpl/gtkbuilder.sgml:
* gtk/Makefile.am:
* gtk/gtk.h:
* gtk/gtk.symbols:
* gtk/gtkaction.c: (gtk_action_buildable_init),
(gtk_action_buildable_set_name), (gtk_action_buildable_get_name):
* gtk/gtkactiongroup.c: (gtk_action_group_get_type),
(gtk_action_group_buildable_init),
(gtk_action_group_buildable_add),
(gtk_action_group_buildable_set_name),
(gtk_action_group_buildable_get_name):
* gtk/gtkbuildable.c: (gtk_buildable_get_type),
(gtk_buildable_set_name), (gtk_buildable_get_name),
(gtk_buildable_add), (gtk_buildable_set_property),
(gtk_buildable_parser_finished), (gtk_buildable_construct_child),
(gtk_buildable_custom_tag_start), (gtk_buildable_custom_tag_end),
(gtk_buildable_custom_finished),
(gtk_buildable_get_internal_child):
* gtk/gtkbuildable.h:
* gtk/gtkbuilder.c: (gtk_builder_class_init), (gtk_builder_init),
(gtk_builder_finalize), (gtk_builder_set_property),
(gtk_builder_get_property), (_gtk_builder_resolve_type_lazily),
(gtk_builder_real_get_type_from_name),
(gtk_builder_get_parameters), (gtk_builder_get_internal_child),
(_gtk_builder_construct), (_gtk_builder_add),
(apply_delayed_properties), (_gtk_builder_finish),
(gtk_builder_new), (gtk_builder_add_from_file),
(gtk_builder_add_from_string), (gtk_builder_get_object),
(object_add_to_list), (gtk_builder_get_objects),
(gtk_builder_set_translation_domain),
(gtk_builder_get_translation_domain),
(gtk_builder_connect_signals_default),
(gtk_builder_connect_signals), (gtk_builder_connect_signals_full),
(gtk_builder_value_from_string),
(gtk_builder_value_from_string_type),
(_gtk_builder_enum_from_string), (_gtk_builder_flags_from_string),
(gtk_builder_get_type_from_name), (gtk_builder_error_quark):
* gtk/gtkbuilder.h:
* gtk/gtkbuilderparser.c: (state_push), (state_peek), (state_pop),
(error_missing_attribute), (error_invalid_attribute),
(error_invalid_tag), (builder_construct), (parse_object),
(free_object_info), (_get_type_by_symbol), (parse_child),
(free_child_info), (parse_property), (free_property_info),
(parse_signal), (_free_signal_info), (parse_interface),
(create_subparser), (free_subparser), (subparser_start),
(subparser_end), (parse_custom), (start_element), (end_element),
(text), (_gtk_builder_parser_parse_buffer):
* gtk/gtkbuilderprivate.h:
* gtk/gtkcelllayout.c: (attributes_start_element),
(attributes_text_element),
(_gtk_cell_layout_buildable_custom_tag_start),
(_gtk_cell_layout_buildable_custom_tag_end),
(_gtk_cell_layout_buildable_add):
* gtk/gtkcelllayout.h:
* gtk/gtkcellview.c: (gtk_cell_view_buildable_init),
(gtk_cell_view_buildable_custom_tag_start),
(gtk_cell_view_buildable_custom_tag_end):
* gtk/gtkcolorseldialog.c:
(gtk_color_selection_dialog_buildable_interface_init),
(gtk_color_selection_dialog_buildable_get_internal_child):
* gtk/gtkcombobox.c: (gtk_combo_box_buildable_init),
(gtk_combo_box_buildable_custom_tag_start),
(gtk_combo_box_buildable_custom_tag_end):
* gtk/gtkcomboboxentry.c:
(gtk_combo_box_entry_buildable_interface_init),
(gtk_combo_box_entry_buildable_get_internal_child):
* gtk/gtkcontainer.c: (gtk_container_get_type),
(gtk_container_buildable_init), (gtk_container_buildable_add),
(gtk_container_buildable_set_child_property),
(attributes_start_element), (attributes_text_element),
(gtk_container_buildable_custom_tag_start),
(gtk_container_buildable_custom_tag_end):
* gtk/gtkdebug.h:
* gtk/gtkdialog.c: (gtk_dialog_buildable_interface_init),
(gtk_dialog_buildable_get_internal_child),
(attributes_start_element), (attributes_text_element),
(gtk_dialog_buildable_custom_tag_start),
(gtk_dialog_buildable_custom_finished):
* gtk/gtkentrycompletion.c: (gtk_entry_completion_buildable_init):
* gtk/gtkexpander.c: (gtk_expander_buildable_add),
(gtk_expander_buildable_init):
* gtk/gtkfontsel.c:
(gtk_font_selection_dialog_buildable_interface_init),
(gtk_font_selection_dialog_buildable_get_internal_child):
* gtk/gtkframe.c: (gtk_frame_buildable_init),
(gtk_frame_buildable_add):
* gtk/gtkiconview.c: (gtk_icon_view_buildable_init),
(gtk_icon_view_buildable_custom_tag_start),
(gtk_icon_view_buildable_custom_tag_end):
* gtk/gtkliststore.c: (gtk_list_store_buildable_init),
(list_store_start_element), (list_store_end_element),
(list_store_text), (gtk_list_store_buildable_custom_tag_start),
(gtk_list_store_buildable_custom_tag_end):
* gtk/gtkmain.c:
* gtk/gtknotebook.c: (gtk_notebook_buildable_init),
(gtk_notebook_buildable_add):
* gtk/gtksizegroup.c: (gtk_size_group_buildable_init),
(size_group_start_element),
(gtk_size_group_buildable_custom_tag_start),
(gtk_size_group_buildable_custom_finished):
* gtk/gtktreestore.c: (gtk_tree_store_buildable_init),
(tree_model_start_element),
(gtk_tree_store_buildable_custom_tag_start),
(gtk_tree_store_buildable_custom_finished):
* gtk/gtktreeview.c: (gtk_tree_view_buildable_init),
(gtk_tree_view_buildable_add):
* gtk/gtktreeviewcolumn.c: (gtk_tree_view_column_buildable_init):
* gtk/gtkuimanager.c: (gtk_ui_manager_buildable_init),
(gtk_ui_manager_buildable_add),
(gtk_ui_manager_buildable_construct_child),
(gtk_ui_manager_buildable_custom_tag_start),
(gtk_ui_manager_buildable_custom_tag_end):
* gtk/gtkwidget.c: (gtk_widget_get_type),
(gtk_widget_buildable_interface_init),
(gtk_widget_buildable_set_name), (gtk_widget_buildable_get_name),
(gtk_widget_buildable_set_property),
(gtk_widget_buildable_parser_finshed), (accel_group_start_element),
(gtk_widget_buildable_custom_tag_start),
(gtk_widget_buildable_custom_finshed):
* gtk/gtkwindow.c: (gtk_window_buildable_interface_init),
(gtk_window_buildable_set_property),
(gtk_window_buildable_parser_finished):
* tests/Makefile.am:
* tests/buildertest.c: (builder_new_from_string), (test_parser),
(signal_normal), (signal_after), (signal_object),
(signal_object_after), (signal_first), (signal_second),
(signal_extra), (signal_extra2), (test_connect_signals),
(test_uimanager_simple), (test_domain), (test_translation),
(test_sizegroup), (test_list_store), (test_tree_store),
(test_types), (test_spin_button), (test_notebook),
(test_construct_only_property), (test_children),
(test_child_properties), (test_treeview_column), (test_icon_view),
(test_combo_box), (test_combo_box_entry), (test_cell_view),
(test_dialog), (test_accelerators), (test_widget), (main):
Add GtkBuilder, fixes #172535
svn path=/trunk/; revision=18141
2007-06-15 17:53:46 +00:00
|
|
|
iface->set_name = gtk_action_group_buildable_set_name;
|
|
|
|
iface->get_name = gtk_action_group_buildable_get_name;
|
2007-07-09 13:40:10 +00:00
|
|
|
iface->custom_tag_start = gtk_action_group_buildable_custom_tag_start;
|
|
|
|
iface->custom_tag_end = gtk_action_group_buildable_custom_tag_end;
|
Add GtkBuilder, fixes #172535
2007-06-15 Johan Dahlin <jdahlin@async.com.br>
* demos/gtk-demo/Makefile.am:
* demos/gtk-demo/builder.c: (quit_activate), (about_activate),
(do_builder):
* demos/gtk-demo/demo.ui:
* docs/reference/gtk/gtk-docs.sgml:
* docs/reference/gtk/gtk-sections.txt:
* docs/reference/gtk/gtk.types:
* docs/reference/gtk/tmpl/gtkbuildable.sgml:
* docs/reference/gtk/tmpl/gtkbuilder.sgml:
* gtk/Makefile.am:
* gtk/gtk.h:
* gtk/gtk.symbols:
* gtk/gtkaction.c: (gtk_action_buildable_init),
(gtk_action_buildable_set_name), (gtk_action_buildable_get_name):
* gtk/gtkactiongroup.c: (gtk_action_group_get_type),
(gtk_action_group_buildable_init),
(gtk_action_group_buildable_add),
(gtk_action_group_buildable_set_name),
(gtk_action_group_buildable_get_name):
* gtk/gtkbuildable.c: (gtk_buildable_get_type),
(gtk_buildable_set_name), (gtk_buildable_get_name),
(gtk_buildable_add), (gtk_buildable_set_property),
(gtk_buildable_parser_finished), (gtk_buildable_construct_child),
(gtk_buildable_custom_tag_start), (gtk_buildable_custom_tag_end),
(gtk_buildable_custom_finished),
(gtk_buildable_get_internal_child):
* gtk/gtkbuildable.h:
* gtk/gtkbuilder.c: (gtk_builder_class_init), (gtk_builder_init),
(gtk_builder_finalize), (gtk_builder_set_property),
(gtk_builder_get_property), (_gtk_builder_resolve_type_lazily),
(gtk_builder_real_get_type_from_name),
(gtk_builder_get_parameters), (gtk_builder_get_internal_child),
(_gtk_builder_construct), (_gtk_builder_add),
(apply_delayed_properties), (_gtk_builder_finish),
(gtk_builder_new), (gtk_builder_add_from_file),
(gtk_builder_add_from_string), (gtk_builder_get_object),
(object_add_to_list), (gtk_builder_get_objects),
(gtk_builder_set_translation_domain),
(gtk_builder_get_translation_domain),
(gtk_builder_connect_signals_default),
(gtk_builder_connect_signals), (gtk_builder_connect_signals_full),
(gtk_builder_value_from_string),
(gtk_builder_value_from_string_type),
(_gtk_builder_enum_from_string), (_gtk_builder_flags_from_string),
(gtk_builder_get_type_from_name), (gtk_builder_error_quark):
* gtk/gtkbuilder.h:
* gtk/gtkbuilderparser.c: (state_push), (state_peek), (state_pop),
(error_missing_attribute), (error_invalid_attribute),
(error_invalid_tag), (builder_construct), (parse_object),
(free_object_info), (_get_type_by_symbol), (parse_child),
(free_child_info), (parse_property), (free_property_info),
(parse_signal), (_free_signal_info), (parse_interface),
(create_subparser), (free_subparser), (subparser_start),
(subparser_end), (parse_custom), (start_element), (end_element),
(text), (_gtk_builder_parser_parse_buffer):
* gtk/gtkbuilderprivate.h:
* gtk/gtkcelllayout.c: (attributes_start_element),
(attributes_text_element),
(_gtk_cell_layout_buildable_custom_tag_start),
(_gtk_cell_layout_buildable_custom_tag_end),
(_gtk_cell_layout_buildable_add):
* gtk/gtkcelllayout.h:
* gtk/gtkcellview.c: (gtk_cell_view_buildable_init),
(gtk_cell_view_buildable_custom_tag_start),
(gtk_cell_view_buildable_custom_tag_end):
* gtk/gtkcolorseldialog.c:
(gtk_color_selection_dialog_buildable_interface_init),
(gtk_color_selection_dialog_buildable_get_internal_child):
* gtk/gtkcombobox.c: (gtk_combo_box_buildable_init),
(gtk_combo_box_buildable_custom_tag_start),
(gtk_combo_box_buildable_custom_tag_end):
* gtk/gtkcomboboxentry.c:
(gtk_combo_box_entry_buildable_interface_init),
(gtk_combo_box_entry_buildable_get_internal_child):
* gtk/gtkcontainer.c: (gtk_container_get_type),
(gtk_container_buildable_init), (gtk_container_buildable_add),
(gtk_container_buildable_set_child_property),
(attributes_start_element), (attributes_text_element),
(gtk_container_buildable_custom_tag_start),
(gtk_container_buildable_custom_tag_end):
* gtk/gtkdebug.h:
* gtk/gtkdialog.c: (gtk_dialog_buildable_interface_init),
(gtk_dialog_buildable_get_internal_child),
(attributes_start_element), (attributes_text_element),
(gtk_dialog_buildable_custom_tag_start),
(gtk_dialog_buildable_custom_finished):
* gtk/gtkentrycompletion.c: (gtk_entry_completion_buildable_init):
* gtk/gtkexpander.c: (gtk_expander_buildable_add),
(gtk_expander_buildable_init):
* gtk/gtkfontsel.c:
(gtk_font_selection_dialog_buildable_interface_init),
(gtk_font_selection_dialog_buildable_get_internal_child):
* gtk/gtkframe.c: (gtk_frame_buildable_init),
(gtk_frame_buildable_add):
* gtk/gtkiconview.c: (gtk_icon_view_buildable_init),
(gtk_icon_view_buildable_custom_tag_start),
(gtk_icon_view_buildable_custom_tag_end):
* gtk/gtkliststore.c: (gtk_list_store_buildable_init),
(list_store_start_element), (list_store_end_element),
(list_store_text), (gtk_list_store_buildable_custom_tag_start),
(gtk_list_store_buildable_custom_tag_end):
* gtk/gtkmain.c:
* gtk/gtknotebook.c: (gtk_notebook_buildable_init),
(gtk_notebook_buildable_add):
* gtk/gtksizegroup.c: (gtk_size_group_buildable_init),
(size_group_start_element),
(gtk_size_group_buildable_custom_tag_start),
(gtk_size_group_buildable_custom_finished):
* gtk/gtktreestore.c: (gtk_tree_store_buildable_init),
(tree_model_start_element),
(gtk_tree_store_buildable_custom_tag_start),
(gtk_tree_store_buildable_custom_finished):
* gtk/gtktreeview.c: (gtk_tree_view_buildable_init),
(gtk_tree_view_buildable_add):
* gtk/gtktreeviewcolumn.c: (gtk_tree_view_column_buildable_init):
* gtk/gtkuimanager.c: (gtk_ui_manager_buildable_init),
(gtk_ui_manager_buildable_add),
(gtk_ui_manager_buildable_construct_child),
(gtk_ui_manager_buildable_custom_tag_start),
(gtk_ui_manager_buildable_custom_tag_end):
* gtk/gtkwidget.c: (gtk_widget_get_type),
(gtk_widget_buildable_interface_init),
(gtk_widget_buildable_set_name), (gtk_widget_buildable_get_name),
(gtk_widget_buildable_set_property),
(gtk_widget_buildable_parser_finshed), (accel_group_start_element),
(gtk_widget_buildable_custom_tag_start),
(gtk_widget_buildable_custom_finshed):
* gtk/gtkwindow.c: (gtk_window_buildable_interface_init),
(gtk_window_buildable_set_property),
(gtk_window_buildable_parser_finished):
* tests/Makefile.am:
* tests/buildertest.c: (builder_new_from_string), (test_parser),
(signal_normal), (signal_after), (signal_object),
(signal_object_after), (signal_first), (signal_second),
(signal_extra), (signal_extra2), (test_connect_signals),
(test_uimanager_simple), (test_domain), (test_translation),
(test_sizegroup), (test_list_store), (test_tree_store),
(test_types), (test_spin_button), (test_notebook),
(test_construct_only_property), (test_children),
(test_child_properties), (test_treeview_column), (test_icon_view),
(test_combo_box), (test_combo_box_entry), (test_cell_view),
(test_dialog), (test_accelerators), (test_widget), (main):
Add GtkBuilder, fixes #172535
svn path=/trunk/; revision=18141
2007-06-15 17:53:46 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2007-06-19 12:23:36 +00:00
|
|
|
gtk_action_group_buildable_add_child (GtkBuildable *buildable,
|
|
|
|
GtkBuilder *builder,
|
|
|
|
GObject *child,
|
|
|
|
const gchar *type)
|
Add GtkBuilder, fixes #172535
2007-06-15 Johan Dahlin <jdahlin@async.com.br>
* demos/gtk-demo/Makefile.am:
* demos/gtk-demo/builder.c: (quit_activate), (about_activate),
(do_builder):
* demos/gtk-demo/demo.ui:
* docs/reference/gtk/gtk-docs.sgml:
* docs/reference/gtk/gtk-sections.txt:
* docs/reference/gtk/gtk.types:
* docs/reference/gtk/tmpl/gtkbuildable.sgml:
* docs/reference/gtk/tmpl/gtkbuilder.sgml:
* gtk/Makefile.am:
* gtk/gtk.h:
* gtk/gtk.symbols:
* gtk/gtkaction.c: (gtk_action_buildable_init),
(gtk_action_buildable_set_name), (gtk_action_buildable_get_name):
* gtk/gtkactiongroup.c: (gtk_action_group_get_type),
(gtk_action_group_buildable_init),
(gtk_action_group_buildable_add),
(gtk_action_group_buildable_set_name),
(gtk_action_group_buildable_get_name):
* gtk/gtkbuildable.c: (gtk_buildable_get_type),
(gtk_buildable_set_name), (gtk_buildable_get_name),
(gtk_buildable_add), (gtk_buildable_set_property),
(gtk_buildable_parser_finished), (gtk_buildable_construct_child),
(gtk_buildable_custom_tag_start), (gtk_buildable_custom_tag_end),
(gtk_buildable_custom_finished),
(gtk_buildable_get_internal_child):
* gtk/gtkbuildable.h:
* gtk/gtkbuilder.c: (gtk_builder_class_init), (gtk_builder_init),
(gtk_builder_finalize), (gtk_builder_set_property),
(gtk_builder_get_property), (_gtk_builder_resolve_type_lazily),
(gtk_builder_real_get_type_from_name),
(gtk_builder_get_parameters), (gtk_builder_get_internal_child),
(_gtk_builder_construct), (_gtk_builder_add),
(apply_delayed_properties), (_gtk_builder_finish),
(gtk_builder_new), (gtk_builder_add_from_file),
(gtk_builder_add_from_string), (gtk_builder_get_object),
(object_add_to_list), (gtk_builder_get_objects),
(gtk_builder_set_translation_domain),
(gtk_builder_get_translation_domain),
(gtk_builder_connect_signals_default),
(gtk_builder_connect_signals), (gtk_builder_connect_signals_full),
(gtk_builder_value_from_string),
(gtk_builder_value_from_string_type),
(_gtk_builder_enum_from_string), (_gtk_builder_flags_from_string),
(gtk_builder_get_type_from_name), (gtk_builder_error_quark):
* gtk/gtkbuilder.h:
* gtk/gtkbuilderparser.c: (state_push), (state_peek), (state_pop),
(error_missing_attribute), (error_invalid_attribute),
(error_invalid_tag), (builder_construct), (parse_object),
(free_object_info), (_get_type_by_symbol), (parse_child),
(free_child_info), (parse_property), (free_property_info),
(parse_signal), (_free_signal_info), (parse_interface),
(create_subparser), (free_subparser), (subparser_start),
(subparser_end), (parse_custom), (start_element), (end_element),
(text), (_gtk_builder_parser_parse_buffer):
* gtk/gtkbuilderprivate.h:
* gtk/gtkcelllayout.c: (attributes_start_element),
(attributes_text_element),
(_gtk_cell_layout_buildable_custom_tag_start),
(_gtk_cell_layout_buildable_custom_tag_end),
(_gtk_cell_layout_buildable_add):
* gtk/gtkcelllayout.h:
* gtk/gtkcellview.c: (gtk_cell_view_buildable_init),
(gtk_cell_view_buildable_custom_tag_start),
(gtk_cell_view_buildable_custom_tag_end):
* gtk/gtkcolorseldialog.c:
(gtk_color_selection_dialog_buildable_interface_init),
(gtk_color_selection_dialog_buildable_get_internal_child):
* gtk/gtkcombobox.c: (gtk_combo_box_buildable_init),
(gtk_combo_box_buildable_custom_tag_start),
(gtk_combo_box_buildable_custom_tag_end):
* gtk/gtkcomboboxentry.c:
(gtk_combo_box_entry_buildable_interface_init),
(gtk_combo_box_entry_buildable_get_internal_child):
* gtk/gtkcontainer.c: (gtk_container_get_type),
(gtk_container_buildable_init), (gtk_container_buildable_add),
(gtk_container_buildable_set_child_property),
(attributes_start_element), (attributes_text_element),
(gtk_container_buildable_custom_tag_start),
(gtk_container_buildable_custom_tag_end):
* gtk/gtkdebug.h:
* gtk/gtkdialog.c: (gtk_dialog_buildable_interface_init),
(gtk_dialog_buildable_get_internal_child),
(attributes_start_element), (attributes_text_element),
(gtk_dialog_buildable_custom_tag_start),
(gtk_dialog_buildable_custom_finished):
* gtk/gtkentrycompletion.c: (gtk_entry_completion_buildable_init):
* gtk/gtkexpander.c: (gtk_expander_buildable_add),
(gtk_expander_buildable_init):
* gtk/gtkfontsel.c:
(gtk_font_selection_dialog_buildable_interface_init),
(gtk_font_selection_dialog_buildable_get_internal_child):
* gtk/gtkframe.c: (gtk_frame_buildable_init),
(gtk_frame_buildable_add):
* gtk/gtkiconview.c: (gtk_icon_view_buildable_init),
(gtk_icon_view_buildable_custom_tag_start),
(gtk_icon_view_buildable_custom_tag_end):
* gtk/gtkliststore.c: (gtk_list_store_buildable_init),
(list_store_start_element), (list_store_end_element),
(list_store_text), (gtk_list_store_buildable_custom_tag_start),
(gtk_list_store_buildable_custom_tag_end):
* gtk/gtkmain.c:
* gtk/gtknotebook.c: (gtk_notebook_buildable_init),
(gtk_notebook_buildable_add):
* gtk/gtksizegroup.c: (gtk_size_group_buildable_init),
(size_group_start_element),
(gtk_size_group_buildable_custom_tag_start),
(gtk_size_group_buildable_custom_finished):
* gtk/gtktreestore.c: (gtk_tree_store_buildable_init),
(tree_model_start_element),
(gtk_tree_store_buildable_custom_tag_start),
(gtk_tree_store_buildable_custom_finished):
* gtk/gtktreeview.c: (gtk_tree_view_buildable_init),
(gtk_tree_view_buildable_add):
* gtk/gtktreeviewcolumn.c: (gtk_tree_view_column_buildable_init):
* gtk/gtkuimanager.c: (gtk_ui_manager_buildable_init),
(gtk_ui_manager_buildable_add),
(gtk_ui_manager_buildable_construct_child),
(gtk_ui_manager_buildable_custom_tag_start),
(gtk_ui_manager_buildable_custom_tag_end):
* gtk/gtkwidget.c: (gtk_widget_get_type),
(gtk_widget_buildable_interface_init),
(gtk_widget_buildable_set_name), (gtk_widget_buildable_get_name),
(gtk_widget_buildable_set_property),
(gtk_widget_buildable_parser_finshed), (accel_group_start_element),
(gtk_widget_buildable_custom_tag_start),
(gtk_widget_buildable_custom_finshed):
* gtk/gtkwindow.c: (gtk_window_buildable_interface_init),
(gtk_window_buildable_set_property),
(gtk_window_buildable_parser_finished):
* tests/Makefile.am:
* tests/buildertest.c: (builder_new_from_string), (test_parser),
(signal_normal), (signal_after), (signal_object),
(signal_object_after), (signal_first), (signal_second),
(signal_extra), (signal_extra2), (test_connect_signals),
(test_uimanager_simple), (test_domain), (test_translation),
(test_sizegroup), (test_list_store), (test_tree_store),
(test_types), (test_spin_button), (test_notebook),
(test_construct_only_property), (test_children),
(test_child_properties), (test_treeview_column), (test_icon_view),
(test_combo_box), (test_combo_box_entry), (test_cell_view),
(test_dialog), (test_accelerators), (test_widget), (main):
Add GtkBuilder, fixes #172535
svn path=/trunk/; revision=18141
2007-06-15 17:53:46 +00:00
|
|
|
{
|
2007-07-09 13:40:10 +00:00
|
|
|
gtk_action_group_add_action_with_accel (GTK_ACTION_GROUP (buildable),
|
|
|
|
GTK_ACTION (child), NULL);
|
Add GtkBuilder, fixes #172535
2007-06-15 Johan Dahlin <jdahlin@async.com.br>
* demos/gtk-demo/Makefile.am:
* demos/gtk-demo/builder.c: (quit_activate), (about_activate),
(do_builder):
* demos/gtk-demo/demo.ui:
* docs/reference/gtk/gtk-docs.sgml:
* docs/reference/gtk/gtk-sections.txt:
* docs/reference/gtk/gtk.types:
* docs/reference/gtk/tmpl/gtkbuildable.sgml:
* docs/reference/gtk/tmpl/gtkbuilder.sgml:
* gtk/Makefile.am:
* gtk/gtk.h:
* gtk/gtk.symbols:
* gtk/gtkaction.c: (gtk_action_buildable_init),
(gtk_action_buildable_set_name), (gtk_action_buildable_get_name):
* gtk/gtkactiongroup.c: (gtk_action_group_get_type),
(gtk_action_group_buildable_init),
(gtk_action_group_buildable_add),
(gtk_action_group_buildable_set_name),
(gtk_action_group_buildable_get_name):
* gtk/gtkbuildable.c: (gtk_buildable_get_type),
(gtk_buildable_set_name), (gtk_buildable_get_name),
(gtk_buildable_add), (gtk_buildable_set_property),
(gtk_buildable_parser_finished), (gtk_buildable_construct_child),
(gtk_buildable_custom_tag_start), (gtk_buildable_custom_tag_end),
(gtk_buildable_custom_finished),
(gtk_buildable_get_internal_child):
* gtk/gtkbuildable.h:
* gtk/gtkbuilder.c: (gtk_builder_class_init), (gtk_builder_init),
(gtk_builder_finalize), (gtk_builder_set_property),
(gtk_builder_get_property), (_gtk_builder_resolve_type_lazily),
(gtk_builder_real_get_type_from_name),
(gtk_builder_get_parameters), (gtk_builder_get_internal_child),
(_gtk_builder_construct), (_gtk_builder_add),
(apply_delayed_properties), (_gtk_builder_finish),
(gtk_builder_new), (gtk_builder_add_from_file),
(gtk_builder_add_from_string), (gtk_builder_get_object),
(object_add_to_list), (gtk_builder_get_objects),
(gtk_builder_set_translation_domain),
(gtk_builder_get_translation_domain),
(gtk_builder_connect_signals_default),
(gtk_builder_connect_signals), (gtk_builder_connect_signals_full),
(gtk_builder_value_from_string),
(gtk_builder_value_from_string_type),
(_gtk_builder_enum_from_string), (_gtk_builder_flags_from_string),
(gtk_builder_get_type_from_name), (gtk_builder_error_quark):
* gtk/gtkbuilder.h:
* gtk/gtkbuilderparser.c: (state_push), (state_peek), (state_pop),
(error_missing_attribute), (error_invalid_attribute),
(error_invalid_tag), (builder_construct), (parse_object),
(free_object_info), (_get_type_by_symbol), (parse_child),
(free_child_info), (parse_property), (free_property_info),
(parse_signal), (_free_signal_info), (parse_interface),
(create_subparser), (free_subparser), (subparser_start),
(subparser_end), (parse_custom), (start_element), (end_element),
(text), (_gtk_builder_parser_parse_buffer):
* gtk/gtkbuilderprivate.h:
* gtk/gtkcelllayout.c: (attributes_start_element),
(attributes_text_element),
(_gtk_cell_layout_buildable_custom_tag_start),
(_gtk_cell_layout_buildable_custom_tag_end),
(_gtk_cell_layout_buildable_add):
* gtk/gtkcelllayout.h:
* gtk/gtkcellview.c: (gtk_cell_view_buildable_init),
(gtk_cell_view_buildable_custom_tag_start),
(gtk_cell_view_buildable_custom_tag_end):
* gtk/gtkcolorseldialog.c:
(gtk_color_selection_dialog_buildable_interface_init),
(gtk_color_selection_dialog_buildable_get_internal_child):
* gtk/gtkcombobox.c: (gtk_combo_box_buildable_init),
(gtk_combo_box_buildable_custom_tag_start),
(gtk_combo_box_buildable_custom_tag_end):
* gtk/gtkcomboboxentry.c:
(gtk_combo_box_entry_buildable_interface_init),
(gtk_combo_box_entry_buildable_get_internal_child):
* gtk/gtkcontainer.c: (gtk_container_get_type),
(gtk_container_buildable_init), (gtk_container_buildable_add),
(gtk_container_buildable_set_child_property),
(attributes_start_element), (attributes_text_element),
(gtk_container_buildable_custom_tag_start),
(gtk_container_buildable_custom_tag_end):
* gtk/gtkdebug.h:
* gtk/gtkdialog.c: (gtk_dialog_buildable_interface_init),
(gtk_dialog_buildable_get_internal_child),
(attributes_start_element), (attributes_text_element),
(gtk_dialog_buildable_custom_tag_start),
(gtk_dialog_buildable_custom_finished):
* gtk/gtkentrycompletion.c: (gtk_entry_completion_buildable_init):
* gtk/gtkexpander.c: (gtk_expander_buildable_add),
(gtk_expander_buildable_init):
* gtk/gtkfontsel.c:
(gtk_font_selection_dialog_buildable_interface_init),
(gtk_font_selection_dialog_buildable_get_internal_child):
* gtk/gtkframe.c: (gtk_frame_buildable_init),
(gtk_frame_buildable_add):
* gtk/gtkiconview.c: (gtk_icon_view_buildable_init),
(gtk_icon_view_buildable_custom_tag_start),
(gtk_icon_view_buildable_custom_tag_end):
* gtk/gtkliststore.c: (gtk_list_store_buildable_init),
(list_store_start_element), (list_store_end_element),
(list_store_text), (gtk_list_store_buildable_custom_tag_start),
(gtk_list_store_buildable_custom_tag_end):
* gtk/gtkmain.c:
* gtk/gtknotebook.c: (gtk_notebook_buildable_init),
(gtk_notebook_buildable_add):
* gtk/gtksizegroup.c: (gtk_size_group_buildable_init),
(size_group_start_element),
(gtk_size_group_buildable_custom_tag_start),
(gtk_size_group_buildable_custom_finished):
* gtk/gtktreestore.c: (gtk_tree_store_buildable_init),
(tree_model_start_element),
(gtk_tree_store_buildable_custom_tag_start),
(gtk_tree_store_buildable_custom_finished):
* gtk/gtktreeview.c: (gtk_tree_view_buildable_init),
(gtk_tree_view_buildable_add):
* gtk/gtktreeviewcolumn.c: (gtk_tree_view_column_buildable_init):
* gtk/gtkuimanager.c: (gtk_ui_manager_buildable_init),
(gtk_ui_manager_buildable_add),
(gtk_ui_manager_buildable_construct_child),
(gtk_ui_manager_buildable_custom_tag_start),
(gtk_ui_manager_buildable_custom_tag_end):
* gtk/gtkwidget.c: (gtk_widget_get_type),
(gtk_widget_buildable_interface_init),
(gtk_widget_buildable_set_name), (gtk_widget_buildable_get_name),
(gtk_widget_buildable_set_property),
(gtk_widget_buildable_parser_finshed), (accel_group_start_element),
(gtk_widget_buildable_custom_tag_start),
(gtk_widget_buildable_custom_finshed):
* gtk/gtkwindow.c: (gtk_window_buildable_interface_init),
(gtk_window_buildable_set_property),
(gtk_window_buildable_parser_finished):
* tests/Makefile.am:
* tests/buildertest.c: (builder_new_from_string), (test_parser),
(signal_normal), (signal_after), (signal_object),
(signal_object_after), (signal_first), (signal_second),
(signal_extra), (signal_extra2), (test_connect_signals),
(test_uimanager_simple), (test_domain), (test_translation),
(test_sizegroup), (test_list_store), (test_tree_store),
(test_types), (test_spin_button), (test_notebook),
(test_construct_only_property), (test_children),
(test_child_properties), (test_treeview_column), (test_icon_view),
(test_combo_box), (test_combo_box_entry), (test_cell_view),
(test_dialog), (test_accelerators), (test_widget), (main):
Add GtkBuilder, fixes #172535
svn path=/trunk/; revision=18141
2007-06-15 17:53:46 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
gtk_action_group_buildable_set_name (GtkBuildable *buildable,
|
|
|
|
const gchar *name)
|
|
|
|
{
|
|
|
|
GtkActionGroup *self = GTK_ACTION_GROUP (buildable);
|
2010-05-22 23:25:06 +00:00
|
|
|
GtkActionGroupPrivate *private = self->priv;
|
2008-06-20 10:58:40 +00:00
|
|
|
|
|
|
|
private->name = g_strdup (name);
|
Add GtkBuilder, fixes #172535
2007-06-15 Johan Dahlin <jdahlin@async.com.br>
* demos/gtk-demo/Makefile.am:
* demos/gtk-demo/builder.c: (quit_activate), (about_activate),
(do_builder):
* demos/gtk-demo/demo.ui:
* docs/reference/gtk/gtk-docs.sgml:
* docs/reference/gtk/gtk-sections.txt:
* docs/reference/gtk/gtk.types:
* docs/reference/gtk/tmpl/gtkbuildable.sgml:
* docs/reference/gtk/tmpl/gtkbuilder.sgml:
* gtk/Makefile.am:
* gtk/gtk.h:
* gtk/gtk.symbols:
* gtk/gtkaction.c: (gtk_action_buildable_init),
(gtk_action_buildable_set_name), (gtk_action_buildable_get_name):
* gtk/gtkactiongroup.c: (gtk_action_group_get_type),
(gtk_action_group_buildable_init),
(gtk_action_group_buildable_add),
(gtk_action_group_buildable_set_name),
(gtk_action_group_buildable_get_name):
* gtk/gtkbuildable.c: (gtk_buildable_get_type),
(gtk_buildable_set_name), (gtk_buildable_get_name),
(gtk_buildable_add), (gtk_buildable_set_property),
(gtk_buildable_parser_finished), (gtk_buildable_construct_child),
(gtk_buildable_custom_tag_start), (gtk_buildable_custom_tag_end),
(gtk_buildable_custom_finished),
(gtk_buildable_get_internal_child):
* gtk/gtkbuildable.h:
* gtk/gtkbuilder.c: (gtk_builder_class_init), (gtk_builder_init),
(gtk_builder_finalize), (gtk_builder_set_property),
(gtk_builder_get_property), (_gtk_builder_resolve_type_lazily),
(gtk_builder_real_get_type_from_name),
(gtk_builder_get_parameters), (gtk_builder_get_internal_child),
(_gtk_builder_construct), (_gtk_builder_add),
(apply_delayed_properties), (_gtk_builder_finish),
(gtk_builder_new), (gtk_builder_add_from_file),
(gtk_builder_add_from_string), (gtk_builder_get_object),
(object_add_to_list), (gtk_builder_get_objects),
(gtk_builder_set_translation_domain),
(gtk_builder_get_translation_domain),
(gtk_builder_connect_signals_default),
(gtk_builder_connect_signals), (gtk_builder_connect_signals_full),
(gtk_builder_value_from_string),
(gtk_builder_value_from_string_type),
(_gtk_builder_enum_from_string), (_gtk_builder_flags_from_string),
(gtk_builder_get_type_from_name), (gtk_builder_error_quark):
* gtk/gtkbuilder.h:
* gtk/gtkbuilderparser.c: (state_push), (state_peek), (state_pop),
(error_missing_attribute), (error_invalid_attribute),
(error_invalid_tag), (builder_construct), (parse_object),
(free_object_info), (_get_type_by_symbol), (parse_child),
(free_child_info), (parse_property), (free_property_info),
(parse_signal), (_free_signal_info), (parse_interface),
(create_subparser), (free_subparser), (subparser_start),
(subparser_end), (parse_custom), (start_element), (end_element),
(text), (_gtk_builder_parser_parse_buffer):
* gtk/gtkbuilderprivate.h:
* gtk/gtkcelllayout.c: (attributes_start_element),
(attributes_text_element),
(_gtk_cell_layout_buildable_custom_tag_start),
(_gtk_cell_layout_buildable_custom_tag_end),
(_gtk_cell_layout_buildable_add):
* gtk/gtkcelllayout.h:
* gtk/gtkcellview.c: (gtk_cell_view_buildable_init),
(gtk_cell_view_buildable_custom_tag_start),
(gtk_cell_view_buildable_custom_tag_end):
* gtk/gtkcolorseldialog.c:
(gtk_color_selection_dialog_buildable_interface_init),
(gtk_color_selection_dialog_buildable_get_internal_child):
* gtk/gtkcombobox.c: (gtk_combo_box_buildable_init),
(gtk_combo_box_buildable_custom_tag_start),
(gtk_combo_box_buildable_custom_tag_end):
* gtk/gtkcomboboxentry.c:
(gtk_combo_box_entry_buildable_interface_init),
(gtk_combo_box_entry_buildable_get_internal_child):
* gtk/gtkcontainer.c: (gtk_container_get_type),
(gtk_container_buildable_init), (gtk_container_buildable_add),
(gtk_container_buildable_set_child_property),
(attributes_start_element), (attributes_text_element),
(gtk_container_buildable_custom_tag_start),
(gtk_container_buildable_custom_tag_end):
* gtk/gtkdebug.h:
* gtk/gtkdialog.c: (gtk_dialog_buildable_interface_init),
(gtk_dialog_buildable_get_internal_child),
(attributes_start_element), (attributes_text_element),
(gtk_dialog_buildable_custom_tag_start),
(gtk_dialog_buildable_custom_finished):
* gtk/gtkentrycompletion.c: (gtk_entry_completion_buildable_init):
* gtk/gtkexpander.c: (gtk_expander_buildable_add),
(gtk_expander_buildable_init):
* gtk/gtkfontsel.c:
(gtk_font_selection_dialog_buildable_interface_init),
(gtk_font_selection_dialog_buildable_get_internal_child):
* gtk/gtkframe.c: (gtk_frame_buildable_init),
(gtk_frame_buildable_add):
* gtk/gtkiconview.c: (gtk_icon_view_buildable_init),
(gtk_icon_view_buildable_custom_tag_start),
(gtk_icon_view_buildable_custom_tag_end):
* gtk/gtkliststore.c: (gtk_list_store_buildable_init),
(list_store_start_element), (list_store_end_element),
(list_store_text), (gtk_list_store_buildable_custom_tag_start),
(gtk_list_store_buildable_custom_tag_end):
* gtk/gtkmain.c:
* gtk/gtknotebook.c: (gtk_notebook_buildable_init),
(gtk_notebook_buildable_add):
* gtk/gtksizegroup.c: (gtk_size_group_buildable_init),
(size_group_start_element),
(gtk_size_group_buildable_custom_tag_start),
(gtk_size_group_buildable_custom_finished):
* gtk/gtktreestore.c: (gtk_tree_store_buildable_init),
(tree_model_start_element),
(gtk_tree_store_buildable_custom_tag_start),
(gtk_tree_store_buildable_custom_finished):
* gtk/gtktreeview.c: (gtk_tree_view_buildable_init),
(gtk_tree_view_buildable_add):
* gtk/gtktreeviewcolumn.c: (gtk_tree_view_column_buildable_init):
* gtk/gtkuimanager.c: (gtk_ui_manager_buildable_init),
(gtk_ui_manager_buildable_add),
(gtk_ui_manager_buildable_construct_child),
(gtk_ui_manager_buildable_custom_tag_start),
(gtk_ui_manager_buildable_custom_tag_end):
* gtk/gtkwidget.c: (gtk_widget_get_type),
(gtk_widget_buildable_interface_init),
(gtk_widget_buildable_set_name), (gtk_widget_buildable_get_name),
(gtk_widget_buildable_set_property),
(gtk_widget_buildable_parser_finshed), (accel_group_start_element),
(gtk_widget_buildable_custom_tag_start),
(gtk_widget_buildable_custom_finshed):
* gtk/gtkwindow.c: (gtk_window_buildable_interface_init),
(gtk_window_buildable_set_property),
(gtk_window_buildable_parser_finished):
* tests/Makefile.am:
* tests/buildertest.c: (builder_new_from_string), (test_parser),
(signal_normal), (signal_after), (signal_object),
(signal_object_after), (signal_first), (signal_second),
(signal_extra), (signal_extra2), (test_connect_signals),
(test_uimanager_simple), (test_domain), (test_translation),
(test_sizegroup), (test_list_store), (test_tree_store),
(test_types), (test_spin_button), (test_notebook),
(test_construct_only_property), (test_children),
(test_child_properties), (test_treeview_column), (test_icon_view),
(test_combo_box), (test_combo_box_entry), (test_cell_view),
(test_dialog), (test_accelerators), (test_widget), (main):
Add GtkBuilder, fixes #172535
svn path=/trunk/; revision=18141
2007-06-15 17:53:46 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static const gchar *
|
|
|
|
gtk_action_group_buildable_get_name (GtkBuildable *buildable)
|
|
|
|
{
|
|
|
|
GtkActionGroup *self = GTK_ACTION_GROUP (buildable);
|
2010-05-22 23:25:06 +00:00
|
|
|
GtkActionGroupPrivate *private = self->priv;
|
|
|
|
|
2008-06-20 10:58:40 +00:00
|
|
|
return private->name;
|
Add GtkBuilder, fixes #172535
2007-06-15 Johan Dahlin <jdahlin@async.com.br>
* demos/gtk-demo/Makefile.am:
* demos/gtk-demo/builder.c: (quit_activate), (about_activate),
(do_builder):
* demos/gtk-demo/demo.ui:
* docs/reference/gtk/gtk-docs.sgml:
* docs/reference/gtk/gtk-sections.txt:
* docs/reference/gtk/gtk.types:
* docs/reference/gtk/tmpl/gtkbuildable.sgml:
* docs/reference/gtk/tmpl/gtkbuilder.sgml:
* gtk/Makefile.am:
* gtk/gtk.h:
* gtk/gtk.symbols:
* gtk/gtkaction.c: (gtk_action_buildable_init),
(gtk_action_buildable_set_name), (gtk_action_buildable_get_name):
* gtk/gtkactiongroup.c: (gtk_action_group_get_type),
(gtk_action_group_buildable_init),
(gtk_action_group_buildable_add),
(gtk_action_group_buildable_set_name),
(gtk_action_group_buildable_get_name):
* gtk/gtkbuildable.c: (gtk_buildable_get_type),
(gtk_buildable_set_name), (gtk_buildable_get_name),
(gtk_buildable_add), (gtk_buildable_set_property),
(gtk_buildable_parser_finished), (gtk_buildable_construct_child),
(gtk_buildable_custom_tag_start), (gtk_buildable_custom_tag_end),
(gtk_buildable_custom_finished),
(gtk_buildable_get_internal_child):
* gtk/gtkbuildable.h:
* gtk/gtkbuilder.c: (gtk_builder_class_init), (gtk_builder_init),
(gtk_builder_finalize), (gtk_builder_set_property),
(gtk_builder_get_property), (_gtk_builder_resolve_type_lazily),
(gtk_builder_real_get_type_from_name),
(gtk_builder_get_parameters), (gtk_builder_get_internal_child),
(_gtk_builder_construct), (_gtk_builder_add),
(apply_delayed_properties), (_gtk_builder_finish),
(gtk_builder_new), (gtk_builder_add_from_file),
(gtk_builder_add_from_string), (gtk_builder_get_object),
(object_add_to_list), (gtk_builder_get_objects),
(gtk_builder_set_translation_domain),
(gtk_builder_get_translation_domain),
(gtk_builder_connect_signals_default),
(gtk_builder_connect_signals), (gtk_builder_connect_signals_full),
(gtk_builder_value_from_string),
(gtk_builder_value_from_string_type),
(_gtk_builder_enum_from_string), (_gtk_builder_flags_from_string),
(gtk_builder_get_type_from_name), (gtk_builder_error_quark):
* gtk/gtkbuilder.h:
* gtk/gtkbuilderparser.c: (state_push), (state_peek), (state_pop),
(error_missing_attribute), (error_invalid_attribute),
(error_invalid_tag), (builder_construct), (parse_object),
(free_object_info), (_get_type_by_symbol), (parse_child),
(free_child_info), (parse_property), (free_property_info),
(parse_signal), (_free_signal_info), (parse_interface),
(create_subparser), (free_subparser), (subparser_start),
(subparser_end), (parse_custom), (start_element), (end_element),
(text), (_gtk_builder_parser_parse_buffer):
* gtk/gtkbuilderprivate.h:
* gtk/gtkcelllayout.c: (attributes_start_element),
(attributes_text_element),
(_gtk_cell_layout_buildable_custom_tag_start),
(_gtk_cell_layout_buildable_custom_tag_end),
(_gtk_cell_layout_buildable_add):
* gtk/gtkcelllayout.h:
* gtk/gtkcellview.c: (gtk_cell_view_buildable_init),
(gtk_cell_view_buildable_custom_tag_start),
(gtk_cell_view_buildable_custom_tag_end):
* gtk/gtkcolorseldialog.c:
(gtk_color_selection_dialog_buildable_interface_init),
(gtk_color_selection_dialog_buildable_get_internal_child):
* gtk/gtkcombobox.c: (gtk_combo_box_buildable_init),
(gtk_combo_box_buildable_custom_tag_start),
(gtk_combo_box_buildable_custom_tag_end):
* gtk/gtkcomboboxentry.c:
(gtk_combo_box_entry_buildable_interface_init),
(gtk_combo_box_entry_buildable_get_internal_child):
* gtk/gtkcontainer.c: (gtk_container_get_type),
(gtk_container_buildable_init), (gtk_container_buildable_add),
(gtk_container_buildable_set_child_property),
(attributes_start_element), (attributes_text_element),
(gtk_container_buildable_custom_tag_start),
(gtk_container_buildable_custom_tag_end):
* gtk/gtkdebug.h:
* gtk/gtkdialog.c: (gtk_dialog_buildable_interface_init),
(gtk_dialog_buildable_get_internal_child),
(attributes_start_element), (attributes_text_element),
(gtk_dialog_buildable_custom_tag_start),
(gtk_dialog_buildable_custom_finished):
* gtk/gtkentrycompletion.c: (gtk_entry_completion_buildable_init):
* gtk/gtkexpander.c: (gtk_expander_buildable_add),
(gtk_expander_buildable_init):
* gtk/gtkfontsel.c:
(gtk_font_selection_dialog_buildable_interface_init),
(gtk_font_selection_dialog_buildable_get_internal_child):
* gtk/gtkframe.c: (gtk_frame_buildable_init),
(gtk_frame_buildable_add):
* gtk/gtkiconview.c: (gtk_icon_view_buildable_init),
(gtk_icon_view_buildable_custom_tag_start),
(gtk_icon_view_buildable_custom_tag_end):
* gtk/gtkliststore.c: (gtk_list_store_buildable_init),
(list_store_start_element), (list_store_end_element),
(list_store_text), (gtk_list_store_buildable_custom_tag_start),
(gtk_list_store_buildable_custom_tag_end):
* gtk/gtkmain.c:
* gtk/gtknotebook.c: (gtk_notebook_buildable_init),
(gtk_notebook_buildable_add):
* gtk/gtksizegroup.c: (gtk_size_group_buildable_init),
(size_group_start_element),
(gtk_size_group_buildable_custom_tag_start),
(gtk_size_group_buildable_custom_finished):
* gtk/gtktreestore.c: (gtk_tree_store_buildable_init),
(tree_model_start_element),
(gtk_tree_store_buildable_custom_tag_start),
(gtk_tree_store_buildable_custom_finished):
* gtk/gtktreeview.c: (gtk_tree_view_buildable_init),
(gtk_tree_view_buildable_add):
* gtk/gtktreeviewcolumn.c: (gtk_tree_view_column_buildable_init):
* gtk/gtkuimanager.c: (gtk_ui_manager_buildable_init),
(gtk_ui_manager_buildable_add),
(gtk_ui_manager_buildable_construct_child),
(gtk_ui_manager_buildable_custom_tag_start),
(gtk_ui_manager_buildable_custom_tag_end):
* gtk/gtkwidget.c: (gtk_widget_get_type),
(gtk_widget_buildable_interface_init),
(gtk_widget_buildable_set_name), (gtk_widget_buildable_get_name),
(gtk_widget_buildable_set_property),
(gtk_widget_buildable_parser_finshed), (accel_group_start_element),
(gtk_widget_buildable_custom_tag_start),
(gtk_widget_buildable_custom_finshed):
* gtk/gtkwindow.c: (gtk_window_buildable_interface_init),
(gtk_window_buildable_set_property),
(gtk_window_buildable_parser_finished):
* tests/Makefile.am:
* tests/buildertest.c: (builder_new_from_string), (test_parser),
(signal_normal), (signal_after), (signal_object),
(signal_object_after), (signal_first), (signal_second),
(signal_extra), (signal_extra2), (test_connect_signals),
(test_uimanager_simple), (test_domain), (test_translation),
(test_sizegroup), (test_list_store), (test_tree_store),
(test_types), (test_spin_button), (test_notebook),
(test_construct_only_property), (test_children),
(test_child_properties), (test_treeview_column), (test_icon_view),
(test_combo_box), (test_combo_box_entry), (test_cell_view),
(test_dialog), (test_accelerators), (test_widget), (main):
Add GtkBuilder, fixes #172535
svn path=/trunk/; revision=18141
2007-06-15 17:53:46 +00:00
|
|
|
}
|
|
|
|
|
2007-07-09 13:40:10 +00:00
|
|
|
typedef struct {
|
2008-06-19 12:15:07 +00:00
|
|
|
GObject *child;
|
|
|
|
guint key;
|
|
|
|
GdkModifierType modifiers;
|
2007-07-09 13:40:10 +00:00
|
|
|
} AcceleratorParserData;
|
|
|
|
|
|
|
|
static void
|
|
|
|
accelerator_start_element (GMarkupParseContext *context,
|
|
|
|
const gchar *element_name,
|
|
|
|
const gchar **names,
|
|
|
|
const gchar **values,
|
|
|
|
gpointer user_data,
|
|
|
|
GError **error)
|
|
|
|
{
|
|
|
|
gint i;
|
|
|
|
guint key = 0;
|
2008-06-19 12:15:07 +00:00
|
|
|
GdkModifierType modifiers = 0;
|
2007-07-09 13:40:10 +00:00
|
|
|
AcceleratorParserData *parser_data = (AcceleratorParserData*)user_data;
|
|
|
|
|
|
|
|
if (strcmp (element_name, "accelerator") != 0)
|
|
|
|
g_warning ("Unknown <accelerator> tag: %s", element_name);
|
|
|
|
|
|
|
|
for (i = 0; names[i]; i++)
|
|
|
|
{
|
|
|
|
if (strcmp (names[i], "key") == 0)
|
|
|
|
key = gdk_keyval_from_name (values[i]);
|
|
|
|
else if (strcmp (names[i], "modifiers") == 0)
|
|
|
|
{
|
|
|
|
if (!_gtk_builder_flags_from_string (GDK_TYPE_MODIFIER_TYPE,
|
|
|
|
values[i],
|
|
|
|
&modifiers,
|
|
|
|
error))
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (key == 0)
|
|
|
|
{
|
|
|
|
g_warning ("<accelerator> requires a key attribute");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
parser_data->key = key;
|
2008-06-19 12:15:07 +00:00
|
|
|
parser_data->modifiers = modifiers;
|
2007-07-09 13:40:10 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static const GMarkupParser accelerator_parser =
|
|
|
|
{
|
|
|
|
accelerator_start_element
|
|
|
|
};
|
|
|
|
|
|
|
|
static gboolean
|
|
|
|
gtk_action_group_buildable_custom_tag_start (GtkBuildable *buildable,
|
|
|
|
GtkBuilder *builder,
|
|
|
|
GObject *child,
|
|
|
|
const gchar *tagname,
|
|
|
|
GMarkupParser *parser,
|
|
|
|
gpointer *user_data)
|
|
|
|
{
|
|
|
|
AcceleratorParserData *parser_data;
|
|
|
|
|
|
|
|
if (child && strcmp (tagname, "accelerator") == 0)
|
|
|
|
{
|
|
|
|
parser_data = g_slice_new0 (AcceleratorParserData);
|
|
|
|
parser_data->child = child;
|
|
|
|
*user_data = parser_data;
|
|
|
|
*parser = accelerator_parser;
|
|
|
|
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
gtk_action_group_buildable_custom_tag_end (GtkBuildable *buildable,
|
|
|
|
GtkBuilder *builder,
|
|
|
|
GObject *child,
|
|
|
|
const gchar *tagname,
|
|
|
|
gpointer *user_data)
|
|
|
|
{
|
|
|
|
AcceleratorParserData *data;
|
|
|
|
|
|
|
|
if (strcmp (tagname, "accelerator") == 0)
|
|
|
|
{
|
|
|
|
GtkActionGroup *action_group;
|
2008-06-20 10:58:40 +00:00
|
|
|
GtkActionGroupPrivate *private;
|
2007-07-09 13:40:10 +00:00
|
|
|
GtkAction *action;
|
|
|
|
gchar *accel_path;
|
|
|
|
|
|
|
|
data = (AcceleratorParserData*)user_data;
|
|
|
|
action_group = GTK_ACTION_GROUP (buildable);
|
2010-05-22 23:25:06 +00:00
|
|
|
private = action_group->priv;
|
2007-07-09 13:40:10 +00:00
|
|
|
action = GTK_ACTION (child);
|
|
|
|
|
|
|
|
accel_path = g_strconcat ("<Actions>/",
|
2008-06-20 10:58:40 +00:00
|
|
|
private->name, "/",
|
2007-07-09 13:40:10 +00:00
|
|
|
gtk_action_get_name (action), NULL);
|
|
|
|
|
|
|
|
if (gtk_accel_map_lookup_entry (accel_path, NULL))
|
|
|
|
gtk_accel_map_change_entry (accel_path, data->key, data->modifiers, TRUE);
|
|
|
|
else
|
|
|
|
gtk_accel_map_add_entry (accel_path, data->key, data->modifiers);
|
|
|
|
|
|
|
|
gtk_action_set_accel_path (action, accel_path);
|
|
|
|
|
|
|
|
g_free (accel_path);
|
|
|
|
g_slice_free (AcceleratorParserData, data);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
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;
|
2008-06-20 10:58:40 +00:00
|
|
|
GtkActionGroupPrivate *private;
|
2003-08-24 19:58:30 +00:00
|
|
|
|
|
|
|
self = g_object_new (GTK_TYPE_ACTION_GROUP, NULL);
|
2010-05-22 23:25:06 +00:00
|
|
|
private = self->priv;
|
2008-06-20 10:58:40 +00:00
|
|
|
private->name = g_strdup (name);
|
2003-08-24 19:58:30 +00:00
|
|
|
|
|
|
|
return self;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
gtk_action_group_finalize (GObject *object)
|
|
|
|
{
|
|
|
|
GtkActionGroup *self;
|
2008-06-20 10:58:40 +00:00
|
|
|
GtkActionGroupPrivate *private;
|
2003-08-24 19:58:30 +00:00
|
|
|
|
|
|
|
self = GTK_ACTION_GROUP (object);
|
2010-05-22 23:25:06 +00:00
|
|
|
private = self->priv;
|
2003-08-24 19:58:30 +00:00
|
|
|
|
2008-06-20 10:58:40 +00:00
|
|
|
g_free (private->name);
|
|
|
|
private->name = NULL;
|
2003-08-24 19:58:30 +00:00
|
|
|
|
2008-06-20 10:58:40 +00:00
|
|
|
g_hash_table_destroy (private->actions);
|
|
|
|
private->actions = NULL;
|
2003-08-24 19:58:30 +00:00
|
|
|
|
2008-06-20 10:58:40 +00:00
|
|
|
if (private->translate_notify)
|
|
|
|
private->translate_notify (private->translate_data);
|
2003-08-24 23:11:14 +00:00
|
|
|
|
2008-08-07 14:21:47 +00:00
|
|
|
parent_class->finalize (object);
|
2003-08-24 19:58:30 +00:00
|
|
|
}
|
|
|
|
|
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;
|
2008-06-20 10:58:40 +00:00
|
|
|
GtkActionGroupPrivate *private;
|
2003-10-25 21:34:24 +00:00
|
|
|
gchar *tmp;
|
|
|
|
|
|
|
|
self = GTK_ACTION_GROUP (object);
|
2010-05-22 23:25:06 +00:00
|
|
|
private = self->priv;
|
2003-10-25 21:34:24 +00:00
|
|
|
|
|
|
|
switch (prop_id)
|
|
|
|
{
|
|
|
|
case PROP_NAME:
|
2008-06-20 10:58:40 +00:00
|
|
|
tmp = private->name;
|
|
|
|
private->name = g_value_dup_string (value);
|
2003-10-25 21:34:24 +00:00
|
|
|
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;
|
2008-06-20 10:58:40 +00:00
|
|
|
GtkActionGroupPrivate *private;
|
2003-10-25 21:34:24 +00:00
|
|
|
|
|
|
|
self = GTK_ACTION_GROUP (object);
|
2010-05-22 23:25:06 +00:00
|
|
|
private = self->priv;
|
2003-10-25 21:34:24 +00:00
|
|
|
|
|
|
|
switch (prop_id)
|
|
|
|
{
|
|
|
|
case PROP_NAME:
|
2008-06-20 10:58:40 +00:00
|
|
|
g_value_set_string (value, private->name);
|
2003-10-25 21:34:24 +00:00
|
|
|
break;
|
2004-01-12 22:45:45 +00:00
|
|
|
case PROP_SENSITIVE:
|
2008-06-20 10:58:40 +00:00
|
|
|
g_value_set_boolean (value, private->sensitive);
|
2004-01-12 22:45:45 +00:00
|
|
|
break;
|
|
|
|
case PROP_VISIBLE:
|
2008-06-20 10:58:40 +00:00
|
|
|
g_value_set_boolean (value, private->visible);
|
2004-01-12 22:45:45 +00:00
|
|
|
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)
|
|
|
|
{
|
2008-06-20 10:58:40 +00:00
|
|
|
GtkActionGroupPrivate *private;
|
|
|
|
|
2010-05-22 23:25:06 +00:00
|
|
|
private = self->priv;
|
2008-06-20 10:58:40 +00:00
|
|
|
|
|
|
|
return g_hash_table_lookup (private->actions, action_name);
|
2003-08-24 19:58:30 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* 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
|
|
|
|
*/
|
2004-11-09 19:15:44 +00:00
|
|
|
G_CONST_RETURN gchar *
|
2003-08-24 19:58:30 +00:00
|
|
|
gtk_action_group_get_name (GtkActionGroup *action_group)
|
|
|
|
{
|
2008-06-20 10:58:40 +00:00
|
|
|
GtkActionGroupPrivate *private;
|
|
|
|
|
2003-08-24 19:58:30 +00:00
|
|
|
g_return_val_if_fail (GTK_IS_ACTION_GROUP (action_group), NULL);
|
|
|
|
|
2010-05-22 23:25:06 +00:00
|
|
|
private = action_group->priv;
|
2008-06-20 10:58:40 +00:00
|
|
|
|
|
|
|
return private->name;
|
2003-08-24 19:58:30 +00:00
|
|
|
}
|
|
|
|
|
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)
|
|
|
|
{
|
2008-06-20 10:58:40 +00:00
|
|
|
GtkActionGroupPrivate *private;
|
|
|
|
|
2004-01-12 22:45:45 +00:00
|
|
|
g_return_val_if_fail (GTK_IS_ACTION_GROUP (action_group), FALSE);
|
|
|
|
|
2010-05-22 23:25:06 +00:00
|
|
|
private = action_group->priv;
|
2008-06-20 10:58:40 +00:00
|
|
|
|
|
|
|
return private->sensitive;
|
2004-01-12 22:45:45 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2006-01-07 04:18:40 +00:00
|
|
|
cb_set_action_sensitivity (const gchar *name,
|
|
|
|
GtkAction *action)
|
2004-01-12 22:45:45 +00:00
|
|
|
{
|
2006-01-07 06:08:07 +00:00
|
|
|
/* Minor optimization, the action_groups state only affects actions
|
|
|
|
* that are themselves sensitive */
|
2009-01-23 15:15:28 +00:00
|
|
|
g_object_notify (G_OBJECT (action), "sensitive");
|
|
|
|
|
2004-01-12 22:45:45 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* gtk_action_group_set_sensitive:
|
|
|
|
* @action_group: the action group
|
|
|
|
* @sensitive: new sensitivity
|
|
|
|
*
|
|
|
|
* Changes the sensitivity of @action_group
|
|
|
|
*
|
|
|
|
* Since: 2.4
|
|
|
|
*/
|
|
|
|
void
|
2006-01-07 04:18:40 +00:00
|
|
|
gtk_action_group_set_sensitive (GtkActionGroup *action_group,
|
|
|
|
gboolean sensitive)
|
2004-01-12 22:45:45 +00:00
|
|
|
{
|
2008-06-20 10:58:40 +00:00
|
|
|
GtkActionGroupPrivate *private;
|
|
|
|
|
2004-01-12 22:45:45 +00:00
|
|
|
g_return_if_fail (GTK_IS_ACTION_GROUP (action_group));
|
|
|
|
|
2010-05-22 23:25:06 +00:00
|
|
|
private = action_group->priv;
|
2006-01-07 04:18:40 +00:00
|
|
|
sensitive = sensitive != FALSE;
|
|
|
|
|
2008-06-20 10:58:40 +00:00
|
|
|
if (private->sensitive != sensitive)
|
2004-01-12 22:45:45 +00:00
|
|
|
{
|
2008-06-20 10:58:40 +00:00
|
|
|
private->sensitive = sensitive;
|
|
|
|
g_hash_table_foreach (private->actions,
|
2004-01-12 22:45:45 +00:00
|
|
|
(GHFunc) cb_set_action_sensitivity, NULL);
|
2006-01-07 04:18:40 +00:00
|
|
|
|
|
|
|
g_object_notify (G_OBJECT (action_group), "sensitive");
|
2004-01-12 22:45:45 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* 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.
|
|
|
|
*
|
2004-11-01 16:09:23 +00:00
|
|
|
* Return value: %TRUE if the group is visible.
|
2004-01-12 22:45:45 +00:00
|
|
|
*
|
|
|
|
* Since: 2.4
|
|
|
|
*/
|
|
|
|
gboolean
|
|
|
|
gtk_action_group_get_visible (GtkActionGroup *action_group)
|
|
|
|
{
|
2008-06-20 10:58:40 +00:00
|
|
|
GtkActionGroupPrivate *private;
|
|
|
|
|
2004-01-12 22:45:45 +00:00
|
|
|
g_return_val_if_fail (GTK_IS_ACTION_GROUP (action_group), FALSE);
|
|
|
|
|
2010-05-22 23:25:06 +00:00
|
|
|
private = action_group->priv;
|
2008-06-20 10:58:40 +00:00
|
|
|
|
|
|
|
return private->visible;
|
2004-01-12 22:45:45 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2006-01-07 04:18:40 +00:00
|
|
|
cb_set_action_visiblity (const gchar *name,
|
|
|
|
GtkAction *action)
|
2004-01-12 22:45:45 +00:00
|
|
|
{
|
2006-01-07 06:08:07 +00:00
|
|
|
/* Minor optimization, the action_groups state only affects actions
|
|
|
|
* that are themselves visible */
|
2009-01-23 15:15:28 +00:00
|
|
|
g_object_notify (G_OBJECT (action), "visible");
|
2004-01-12 22:45:45 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* gtk_action_group_set_visible:
|
|
|
|
* @action_group: the action group
|
|
|
|
* @visible: new visiblity
|
|
|
|
*
|
|
|
|
* Changes the visible of @action_group.
|
|
|
|
*
|
|
|
|
* Since: 2.4
|
|
|
|
*/
|
|
|
|
void
|
2006-01-07 04:18:40 +00:00
|
|
|
gtk_action_group_set_visible (GtkActionGroup *action_group,
|
|
|
|
gboolean visible)
|
2004-01-12 22:45:45 +00:00
|
|
|
{
|
2008-06-20 10:58:40 +00:00
|
|
|
GtkActionGroupPrivate *private;
|
|
|
|
|
2004-01-12 22:45:45 +00:00
|
|
|
g_return_if_fail (GTK_IS_ACTION_GROUP (action_group));
|
|
|
|
|
2010-05-22 23:25:06 +00:00
|
|
|
private = action_group->priv;
|
2006-01-07 04:18:40 +00:00
|
|
|
visible = visible != FALSE;
|
|
|
|
|
2008-06-20 10:58:40 +00:00
|
|
|
if (private->visible != visible)
|
2004-01-12 22:45:45 +00:00
|
|
|
{
|
2008-06-20 10:58:40 +00:00
|
|
|
private->visible = visible;
|
|
|
|
g_hash_table_foreach (private->actions,
|
2004-01-12 22:45:45 +00:00
|
|
|
(GHFunc) cb_set_action_visiblity, NULL);
|
2006-01-07 04:18:40 +00:00
|
|
|
|
|
|
|
g_object_notify (G_OBJECT (action_group), "visible");
|
2004-01-12 22:45:45 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
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.
|
|
|
|
*
|
2010-04-07 13:24:28 +00:00
|
|
|
* Returns: (transfer none): the action, or %NULL if no action by that name exists
|
2003-08-24 19:58:30 +00:00
|
|
|
*
|
|
|
|
* 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);
|
|
|
|
|
2008-08-12 09:06:34 +00:00
|
|
|
return GTK_ACTION_GROUP_GET_CLASS (action_group)->get_action (action_group,
|
|
|
|
action_name);
|
2003-08-24 19:58:30 +00:00
|
|
|
}
|
|
|
|
|
2007-05-19 04:07:42 +00:00
|
|
|
static gboolean
|
|
|
|
check_unique_action (GtkActionGroup *action_group,
|
|
|
|
const gchar *action_name)
|
|
|
|
{
|
|
|
|
if (gtk_action_group_get_action (action_group, action_name) != NULL)
|
|
|
|
{
|
2008-06-20 10:58:40 +00:00
|
|
|
GtkActionGroupPrivate *private;
|
|
|
|
|
2010-05-22 23:25:06 +00:00
|
|
|
private = action_group->priv;
|
2008-06-20 10:58:40 +00:00
|
|
|
|
2007-05-19 04:07:42 +00:00
|
|
|
g_warning ("Refusing to add non-unique action '%s' to action group '%s'",
|
|
|
|
action_name,
|
2008-06-20 10:58:40 +00:00
|
|
|
private->name);
|
2007-05-19 04:07:42 +00:00
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
2003-08-24 19:58:30 +00:00
|
|
|
/**
|
|
|
|
* gtk_action_group_add_action:
|
|
|
|
* @action_group: the action group
|
|
|
|
* @action: an action
|
|
|
|
*
|
2004-04-13 19:22:35 +00:00
|
|
|
* Adds an action object to the action group. Note that this function
|
|
|
|
* does not set up the accel path of the action, which can lead to problems
|
|
|
|
* if a user tries to modify the accelerator of a menuitem associated with
|
|
|
|
* the action. Therefore you must either set the accel path yourself with
|
|
|
|
* gtk_action_set_accel_path(), or use
|
|
|
|
* <literal>gtk_action_group_add_action_with_accel (..., NULL)</literal>.
|
2003-08-24 19:58:30 +00:00
|
|
|
*
|
|
|
|
* Since: 2.4
|
|
|
|
*/
|
|
|
|
void
|
|
|
|
gtk_action_group_add_action (GtkActionGroup *action_group,
|
|
|
|
GtkAction *action)
|
|
|
|
{
|
2008-06-20 10:58:40 +00:00
|
|
|
GtkActionGroupPrivate *private;
|
2007-07-10 22:18:08 +00:00
|
|
|
const gchar *name;
|
|
|
|
|
2003-08-24 19:58:30 +00:00
|
|
|
g_return_if_fail (GTK_IS_ACTION_GROUP (action_group));
|
|
|
|
g_return_if_fail (GTK_IS_ACTION (action));
|
2007-07-10 22:18:08 +00:00
|
|
|
|
|
|
|
name = gtk_action_get_name (action);
|
|
|
|
g_return_if_fail (name != NULL);
|
2007-05-19 04:07:42 +00:00
|
|
|
|
2007-07-10 22:18:08 +00:00
|
|
|
if (!check_unique_action (action_group, name))
|
2007-05-19 04:07:42 +00:00
|
|
|
return;
|
2003-08-24 19:58:30 +00:00
|
|
|
|
2010-05-22 23:25:06 +00:00
|
|
|
private = action_group->priv;
|
2008-06-20 10:58:40 +00:00
|
|
|
|
|
|
|
g_hash_table_insert (private->actions,
|
2007-07-10 22:18:08 +00:00
|
|
|
(gpointer) name,
|
2003-08-24 19:58:30 +00:00
|
|
|
g_object_ref (action));
|
2006-01-07 04:18:40 +00:00
|
|
|
g_object_set (action, I_("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:
|
2009-12-10 10:23:40 +00:00
|
|
|
* @action_group: the action group
|
|
|
|
* @action: the action to add
|
|
|
|
* @accelerator: (allow-none): the accelerator for the action, in
|
|
|
|
* the format understood by gtk_accelerator_parse(), or "" for no accelerator, 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
|
2004-05-11 04:16:53 +00:00
|
|
|
* 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,
|
2006-01-07 04:18:40 +00:00
|
|
|
GtkAction *action,
|
|
|
|
const gchar *accelerator)
|
2004-01-02 23:14:28 +00:00
|
|
|
{
|
2008-06-20 10:58:40 +00:00
|
|
|
GtkActionGroupPrivate *private;
|
2004-01-02 23:14:28 +00:00
|
|
|
gchar *accel_path;
|
|
|
|
guint accel_key = 0;
|
|
|
|
GdkModifierType accel_mods;
|
2007-07-10 22:18:08 +00:00
|
|
|
const gchar *name;
|
2007-05-19 04:07:42 +00:00
|
|
|
|
2007-07-10 22:18:08 +00:00
|
|
|
name = gtk_action_get_name (action);
|
|
|
|
if (!check_unique_action (action_group, name))
|
2007-05-19 04:07:42 +00:00
|
|
|
return;
|
2004-01-02 23:14:28 +00:00
|
|
|
|
2010-05-22 23:25:06 +00:00
|
|
|
private = action_group->priv;
|
2004-01-02 23:14:28 +00:00
|
|
|
accel_path = g_strconcat ("<Actions>/",
|
2008-06-20 10:58:40 +00:00
|
|
|
private->name, "/", name, NULL);
|
2004-01-02 23:14:28 +00:00
|
|
|
|
|
|
|
if (accelerator)
|
2004-04-29 21:36:30 +00:00
|
|
|
{
|
2004-05-11 04:16:53 +00:00
|
|
|
if (accelerator[0] == 0)
|
|
|
|
accel_key = 0;
|
|
|
|
else
|
|
|
|
{
|
|
|
|
gtk_accelerator_parse (accelerator, &accel_key, &accel_mods);
|
|
|
|
if (accel_key == 0)
|
|
|
|
g_warning ("Unable to parse accelerator '%s' for action '%s'",
|
|
|
|
accelerator, name);
|
|
|
|
}
|
2004-04-29 21:36:30 +00:00
|
|
|
}
|
2007-07-10 22:18:08 +00:00
|
|
|
else
|
2004-01-02 23:14:28 +00:00
|
|
|
{
|
2007-07-10 22:18:08 +00:00
|
|
|
gchar *stock_id;
|
|
|
|
GtkStockItem stock_item;
|
|
|
|
|
|
|
|
g_object_get (action, "stock-id", &stock_id, NULL);
|
|
|
|
|
|
|
|
if (stock_id && gtk_stock_lookup (stock_id, &stock_item))
|
|
|
|
{
|
|
|
|
accel_key = stock_item.keyval;
|
|
|
|
accel_mods = stock_item.modifier;
|
|
|
|
}
|
|
|
|
|
|
|
|
g_free (stock_id);
|
2004-01-02 23:14:28 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if (accel_key)
|
2005-05-02 14:05:41 +00:00
|
|
|
gtk_accel_map_add_entry (accel_path, accel_key, accel_mods);
|
2004-01-02 23:14:28 +00:00
|
|
|
|
|
|
|
gtk_action_set_accel_path (action, accel_path);
|
|
|
|
gtk_action_group_add_action (action_group, action);
|
2004-01-14 20:10:27 +00:00
|
|
|
|
|
|
|
g_free (accel_path);
|
2004-01-02 23:14:28 +00:00
|
|
|
}
|
|
|
|
|
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)
|
|
|
|
{
|
2008-06-20 10:58:40 +00:00
|
|
|
GtkActionGroupPrivate *private;
|
2007-07-10 22:18:08 +00:00
|
|
|
const gchar *name;
|
|
|
|
|
2003-08-24 19:58:30 +00:00
|
|
|
g_return_if_fail (GTK_IS_ACTION_GROUP (action_group));
|
|
|
|
g_return_if_fail (GTK_IS_ACTION (action));
|
|
|
|
|
2007-07-10 22:18:08 +00:00
|
|
|
name = gtk_action_get_name (action);
|
|
|
|
g_return_if_fail (name != NULL);
|
|
|
|
|
2010-05-22 23:25:06 +00:00
|
|
|
private = action_group->priv;
|
2008-06-20 10:58:40 +00:00
|
|
|
|
|
|
|
g_hash_table_remove (private->actions, name);
|
2003-08-24 19:58:30 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
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.
|
|
|
|
*
|
2009-12-10 10:23:40 +00:00
|
|
|
* Returns: (element-type GtkAction) (transfer container): an allocated list of the action objects in the action group
|
|
|
|
*
|
2003-08-24 19:58:30 +00:00
|
|
|
* Since: 2.4
|
|
|
|
*/
|
|
|
|
GList *
|
|
|
|
gtk_action_group_list_actions (GtkActionGroup *action_group)
|
|
|
|
{
|
2008-06-20 10:58:40 +00:00
|
|
|
GtkActionGroupPrivate *private;
|
2003-08-24 19:58:30 +00:00
|
|
|
GList *actions = NULL;
|
2008-06-20 10:58:40 +00:00
|
|
|
|
2003-08-24 23:11:14 +00:00
|
|
|
g_return_val_if_fail (GTK_IS_ACTION_GROUP (action_group), NULL);
|
2008-06-20 10:58:40 +00:00
|
|
|
|
2010-05-22 23:25:06 +00:00
|
|
|
private = action_group->priv;
|
2003-08-24 19:58:30 +00:00
|
|
|
|
2008-06-20 10:58:40 +00:00
|
|
|
g_hash_table_foreach (private->actions, add_single_action, &actions);
|
2003-08-24 19:58:30 +00:00
|
|
|
|
|
|
|
return g_list_reverse (actions);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
2011-01-18 05:37:11 +00:00
|
|
|
* gtk_action_group_add_actions: (skip)
|
2003-08-24 19:58:30 +00:00
|
|
|
* @action_group: the action group
|
2011-01-18 05:37:11 +00:00
|
|
|
* @entries: (array length=n_entries): an array of action descriptions
|
2003-08-24 19:58:30 +00:00
|
|
|
* @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
|
2004-08-04 00:19:25 +00:00
|
|
|
gtk_action_group_add_actions (GtkActionGroup *action_group,
|
|
|
|
const GtkActionEntry *entries,
|
|
|
|
guint n_entries,
|
|
|
|
gpointer user_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
|
|
|
{
|
|
|
|
gtk_action_group_add_actions_full (action_group,
|
|
|
|
entries, n_entries,
|
|
|
|
user_data, NULL);
|
|
|
|
}
|
|
|
|
|
2004-01-28 23:49:10 +00:00
|
|
|
typedef struct _SharedData SharedData;
|
|
|
|
|
|
|
|
struct _SharedData {
|
|
|
|
guint ref_count;
|
|
|
|
gpointer data;
|
|
|
|
GDestroyNotify destroy;
|
|
|
|
};
|
|
|
|
|
|
|
|
static void
|
|
|
|
shared_data_unref (gpointer data)
|
|
|
|
{
|
|
|
|
SharedData *shared_data = (SharedData *)data;
|
|
|
|
|
|
|
|
shared_data->ref_count--;
|
|
|
|
if (shared_data->ref_count == 0)
|
|
|
|
{
|
2008-08-12 09:06:34 +00:00
|
|
|
if (shared_data->destroy)
|
|
|
|
shared_data->destroy (shared_data->data);
|
|
|
|
|
2006-01-04 07:06:12 +00:00
|
|
|
g_slice_free (SharedData, shared_data);
|
2004-01-28 23:49:10 +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
|
|
|
|
|
|
|
/**
|
2011-01-18 05:37:11 +00:00
|
|
|
* gtk_action_group_add_actions_full: (skip)
|
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
|
|
|
* @action_group: the action group
|
2011-01-18 05:37:11 +00:00
|
|
|
* @entries: (array length=n_entries): an array of action descriptions
|
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
|
|
|
* @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
|
2004-08-04 00:19:25 +00:00
|
|
|
gtk_action_group_add_actions_full (GtkActionGroup *action_group,
|
|
|
|
const 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;
|
2004-01-28 23:49:10 +00:00
|
|
|
SharedData *shared_data;
|
2003-08-25 18:43:14 +00:00
|
|
|
|
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
|
|
|
|
2006-01-04 07:06:12 +00:00
|
|
|
shared_data = g_slice_new0 (SharedData);
|
2004-01-28 23:49:10 +00:00
|
|
|
shared_data->ref_count = 1;
|
|
|
|
shared_data->data = user_data;
|
|
|
|
shared_data->destroy = destroy;
|
|
|
|
|
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
|
|
|
|
2007-05-19 04:07:42 +00:00
|
|
|
if (!check_unique_action (action_group, entries[i].name))
|
|
|
|
continue;
|
|
|
|
|
2004-10-09 04:26:11 +00:00
|
|
|
label = gtk_action_group_translate_string (action_group, entries[i].label);
|
|
|
|
tooltip = gtk_action_group_translate_string (action_group, entries[i].tooltip);
|
2003-09-15 19:51:55 +00:00
|
|
|
|
2004-01-07 21:54:33 +00:00
|
|
|
action = gtk_action_new (entries[i].name,
|
|
|
|
label,
|
|
|
|
tooltip,
|
2006-03-13 05:11:23 +00:00
|
|
|
NULL);
|
2003-09-15 19:51:55 +00:00
|
|
|
|
2006-03-13 05:11:23 +00:00
|
|
|
if (entries[i].stock_id)
|
|
|
|
{
|
2006-06-20 18:01:23 +00:00
|
|
|
g_object_set (action, "stock-id", entries[i].stock_id, NULL);
|
|
|
|
if (gtk_icon_theme_has_icon (gtk_icon_theme_get_default (),
|
|
|
|
entries[i].stock_id))
|
2006-03-13 05:11:23 +00:00
|
|
|
g_object_set (action, "icon-name", entries[i].stock_id, NULL);
|
|
|
|
}
|
|
|
|
|
2003-09-15 19:51:55 +00:00
|
|
|
if (entries[i].callback)
|
2004-01-28 23:49:10 +00:00
|
|
|
{
|
|
|
|
GClosure *closure;
|
|
|
|
|
|
|
|
closure = g_cclosure_new (entries[i].callback, user_data, NULL);
|
|
|
|
g_closure_add_finalize_notifier (closure, shared_data,
|
|
|
|
(GClosureNotify)shared_data_unref);
|
|
|
|
shared_data->ref_count++;
|
2003-09-15 19:51:55 +00:00
|
|
|
|
2004-01-28 23:49:10 +00:00
|
|
|
g_signal_connect_closure (action, "activate", closure, FALSE);
|
|
|
|
}
|
|
|
|
|
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);
|
|
|
|
}
|
2004-01-28 23:49:10 +00:00
|
|
|
|
|
|
|
shared_data_unref (shared_data);
|
2003-09-15 19:51:55 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2011-01-18 05:37:11 +00:00
|
|
|
* gtk_action_group_add_toggle_actions: (skip)
|
2003-09-15 19:51:55 +00:00
|
|
|
* @action_group: the action group
|
2011-01-18 05:37:11 +00:00
|
|
|
* @entries: (array length=n_entries): an array of toggle action descriptions
|
2003-09-15 19:51:55 +00:00
|
|
|
* @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
|
2004-08-04 00:19:25 +00:00
|
|
|
gtk_action_group_add_toggle_actions (GtkActionGroup *action_group,
|
|
|
|
const GtkToggleActionEntry *entries,
|
|
|
|
guint n_entries,
|
|
|
|
gpointer user_data)
|
2003-09-15 19:51:55 +00:00
|
|
|
{
|
|
|
|
gtk_action_group_add_toggle_actions_full (action_group,
|
|
|
|
entries, n_entries,
|
|
|
|
user_data, NULL);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
2011-01-18 05:37:11 +00:00
|
|
|
* gtk_action_group_add_toggle_actions_full: (skip)
|
2003-09-15 19:51:55 +00:00
|
|
|
* @action_group: the action group
|
2011-01-18 05:37:11 +00:00
|
|
|
* @entries: (array length=n_entries): an array of toggle action descriptions
|
2003-09-15 19:51:55 +00:00
|
|
|
* @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
|
2004-08-04 00:19:25 +00:00
|
|
|
gtk_action_group_add_toggle_actions_full (GtkActionGroup *action_group,
|
|
|
|
const GtkToggleActionEntry *entries,
|
|
|
|
guint n_entries,
|
|
|
|
gpointer user_data,
|
|
|
|
GDestroyNotify destroy)
|
2003-09-15 19:51:55 +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-09-15 19:51:55 +00:00
|
|
|
guint i;
|
2004-01-28 23:49:10 +00:00
|
|
|
SharedData *shared_data;
|
2003-09-15 19:51:55 +00:00
|
|
|
|
|
|
|
g_return_if_fail (GTK_IS_ACTION_GROUP (action_group));
|
|
|
|
|
2006-01-04 07:06:12 +00:00
|
|
|
shared_data = g_slice_new0 (SharedData);
|
2004-01-28 23:49:10 +00:00
|
|
|
shared_data->ref_count = 1;
|
|
|
|
shared_data->data = user_data;
|
|
|
|
shared_data->destroy = destroy;
|
|
|
|
|
2003-09-15 19:51:55 +00:00
|
|
|
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
|
|
|
|
2007-05-19 04:07:42 +00:00
|
|
|
if (!check_unique_action (action_group, entries[i].name))
|
|
|
|
continue;
|
|
|
|
|
2004-10-09 04:26:11 +00:00
|
|
|
label = gtk_action_group_translate_string (action_group, entries[i].label);
|
|
|
|
tooltip = gtk_action_group_translate_string (action_group, entries[i].tooltip);
|
2003-08-24 23:11:14 +00:00
|
|
|
|
2004-01-07 21:54:33 +00:00
|
|
|
action = gtk_toggle_action_new (entries[i].name,
|
|
|
|
label,
|
|
|
|
tooltip,
|
2006-03-13 05:11:23 +00:00
|
|
|
NULL);
|
|
|
|
|
|
|
|
if (entries[i].stock_id)
|
|
|
|
{
|
2006-03-16 15:38:55 +00:00
|
|
|
if (gtk_icon_factory_lookup_default (entries[i].stock_id))
|
2006-03-13 05:11:23 +00:00
|
|
|
g_object_set (action, "stock-id", entries[i].stock_id, NULL);
|
|
|
|
else
|
|
|
|
g_object_set (action, "icon-name", entries[i].stock_id, NULL);
|
|
|
|
}
|
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)
|
2004-01-28 23:49:10 +00:00
|
|
|
{
|
|
|
|
GClosure *closure;
|
|
|
|
|
|
|
|
closure = g_cclosure_new (entries[i].callback, user_data, NULL);
|
|
|
|
g_closure_add_finalize_notifier (closure, shared_data,
|
|
|
|
(GClosureNotify)shared_data_unref);
|
|
|
|
shared_data->ref_count++;
|
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
|
|
|
|
2004-01-28 23:49:10 +00:00
|
|
|
g_signal_connect_closure (action, "activate", closure, FALSE);
|
|
|
|
}
|
|
|
|
|
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);
|
|
|
|
}
|
2004-01-28 23:49:10 +00:00
|
|
|
|
2007-03-15 19:33:57 +00:00
|
|
|
shared_data_unref (shared_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
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2011-01-18 05:37:11 +00:00
|
|
|
* gtk_action_group_add_radio_actions: (skip)
|
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
|
|
|
* @action_group: the action group
|
2011-01-18 05:37:11 +00:00
|
|
|
* @entries: (array length=n_entries): an array of radio action descriptions
|
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
|
|
|
* @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
|
2004-08-04 00:19:25 +00:00
|
|
|
gtk_action_group_add_radio_actions (GtkActionGroup *action_group,
|
|
|
|
const GtkRadioActionEntry *entries,
|
|
|
|
guint n_entries,
|
|
|
|
gint value,
|
|
|
|
GCallback on_change,
|
|
|
|
gpointer user_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
|
|
|
{
|
|
|
|
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
|
|
|
/**
|
2011-01-18 05:37:11 +00:00
|
|
|
* gtk_action_group_add_radio_actions_full: (skip)
|
2003-08-30 22:26:32 +00:00
|
|
|
* @action_group: the action group
|
2011-01-18 05:37:11 +00:00
|
|
|
* @entries: (array length=n_entries): an array of radio action descriptions
|
2003-08-30 22:26:32 +00:00
|
|
|
* @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
|
2004-08-04 00:19:25 +00:00
|
|
|
gtk_action_group_add_radio_actions_full (GtkActionGroup *action_group,
|
|
|
|
const GtkRadioActionEntry *entries,
|
|
|
|
guint n_entries,
|
|
|
|
gint value,
|
|
|
|
GCallback on_change,
|
|
|
|
gpointer user_data,
|
|
|
|
GDestroyNotify destroy)
|
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
|
|
|
{
|
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;
|
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));
|
|
|
|
|
|
|
|
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
|
|
|
|
2007-05-19 04:07:42 +00:00
|
|
|
if (!check_unique_action (action_group, entries[i].name))
|
|
|
|
continue;
|
|
|
|
|
2004-10-09 04:26:11 +00:00
|
|
|
label = gtk_action_group_translate_string (action_group, entries[i].label);
|
|
|
|
tooltip = gtk_action_group_translate_string (action_group, entries[i].tooltip);
|
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
|
|
|
|
2004-01-07 21:54:33 +00:00
|
|
|
action = gtk_radio_action_new (entries[i].name,
|
|
|
|
label,
|
|
|
|
tooltip,
|
2006-03-13 05:11:23 +00:00
|
|
|
NULL,
|
2004-02-19 20:26:25 +00:00
|
|
|
entries[i].value);
|
2003-09-15 19:51:55 +00:00
|
|
|
|
2006-03-13 05:11:23 +00:00
|
|
|
if (entries[i].stock_id)
|
|
|
|
{
|
2006-03-16 15:38:55 +00:00
|
|
|
if (gtk_icon_factory_lookup_default (entries[i].stock_id))
|
2006-03-13 05:11:23 +00:00
|
|
|
g_object_set (action, "stock-id", entries[i].stock_id, NULL);
|
|
|
|
else
|
|
|
|
g_object_set (action, "icon-name", entries[i].stock_id, 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
|
|
|
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
|
2008-06-18 09:12:32 +00:00
|
|
|
* @notify: a #GDestroyNotify function to be called when @action_group is
|
2003-08-24 23:11:14 +00:00
|
|
|
* destroyed and when the translation function is changed again
|
2008-06-18 09:12:32 +00:00
|
|
|
*
|
2003-08-24 23:11:14 +00:00
|
|
|
* 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
|
2006-01-07 04:18:40 +00:00
|
|
|
gtk_action_group_set_translate_func (GtkActionGroup *action_group,
|
|
|
|
GtkTranslateFunc func,
|
|
|
|
gpointer data,
|
2008-06-18 09:12:32 +00:00
|
|
|
GDestroyNotify notify)
|
2003-08-24 23:11:14 +00:00
|
|
|
{
|
2008-06-20 10:58:40 +00:00
|
|
|
GtkActionGroupPrivate *private;
|
|
|
|
|
2003-08-24 23:11:14 +00:00
|
|
|
g_return_if_fail (GTK_IS_ACTION_GROUP (action_group));
|
|
|
|
|
2010-05-22 23:25:06 +00:00
|
|
|
private = action_group->priv;
|
2008-06-20 10:58:40 +00:00
|
|
|
|
|
|
|
if (private->translate_notify)
|
|
|
|
private->translate_notify (private->translate_data);
|
2003-08-24 23:11:14 +00:00
|
|
|
|
2008-06-20 10:58:40 +00:00
|
|
|
private->translate_func = func;
|
|
|
|
private->translate_data = data;
|
|
|
|
private->translate_notify = notify;
|
2003-08-24 23:11:14 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static gchar *
|
|
|
|
dgettext_swapped (const gchar *msgid,
|
|
|
|
const gchar *domainname)
|
|
|
|
{
|
2008-06-11 23:40:35 +00:00
|
|
|
/* Pass through g_dgettext if and only if msgid is nonempty. */
|
2006-01-08 23:25:14 +00:00
|
|
|
if (msgid && *msgid)
|
2008-06-11 23:40:35 +00:00
|
|
|
return (gchar*) g_dgettext (domainname, msgid);
|
2006-01-08 23:25:14 +00:00
|
|
|
else
|
|
|
|
return (gchar*) msgid;
|
2003-08-24 23:11:14 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* gtk_action_group_set_translation_domain:
|
|
|
|
* @action_group: a #GtkActionGroup
|
2008-06-11 23:40:35 +00:00
|
|
|
* @domain: the translation domain to use for g_dgettext() calls
|
2003-08-24 23:11:14 +00:00
|
|
|
*
|
2008-06-11 23:40:35 +00:00
|
|
|
* Sets the translation domain and uses g_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
|
2004-08-04 00:19:25 +00:00
|
|
|
* gtk_action_group_add_actions().
|
2003-08-24 23:11:14 +00:00
|
|
|
*
|
|
|
|
* 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
|
|
|
|
2004-10-09 04:26:11 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* gtk_action_group_translate_string:
|
|
|
|
* @action_group: a #GtkActionGroup
|
|
|
|
* @string: a string
|
|
|
|
*
|
|
|
|
* Translates a string using the specified translate_func(). This
|
|
|
|
* is mainly intended for language bindings.
|
|
|
|
*
|
|
|
|
* Returns: the translation of @string
|
|
|
|
*
|
|
|
|
* Since: 2.6
|
|
|
|
**/
|
|
|
|
G_CONST_RETURN gchar *
|
|
|
|
gtk_action_group_translate_string (GtkActionGroup *action_group,
|
|
|
|
const gchar *string)
|
|
|
|
{
|
2008-06-20 10:58:40 +00:00
|
|
|
GtkActionGroupPrivate *private;
|
2004-10-09 04:26:11 +00:00
|
|
|
GtkTranslateFunc translate_func;
|
|
|
|
gpointer translate_data;
|
|
|
|
|
|
|
|
g_return_val_if_fail (GTK_IS_ACTION_GROUP (action_group), string);
|
|
|
|
|
2004-12-20 16:05:25 +00:00
|
|
|
if (string == NULL)
|
|
|
|
return NULL;
|
|
|
|
|
2010-05-22 23:25:06 +00:00
|
|
|
private = action_group->priv;
|
2008-06-20 10:58:40 +00:00
|
|
|
|
|
|
|
translate_func = private->translate_func;
|
|
|
|
translate_data = private->translate_data;
|
2004-10-09 04:26:11 +00:00
|
|
|
|
|
|
|
if (translate_func)
|
|
|
|
return translate_func (string, translate_data);
|
|
|
|
else
|
|
|
|
return string;
|
|
|
|
}
|
|
|
|
|
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,
|
2006-01-07 04:18:40 +00:00
|
|
|
GtkAction *action)
|
2004-01-12 22:45:45 +00:00
|
|
|
{
|
|
|
|
g_signal_emit (action_group, action_group_signals[POST_ACTIVATE], 0, action);
|
|
|
|
}
|