[glade/composite-templates-new] My simple take on editing files with <template> definitions
- From: Tristan Van Berkom <tvb src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [glade/composite-templates-new] My simple take on editing files with <template> definitions
- Date: Sun, 24 Mar 2013 16:50:01 +0000 (UTC)
commit 7007977a6558005b2ccc5642c7851faf322aea22
Author: Tristan Van Berkom <tristan van berkom gmail com>
Date: Mon Mar 25 01:46:37 2013 +0900
My simple take on editing files with <template> definitions
Currently this works... has some crash at project close time
which I didn't take time to resolve, but was hacked out in less
than an hour... so should be easy enough to improve.
gladeui/glade-project.c | 3 +-
gladeui/glade-widget.c | 77 ++++++++++++++++++++++++++++-------
gladeui/glade-xml-utils.h | 1 +
plugins/gtk+/glade-gtk.c | 96 ++++++++++++++++++++++++++++++---------------
plugins/gtk+/gtk+.xml.in | 19 ++++++++-
5 files changed, 145 insertions(+), 51 deletions(-)
---
diff --git a/gladeui/glade-project.c b/gladeui/glade-project.c
index cc3525b..c1e628e 100644
--- a/gladeui/glade-project.c
+++ b/gladeui/glade-project.c
@@ -1623,7 +1623,8 @@ glade_project_load_internal (GladeProject *project)
node; node = glade_xml_node_next (node))
{
/* Skip "requires" tags */
- if (!glade_xml_node_verify_silent (node, GLADE_XML_TAG_WIDGET))
+ if (!(glade_xml_node_verify_silent (node, GLADE_XML_TAG_WIDGET) ||
+ glade_xml_node_verify_silent (node, GLADE_XML_TAG_TEMPLATE)))
continue;
if ((widget = glade_widget_read (project, NULL, node, NULL)) != NULL)
diff --git a/gladeui/glade-widget.c b/gladeui/glade-widget.c
index ba9c2b3..9ee20b7 100644
--- a/gladeui/glade-widget.c
+++ b/gladeui/glade-widget.c
@@ -80,6 +80,8 @@ struct _GladeWidgetPrivate {
* used when loading widget with libglade
*/
+ gchar *template_parent; /* The name of the parent class in a widget template */
+
gchar *support_warning; /* A warning message for version incompatabilities
* in this widget
*/
@@ -192,6 +194,7 @@ enum
PROP_TOPLEVEL_HEIGHT,
PROP_SUPPORT_WARNING,
PROP_VISIBLE,
+ PROP_TEMPLATE_PARENT,
N_PROPERTIES
};
@@ -1093,6 +1096,10 @@ glade_widget_set_real_property (GObject * object,
case PROP_TOPLEVEL_HEIGHT:
widget->priv->height = g_value_get_int (value);
break;
+ case PROP_TEMPLATE_PARENT:
+ g_free (widget->priv->template_parent);
+ widget->priv->template_parent = g_value_dup_string (value);
+ break;
default:
G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
break;
@@ -1149,6 +1156,9 @@ glade_widget_get_real_property (GObject * object,
case PROP_REASON:
g_value_set_int (value, widget->priv->construct_reason);
break;
+ case PROP_TEMPLATE_PARENT:
+ g_value_set_string (value, widget->priv->template_parent);
+ break;
default:
G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
break;
@@ -1305,6 +1315,11 @@ glade_widget_class_init (GladeWidgetClass * klass)
_("Wether the widget is visible or not"),
FALSE, G_PARAM_READABLE);
+ properties[PROP_TEMPLATE_PARENT] =
+ g_param_spec_string ("template-parent", _("Parent Name"),
+ _("The name of the parent in a template definition"),
+ NULL, G_PARAM_READWRITE);
+
/* Install all properties */
g_object_class_install_properties (object_class, N_PROPERTIES, properties);
@@ -3730,13 +3745,18 @@ glade_widget_read (GladeProject * project,
{
GladeWidgetAdaptor *adaptor;
GladeWidget *widget = NULL;
- gchar *klass, *id;
+ gchar *klass, *id = NULL, *template_parent = NULL;
+ gboolean template = FALSE;
if (glade_project_load_cancelled (project))
return NULL;
- if (!glade_xml_node_verify (node, GLADE_XML_TAG_WIDGET))
- return NULL;
+ if (!(glade_xml_node_verify_silent (node, GLADE_XML_TAG_WIDGET) ||
+ glade_xml_node_verify_silent (node, GLADE_XML_TAG_TEMPLATE)))
+ return NULL;
+
+ if (glade_xml_node_verify_silent (node, GLADE_XML_TAG_TEMPLATE))
+ template = TRUE;
glade_widget_push_superuser ();
@@ -3744,15 +3764,25 @@ glade_widget_read (GladeProject * project,
glade_xml_get_property_string_required
(node, GLADE_XML_TAG_CLASS, NULL)) != NULL)
{
- if ((id =
- glade_xml_get_property_string_required
- (node, GLADE_XML_TAG_ID, NULL)) != NULL)
- {
+ if (template)
+ {
+ template_parent = glade_xml_get_property_string_required (node, GLADE_TAG_PARENT, NULL);
+
+ if (template_parent)
+ id = g_strdup (klass);
+ }
+ else
+ id = glade_xml_get_property_string_required (node, GLADE_XML_TAG_ID, NULL);
+
+ if (id)
+ {
GType type;
+ const gchar *type_to_use = template_parent ? template_parent : klass;
+
/*
* Create GladeWidget instance based on type.
*/
- if ((adaptor = glade_widget_adaptor_get_by_name (klass)) &&
+ if ((adaptor = glade_widget_adaptor_get_by_name (type_to_use)) &&
(type = glade_widget_adaptor_get_object_type (adaptor)) &&
G_TYPE_IS_INSTANTIATABLE (type) &&
G_TYPE_IS_ABSTRACT (type) == FALSE)
@@ -3783,6 +3813,7 @@ glade_widget_read (GladeProject * project,
widget = glade_widget_adaptor_create_widget
(adaptor, FALSE,
"name", id,
+ "template-parent", template_parent,
"parent", parent,
"project", project, "reason", GLADE_CREATE_LOAD, NULL);
}
@@ -3799,6 +3830,7 @@ glade_widget_read (GladeProject * project,
widget = glade_widget_adaptor_create_widget (glade_widget_adaptor_get_by_type
(GTK_TYPE_WIDGET),
FALSE,
"parent", parent,
+ "template-parent", template_parent,
"project", project,
"reason", GLADE_CREATE_LOAD,
"object", stub,
@@ -3807,6 +3839,7 @@ glade_widget_read (GladeProject * project,
}
g_free (id);
}
+ g_free (template_parent);
g_free (klass);
}
@@ -3939,15 +3972,27 @@ glade_widget_write (GladeWidget * widget,
return;
}
- widget_node = glade_xml_node_new (context, GLADE_XML_TAG_WIDGET);
- glade_xml_node_append_child (node, widget_node);
-
/* Set class and id */
- glade_xml_node_set_property_string (widget_node,
- GLADE_XML_TAG_CLASS,
- glade_widget_adaptor_get_name (widget->priv->adaptor));
- glade_xml_node_set_property_string (widget_node,
- GLADE_XML_TAG_ID, widget->priv->name);
+ if (widget->priv->template_parent != NULL)
+ {
+ widget_node = glade_xml_node_new (context, GLADE_XML_TAG_TEMPLATE);
+ glade_xml_node_set_property_string (widget_node,
+ GLADE_XML_TAG_CLASS,
+ widget->priv->name);
+ glade_xml_node_set_property_string (widget_node,
+ GLADE_TAG_PARENT, widget->priv->template_parent);
+ }
+ else
+ {
+ widget_node = glade_xml_node_new (context, GLADE_XML_TAG_WIDGET);
+ glade_xml_node_set_property_string (widget_node,
+ GLADE_XML_TAG_CLASS,
+ glade_widget_adaptor_get_name (widget->priv->adaptor));
+ glade_xml_node_set_property_string (widget_node,
+ GLADE_XML_TAG_ID, widget->priv->name);
+ }
+
+ glade_xml_node_append_child (node, widget_node);
/* Write out widget content (properties and signals) */
glade_widget_adaptor_write_widget (widget->priv->adaptor, widget, context,
diff --git a/gladeui/glade-xml-utils.h b/gladeui/glade-xml-utils.h
index c7b116f..c4e6c1b 100644
--- a/gladeui/glade-xml-utils.h
+++ b/gladeui/glade-xml-utils.h
@@ -36,6 +36,7 @@ typedef struct _GladeProject GladeProject;
/* Used for catalog tags and attributes */
#define GLADE_XML_TAG_PROJECT "interface"
#define GLADE_XML_TAG_WIDGET "object"
+#define GLADE_XML_TAG_TEMPLATE "template"
#define GLADE_XML_TAG_VERSION "version"
#define GLADE_XML_TAG_REQUIRES "requires"
diff --git a/plugins/gtk+/glade-gtk.c b/plugins/gtk+/glade-gtk.c
index 11354a1..b61bc64 100644
--- a/plugins/gtk+/glade-gtk.c
+++ b/plugins/gtk+/glade-gtk.c
@@ -410,7 +410,8 @@ void
glade_gtk_widget_read_widget (GladeWidgetAdaptor * adaptor,
GladeWidget * widget, GladeXmlNode * node)
{
- if (!glade_xml_node_verify (node, GLADE_XML_TAG_WIDGET))
+ if (!(glade_xml_node_verify_silent (node, GLADE_XML_TAG_WIDGET) ||
+ glade_xml_node_verify_silent (node, GLADE_XML_TAG_TEMPLATE)))
return;
/* First chain up and read in all the normal properties.. */
@@ -686,7 +687,8 @@ glade_gtk_widget_write_widget (GladeWidgetAdaptor * adaptor,
{
GObject *obj;
- if (!glade_xml_node_verify (node, GLADE_XML_TAG_WIDGET))
+ if (!(glade_xml_node_verify_silent (node, GLADE_XML_TAG_WIDGET) ||
+ glade_xml_node_verify_silent (node, GLADE_XML_TAG_TEMPLATE)))
return;
/* Make sure use-action-appearance and related-action properties are
@@ -801,8 +803,9 @@ glade_gtk_widget_deep_post_create (GladeWidgetAdaptor * adaptor,
g_signal_connect (G_OBJECT (widget), "notify::parent",
G_CALLBACK (widget_parent_changed), adaptor);
- if (!glade_widget_adaptor_get_book (adaptor) || !glade_util_have_devhelp ())
- glade_widget_remove_action (gwidget, "read_documentation");
+ /* XXX WTF ?
+ * if (!glade_widget_adaptor_get_book (adaptor) || !glade_util_have_devhelp ()) */
+ /* glade_widget_remove_action (gwidget, "read_documentation"); */
}
void
@@ -3406,7 +3409,8 @@ glade_gtk_entry_read_widget (GladeWidgetAdaptor * adaptor,
{
GladeProperty *property;
- if (!glade_xml_node_verify (node, GLADE_XML_TAG_WIDGET))
+ if (!(glade_xml_node_verify_silent (node, GLADE_XML_TAG_WIDGET) ||
+ glade_xml_node_verify_silent (node, GLADE_XML_TAG_TEMPLATE)))
return;
/* First chain up and read in all the normal properties.. */
@@ -3644,7 +3648,8 @@ void
glade_gtk_window_read_widget (GladeWidgetAdaptor * adaptor,
GladeWidget * widget, GladeXmlNode * node)
{
- if (!glade_xml_node_verify (node, GLADE_XML_TAG_WIDGET))
+ if (!(glade_xml_node_verify_silent (node, GLADE_XML_TAG_WIDGET) ||
+ glade_xml_node_verify_silent (node, GLADE_XML_TAG_TEMPLATE)))
return;
/* First chain up and read in all the normal properties.. */
@@ -3690,7 +3695,8 @@ glade_gtk_window_write_widget (GladeWidgetAdaptor * adaptor,
GladeWidget * widget,
GladeXmlContext * context, GladeXmlNode * node)
{
- if (!glade_xml_node_verify (node, GLADE_XML_TAG_WIDGET))
+ if (!(glade_xml_node_verify_silent (node, GLADE_XML_TAG_WIDGET) ||
+ glade_xml_node_verify_silent (node, GLADE_XML_TAG_TEMPLATE)))
return;
/* First chain up and read in all the normal properties.. */
@@ -4275,7 +4281,8 @@ void
glade_gtk_button_read_widget (GladeWidgetAdaptor * adaptor,
GladeWidget * widget, GladeXmlNode * node)
{
- if (!glade_xml_node_verify (node, GLADE_XML_TAG_WIDGET))
+ if (!(glade_xml_node_verify_silent (node, GLADE_XML_TAG_WIDGET) ||
+ glade_xml_node_verify_silent (node, GLADE_XML_TAG_TEMPLATE)))
return;
/* First chain up and read in all the normal properties.. */
@@ -4293,7 +4300,8 @@ glade_gtk_button_write_widget (GladeWidgetAdaptor * adaptor,
gboolean use_stock;
gchar *stock = NULL;
- if (!glade_xml_node_verify (node, GLADE_XML_TAG_WIDGET))
+ if (!(glade_xml_node_verify_silent (node, GLADE_XML_TAG_WIDGET) ||
+ glade_xml_node_verify_silent (node, GLADE_XML_TAG_TEMPLATE)))
return;
/* Do not save GtkColorButton GtkFontButton and GtkScaleButton label property */
@@ -4331,7 +4339,8 @@ glade_gtk_image_read_widget (GladeWidgetAdaptor * adaptor,
{
GladeProperty *property;
- if (!glade_xml_node_verify (node, GLADE_XML_TAG_WIDGET))
+ if (!(glade_xml_node_verify_silent (node, GLADE_XML_TAG_WIDGET) ||
+ glade_xml_node_verify_silent (node, GLADE_XML_TAG_TEMPLATE)))
return;
/* First chain up and read in all the normal properties.. */
@@ -4369,7 +4378,8 @@ glade_gtk_image_write_widget (GladeWidgetAdaptor * adaptor,
GtkIconSize icon_size;
gchar *value;
- if (!glade_xml_node_verify (node, GLADE_XML_TAG_WIDGET))
+ if (!(glade_xml_node_verify_silent (node, GLADE_XML_TAG_WIDGET) ||
+ glade_xml_node_verify_silent (node, GLADE_XML_TAG_TEMPLATE)))
return;
/* First chain up and write all the normal properties (including "use-stock")... */
@@ -5515,7 +5525,8 @@ glade_gtk_image_menu_item_read_widget (GladeWidgetAdaptor * adaptor,
gboolean use_stock;
gchar *label = NULL;
- if (!glade_xml_node_verify (node, GLADE_XML_TAG_WIDGET))
+ if (!(glade_xml_node_verify_silent (node, GLADE_XML_TAG_WIDGET) ||
+ glade_xml_node_verify_silent (node, GLADE_XML_TAG_TEMPLATE)))
return;
/* First chain up and read in all the normal properties.. */
@@ -5554,7 +5565,8 @@ glade_gtk_image_menu_item_write_widget (GladeWidgetAdaptor * adaptor,
gboolean use_stock;
gchar *stock;
- if (!glade_xml_node_verify (node, GLADE_XML_TAG_WIDGET))
+ if (!(glade_xml_node_verify_silent (node, GLADE_XML_TAG_WIDGET) ||
+ glade_xml_node_verify_silent (node, GLADE_XML_TAG_TEMPLATE)))
return;
/* Make a copy of the GladeProperty, override its value if use-stock is TRUE */
@@ -6259,7 +6271,8 @@ void
glade_gtk_tool_item_group_read_widget (GladeWidgetAdaptor * adaptor,
GladeWidget * widget, GladeXmlNode * node)
{
- if (!glade_xml_node_verify (node, GLADE_XML_TAG_WIDGET))
+ if (!(glade_xml_node_verify_silent (node, GLADE_XML_TAG_WIDGET) ||
+ glade_xml_node_verify_silent (node, GLADE_XML_TAG_TEMPLATE)))
return;
/* First chain up and read in all the normal properties.. */
@@ -6567,7 +6580,8 @@ void
glade_gtk_tool_button_read_widget (GladeWidgetAdaptor * adaptor,
GladeWidget * widget, GladeXmlNode * node)
{
- if (!glade_xml_node_verify (node, GLADE_XML_TAG_WIDGET))
+ if (!(glade_xml_node_verify_silent (node, GLADE_XML_TAG_WIDGET) ||
+ glade_xml_node_verify_silent (node, GLADE_XML_TAG_TEMPLATE)))
return;
/* First chain up and read in all the normal properties.. */
@@ -7053,7 +7067,9 @@ glade_gtk_label_read_widget (GladeWidgetAdaptor * adaptor,
GladeWidget * widget, GladeXmlNode * node)
{
GladeProperty *prop;
- if (!glade_xml_node_verify (node, GLADE_XML_TAG_WIDGET))
+
+ if (!(glade_xml_node_verify_silent (node, GLADE_XML_TAG_WIDGET) ||
+ glade_xml_node_verify_silent (node, GLADE_XML_TAG_TEMPLATE)))
return;
/* First chain up and read in all the normal properties.. */
@@ -7139,7 +7155,8 @@ glade_gtk_label_write_widget (GladeWidgetAdaptor * adaptor,
{
GladeXmlNode *attrs_node;
- if (!glade_xml_node_verify (node, GLADE_XML_TAG_WIDGET))
+ if (!(glade_xml_node_verify_silent (node, GLADE_XML_TAG_WIDGET) ||
+ glade_xml_node_verify_silent (node, GLADE_XML_TAG_TEMPLATE)))
return;
/* First chain up and read in all the normal properties.. */
@@ -7580,7 +7597,8 @@ void
glade_gtk_combo_box_text_read_widget (GladeWidgetAdaptor * adaptor,
GladeWidget * widget, GladeXmlNode * node)
{
- if (!glade_xml_node_verify (node, GLADE_XML_TAG_WIDGET))
+ if (!(glade_xml_node_verify_silent (node, GLADE_XML_TAG_WIDGET) ||
+ glade_xml_node_verify_silent (node, GLADE_XML_TAG_TEMPLATE)))
return;
/* First chain up and read in all the normal properties.. */
@@ -7634,7 +7652,8 @@ glade_gtk_combo_box_text_write_widget (GladeWidgetAdaptor * adaptor,
{
GladeXmlNode *attrs_node;
- if (!glade_xml_node_verify (node, GLADE_XML_TAG_WIDGET))
+ if (!(glade_xml_node_verify_silent (node, GLADE_XML_TAG_WIDGET) ||
+ glade_xml_node_verify_silent (node, GLADE_XML_TAG_TEMPLATE)))
return;
/* First chain up and read in all the normal properties.. */
@@ -8164,7 +8183,8 @@ void
glade_gtk_size_group_read_widget (GladeWidgetAdaptor * adaptor,
GladeWidget * widget, GladeXmlNode * node)
{
- if (!glade_xml_node_verify (node, GLADE_XML_TAG_WIDGET))
+ if (!(glade_xml_node_verify_silent (node, GLADE_XML_TAG_WIDGET) ||
+ glade_xml_node_verify_silent (node, GLADE_XML_TAG_TEMPLATE)))
return;
/* First chain up and read in all the normal properties.. */
@@ -8212,7 +8232,8 @@ glade_gtk_size_group_write_widget (GladeWidgetAdaptor * adaptor,
GladeXmlContext * context,
GladeXmlNode * node)
{
- if (!glade_xml_node_verify (node, GLADE_XML_TAG_WIDGET))
+ if (!(glade_xml_node_verify_silent (node, GLADE_XML_TAG_WIDGET) ||
+ glade_xml_node_verify_silent (node, GLADE_XML_TAG_TEMPLATE)))
return;
/* First chain up and read in all the normal properties.. */
@@ -8403,7 +8424,8 @@ void
glade_gtk_icon_factory_read_widget (GladeWidgetAdaptor * adaptor,
GladeWidget * widget, GladeXmlNode * node)
{
- if (!glade_xml_node_verify (node, GLADE_XML_TAG_WIDGET))
+ if (!(glade_xml_node_verify_silent (node, GLADE_XML_TAG_WIDGET) ||
+ glade_xml_node_verify_silent (node, GLADE_XML_TAG_TEMPLATE)))
return;
/* First chain up and read in any normal properties.. */
@@ -8511,7 +8533,8 @@ glade_gtk_icon_factory_write_widget (GladeWidgetAdaptor * adaptor,
GladeXmlContext * context,
GladeXmlNode * node)
{
- if (!glade_xml_node_verify (node, GLADE_XML_TAG_WIDGET))
+ if (!(glade_xml_node_verify_silent (node, GLADE_XML_TAG_WIDGET) ||
+ glade_xml_node_verify_silent (node, GLADE_XML_TAG_TEMPLATE)))
return;
/* First chain up and write all the normal properties.. */
@@ -9191,7 +9214,8 @@ glade_gtk_store_write_widget (GladeWidgetAdaptor * adaptor,
GladeWidget * widget,
GladeXmlContext * context, GladeXmlNode * node)
{
- if (!glade_xml_node_verify (node, GLADE_XML_TAG_WIDGET))
+ if (!(glade_xml_node_verify_silent (node, GLADE_XML_TAG_WIDGET) ||
+ glade_xml_node_verify_silent (node, GLADE_XML_TAG_TEMPLATE)))
return;
/* First chain up and write all the normal properties.. */
@@ -9397,7 +9421,8 @@ void
glade_gtk_store_read_widget (GladeWidgetAdaptor * adaptor,
GladeWidget * widget, GladeXmlNode * node)
{
- if (!glade_xml_node_verify (node, GLADE_XML_TAG_WIDGET))
+ if (!(glade_xml_node_verify_silent (node, GLADE_XML_TAG_WIDGET) ||
+ glade_xml_node_verify_silent (node, GLADE_XML_TAG_TEMPLATE)))
return;
/* First chain up and read in all the normal properties.. */
@@ -9631,7 +9656,8 @@ glade_gtk_cell_renderer_write_widget (GladeWidgetAdaptor * adaptor,
GladeXmlContext * context,
GladeXmlNode * node)
{
- if (!glade_xml_node_verify (node, GLADE_XML_TAG_WIDGET))
+ if (!(glade_xml_node_verify_silent (node, GLADE_XML_TAG_WIDGET) ||
+ glade_xml_node_verify_silent (node, GLADE_XML_TAG_TEMPLATE)))
return;
/* Write our normal properties, then chain up to write any other normal properties,
@@ -9687,7 +9713,8 @@ void
glade_gtk_cell_renderer_read_widget (GladeWidgetAdaptor * adaptor,
GladeWidget * widget, GladeXmlNode * node)
{
- if (!glade_xml_node_verify (node, GLADE_XML_TAG_WIDGET))
+ if (!(glade_xml_node_verify_silent (node, GLADE_XML_TAG_WIDGET) ||
+ glade_xml_node_verify_silent (node, GLADE_XML_TAG_TEMPLATE)))
return;
/* First chain up and read in all the properties... */
@@ -10414,7 +10441,8 @@ glade_gtk_adjustment_write_widget (GladeWidgetAdaptor * adaptor,
{
GladeProperty *prop;
- if (!glade_xml_node_verify (node, GLADE_XML_TAG_WIDGET))
+ if (!(glade_xml_node_verify_silent (node, GLADE_XML_TAG_WIDGET) ||
+ glade_xml_node_verify_silent (node, GLADE_XML_TAG_TEMPLATE)))
return;
/* Ensure proper order of adjustment properties by writing them here. */
@@ -10954,7 +10982,8 @@ glade_gtk_recent_filter_read_widget (GladeWidgetAdaptor *adaptor,
GladeWidget *widget,
GladeXmlNode *node)
{
- if (!glade_xml_node_verify (node, GLADE_XML_TAG_WIDGET))
+ if (!(glade_xml_node_verify_silent (node, GLADE_XML_TAG_WIDGET) ||
+ glade_xml_node_verify_silent (node, GLADE_XML_TAG_TEMPLATE)))
return;
/* First chain up and read in all the normal properties.. */
@@ -10973,7 +11002,8 @@ glade_gtk_recent_filter_write_widget (GladeWidgetAdaptor *adaptor,
{
GladeXmlNode *strings_node;
- if (!glade_xml_node_verify (node, GLADE_XML_TAG_WIDGET))
+ if (!(glade_xml_node_verify_silent (node, GLADE_XML_TAG_WIDGET) ||
+ glade_xml_node_verify_silent (node, GLADE_XML_TAG_TEMPLATE)))
return;
/* First chain up and read in all the normal properties.. */
@@ -11012,7 +11042,8 @@ glade_gtk_file_filter_read_widget (GladeWidgetAdaptor *adaptor,
GladeWidget *widget,
GladeXmlNode *node)
{
- if (!glade_xml_node_verify (node, GLADE_XML_TAG_WIDGET))
+ if (!(glade_xml_node_verify_silent (node, GLADE_XML_TAG_WIDGET) ||
+ glade_xml_node_verify_silent (node, GLADE_XML_TAG_TEMPLATE)))
return;
/* First chain up and read in all the normal properties.. */
@@ -11030,7 +11061,8 @@ glade_gtk_file_filter_write_widget (GladeWidgetAdaptor *adaptor,
{
GladeXmlNode *strings_node;
- if (!glade_xml_node_verify (node, GLADE_XML_TAG_WIDGET))
+ if (!(glade_xml_node_verify_silent (node, GLADE_XML_TAG_WIDGET) ||
+ glade_xml_node_verify_silent (node, GLADE_XML_TAG_TEMPLATE)))
return;
/* First chain up and read in all the normal properties.. */
diff --git a/plugins/gtk+/gtk+.xml.in b/plugins/gtk+/gtk+.xml.in
index 75e865f..037ef64 100644
--- a/plugins/gtk+/gtk+.xml.in
+++ b/plugins/gtk+/gtk+.xml.in
@@ -1992,6 +1992,8 @@ embedded in another object</_tooltip>
<property id="current-rgba" default="Black" optional="True" optional-default="False" since="3.0"/>
</properties>
</glade-widget-class>
+
+ <glade-widget-class name="GtkColorChooserWidget" generic-name="colorchooserwidget" _title="Color Chooser
Widget"/>
<glade-widget-class name="GtkFontSelection" generic-name="fontselection" _title="Font Selection"/>
@@ -3283,8 +3285,6 @@ embedded in another object</_tooltip>
<glade-widget-class name="GtkCellRendererPixbuf" generic-name="cellrendererpixbuf" _title="Pixbuf
Renderer">
<properties>
- <property id="gicon" disabled="True"/>
-
<property id="follow-state" save="False" custom-layout="True"/>
<property id="attr-follow-state" _name="Follow State column" save="False" default="-1"
custom-layout="True">
<parameter-spec>
@@ -3327,6 +3327,20 @@ embedded in another object</_tooltip>
</parameter-spec>
</property>
+ <property id="gicon" save="False" custom-layout="True"/>
+ <property id="attr-gicon" _name="GIcon column" save="False" default="-1" custom-layout="True">
+ <parameter-spec>
+ <type>GParamInt</type>
+ <min>-1</min>
+ </parameter-spec>
+ <_tooltip>The column in the model to load the value from</_tooltip>
+ </property>
+ <property id="use-attr-gicon" default="True" save="False" visible="False">
+ <parameter-spec>
+ <type>GParamBoolean</type>
+ </parameter-spec>
+ </property>
+
<property id="pixbuf-expander-closed" save="False" custom-layout="True"/>
<property id="attr-pixbuf-expander-closed" _name="Pixbuf Expander Closed column" save="False"
default="-1" custom-layout="True">
@@ -3875,6 +3889,7 @@ embedded in another object</_tooltip>
<default-palette-state expanded="False"/>
+ <glade-widget-class-ref name="GtkColorChooserWidget"/>
<glade-widget-class-ref name="GtkColorSelection"/>
<glade-widget-class-ref name="GtkFontSelection"/>
<glade-widget-class-ref name="GtkRecentChooserWidget"/>
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]