glade3 r2034 - in trunk: . gladeui plugins/gtk+ po



Author: tvb
Date: Wed Nov 19 18:17:58 2008
New Revision: 2034
URL: http://svn.gnome.org/viewvc/glade3?rev=2034&view=rev

Log:

	* plugins/gtk+/Makefile.am, plugins/gtk+/glade-cell-renderer-editor.c:
	Added a new editor for cell renderers

	* plugins/gtk+/gtk+.xml.in, plugins/gtk+/glade-gtk.c: Added metadata for
	all attributes and auxilary properties in the catalog, and added hooks
	to manipulate, load and save cell renderers, reused most of Juan Pablo's
	work for this, and also for treeview column child renderer support.



Modified:
   trunk/ChangeLog
   trunk/gladeui/glade-editor-property.c
   trunk/gladeui/glade-editor.c
   trunk/gladeui/glade-property-class.c
   trunk/plugins/gtk+/Makefile.am
   trunk/plugins/gtk+/glade-gtk.c
   trunk/plugins/gtk+/glade-image-item-editor.h
   trunk/plugins/gtk+/glade-label-editor.c
   trunk/plugins/gtk+/gtk+.xml.in
   trunk/po/POTFILES.in

Modified: trunk/gladeui/glade-editor-property.c
==============================================================================
--- trunk/gladeui/glade-editor-property.c	(original)
+++ trunk/gladeui/glade-editor-property.c	Wed Nov 19 18:17:58 2008
@@ -268,7 +268,7 @@
 	gint width = EDITOR_COLUMN_SIZE;
 	gint icon_width = 0;
 
-	if (GTK_WIDGET_VISIBLE (eprop->warning))
+	if (GTK_WIDGET_VISIBLE (eprop->warning) && GTK_WIDGET_MAPPED (eprop->warning))
 	{
 		GtkRequisition req = { -1, -1 };
 		gtk_widget_size_request (eprop->warning, &req);
@@ -283,7 +283,7 @@
 	if (allocation->width > width)
 		width = allocation->width;
 
-	gtk_widget_set_size_request (eprop->label, width - icon_width, -1);
+	gtk_widget_set_size_request (eprop->label, CLAMP (width - icon_width, 0, width), -1);
 	/* Sometimes labels aren't drawn correctly after resize without this */
 	gtk_widget_queue_draw (eprop->label);
 }

Modified: trunk/gladeui/glade-editor.c
==============================================================================
--- trunk/gladeui/glade-editor.c	(original)
+++ trunk/gladeui/glade-editor.c	Wed Nov 19 18:17:58 2008
@@ -1362,7 +1362,7 @@
 	gtk_container_set_border_width (GTK_CONTAINER (editor), 6);
 	gtk_container_add (GTK_CONTAINER (window), GTK_WIDGET (editor));
 	
-	gtk_window_set_default_size (GTK_WINDOW (window), 640, 480);
+	gtk_window_set_default_size (GTK_WINDOW (window), 400, 480);
 
 	gtk_widget_show_all (editor);
 	return window;

Modified: trunk/gladeui/glade-property-class.c
==============================================================================
--- trunk/gladeui/glade-property-class.c	(original)
+++ trunk/gladeui/glade-property-class.c	Wed Nov 19 18:17:58 2008
@@ -1527,6 +1527,13 @@
 			g_free (klass->def);
 		}
 		klass->def = glade_property_class_make_gvalue_from_string (klass, buf, NULL, NULL);
+
+		if (klass->virt) {
+			g_value_unset (klass->orig_def);
+			g_free (klass->orig_def);
+			klass->orig_def = glade_property_class_make_gvalue_from_string (klass, buf, NULL, NULL);
+		}
+
 		g_free (buf);
 	}
 

Modified: trunk/plugins/gtk+/Makefile.am
==============================================================================
--- trunk/plugins/gtk+/Makefile.am	(original)
+++ trunk/plugins/gtk+/Makefile.am	Wed Nov 19 18:17:58 2008
@@ -26,7 +26,8 @@
 libgladegtk_la_SOURCES     = glade-gtk.c glade-accels.c glade-attributes.c glade-convert.c fixed-bg.xpm \
 	glade-column-types.c  glade-model-data.c glade-text-button.c glade-cell-renderer-button.c \
 	glade-icon-sources.c glade-button-editor.c glade-tool-button-editor.c glade-image-editor.c \
-	glade-image-item-editor.c glade-icon-factory-editor.c glade-store-editor.c glade-label-editor.c
+	glade-image-item-editor.c glade-icon-factory-editor.c glade-store-editor.c glade-label-editor.c \
+	glade-cell-renderer-editor.c
 
 libgladegtk_la_LDFLAGS     = -module -avoid-version $(AM_LDFLAGS)
 libgladegtk_la_LIBADD      = $(libgladeui) $(GTK_LIBS)
@@ -35,7 +36,7 @@
 libgladegtkinclude_HEADERS = glade-gtk.h glade-accels.h glade-attributes.h glade-column-types.h glade-model-data.h \
 	glade-text-button.h glade-cell-renderer-button.h glade-icon-sources.h glade-button-editor.h \
 	glade-tool-button-editor.h glade-image-editor.h glade-image-item-editor.h glade-icon-factory-editor.h \
-	glade-store-editor.h glade-label-editor.h
+	glade-store-editor.h glade-label-editor.h glade-cell-renderer-editor.h
 
 if PLATFORM_WIN32
 libgladegtk_la_LDFLAGS += -no-undefined

Modified: trunk/plugins/gtk+/glade-gtk.c
==============================================================================
--- trunk/plugins/gtk+/glade-gtk.c	(original)
+++ trunk/plugins/gtk+/glade-gtk.c	Wed Nov 19 18:17:58 2008
@@ -38,6 +38,7 @@
 #include "glade-icon-factory-editor.h"
 #include "glade-store-editor.h"
 #include "glade-label-editor.h"
+#include "glade-cell-renderer-editor.h"
 
 #include <gladeui/glade-editor-property.h>
 #include <gladeui/glade-base-editor.h>
@@ -9556,6 +9557,17 @@
 	gtk_tree_view_remove_column (view, column);
 }
 
+gboolean
+glade_gtk_treeview_depends (GladeWidgetAdaptor *adaptor,
+			    GladeWidget        *widget,
+			    GladeWidget        *another)
+{
+	if (GTK_IS_TREE_MODEL (another->object))
+		return TRUE; 
+
+	return GWA_GET_CLASS (GTK_TYPE_CONTAINER)->depends (adaptor, widget, another);
+}
+
 
 /*--------------------------- GtkIconFactory ---------------------------------*/
 #define GLADE_TAG_SOURCES   "sources"
@@ -9944,3 +9956,448 @@
 
 	return editable;
 }
+
+/*--------------------------- GtkCellLayout ---------------------------------*/
+void
+glade_gtk_cell_layout_add_child (GladeWidgetAdaptor *adaptor,
+				 GObject            *container,
+				 GObject            *child)
+{
+	gtk_cell_layout_pack_start (GTK_CELL_LAYOUT (container), GTK_CELL_RENDERER (child), TRUE);
+}
+
+void
+glade_gtk_cell_layout_remove_child (GladeWidgetAdaptor *adaptor,
+				    GObject            *container,
+				    GObject            *child)
+{
+	GtkCellLayout *layout = GTK_CELL_LAYOUT (container);
+	GList *l, *children = gtk_cell_layout_get_cells (layout);
+	
+	/* Add a reference to every cell except the one we want to remove */
+	for (l = children; l; l = g_list_next (l))
+		if (l->data != child)
+			g_object_ref (l->data);
+		else
+			l->data = NULL;
+
+	/* remove every cell */
+	gtk_cell_layout_clear (layout);
+
+	/* pack others cell renderers */
+	for (l = children; l; l = g_list_next (l))
+	{
+		if (l->data == NULL) continue;
+		
+		gtk_cell_layout_pack_start (layout, 
+					    GTK_CELL_RENDERER (l->data), TRUE);
+
+		/* Remove our transient reference */
+		g_object_unref (l->data);
+	}
+
+	g_list_free (children);
+}
+
+GList *
+glade_gtk_cell_layout_get_children (GladeWidgetAdaptor  *adaptor,
+				    GObject        *container)
+{
+	return gtk_cell_layout_get_cells (GTK_CELL_LAYOUT (container));
+}
+
+static void
+glade_gtk_cell_layout_add_renderer (GObject *cell, GType type)
+{
+	GladeWidget *gcell = glade_widget_get_from_gobject (cell);
+
+	glade_command_push_group (_("Appending %s to %s"),
+				  g_type_name (type),
+				  gcell->name);
+
+	glade_command_create (glade_widget_adaptor_get_by_type (type),
+			      gcell, NULL, glade_widget_get_project (gcell));
+	
+	glade_command_pop_group ();
+}
+
+
+static void
+glade_gtk_cell_renderer_read_attributes (GladeWidget *widget, GladeXmlNode *node)
+{
+	GladeXmlNode *attrs_node;
+	GladeProperty *attr_prop, *use_attr_prop;
+	GladeXmlNode  *prop;
+	gchar         *name, *column_str, *attr_prop_name, *use_attr_name;
+
+	if ((attrs_node = glade_xml_search_child (node, GLADE_TAG_ATTRIBUTES)) == NULL)
+		return;
+
+	for (prop = glade_xml_node_get_children (attrs_node); prop;
+	     prop = glade_xml_node_next (prop))
+	{
+		
+		if (!glade_xml_node_verify_silent (prop, GLADE_TAG_ATTRIBUTE)) continue;
+		
+		name            = glade_xml_get_property_string_required (prop, GLADE_TAG_NAME, NULL);
+		column_str      = glade_xml_get_content (prop);
+		attr_prop_name  = g_strdup_printf ("attr-%s", name);
+		use_attr_name   = g_strdup_printf ("use-attr-%s", name);
+
+		attr_prop       = glade_widget_get_property (widget, attr_prop_name);
+		use_attr_prop   = glade_widget_get_property (widget, use_attr_name);
+
+		if (attr_prop && use_attr_prop)
+		{	
+			glade_property_set (use_attr_prop, TRUE);	
+			glade_property_set (attr_prop, g_ascii_strtoll (column_str, NULL, 10));
+		}
+
+		g_free (name);
+		g_free (column_str);
+		g_free (attr_prop_name);
+		g_free (use_attr_name);
+		      
+	}
+}
+
+void
+glade_gtk_cell_layout_read_child (GladeWidgetAdaptor *adaptor,
+				  GladeWidget        *widget,
+				  GladeXmlNode       *node)
+{
+	GladeXmlNode *widget_node;
+	GladeWidget  *child_widget;
+
+	if (!glade_xml_node_verify (node, GLADE_XML_TAG_CHILD))
+		return;
+	
+	if ((widget_node = 
+	     glade_xml_search_child
+	     (node, GLADE_XML_TAG_WIDGET(glade_project_get_format(widget->project)))) != NULL)
+	{
+		if ((child_widget = glade_widget_read (widget->project, 
+						       widget, widget_node, 
+						       NULL)) != NULL)
+		{
+			glade_widget_add_child (widget, child_widget, FALSE);
+
+			glade_gtk_cell_renderer_read_attributes (child_widget, node);
+		}
+	}
+}
+
+static void
+glade_gtk_cell_renderer_write_attributes (GladeWidget        *widget,
+					  GladeXmlContext    *context,
+					  GladeXmlNode       *node)
+{
+	GladeProperty *property;
+	GladeXmlNode  *attrs_node;
+	gchar *attr_name;
+	GList *l;
+	static gint attr_len = 0;
+
+	if (!attr_len)
+		attr_len = strlen ("attr-");
+
+	attrs_node = glade_xml_node_new (context, GLADE_TAG_ATTRIBUTES);
+
+	for (l = widget->properties; l; l = l->next)
+	{
+		property = l->data;
+
+		if (strncmp (property->klass->id, "attr-", attr_len) == 0)
+		{
+			GladeXmlNode  *attr_node;
+			gchar *column_str, *use_attr_str;
+			gboolean use_attr = FALSE;
+
+			use_attr_str = g_strdup_printf ("use-%s", property->klass->id);
+			glade_widget_property_get (widget, use_attr_str, &use_attr);
+
+			if (use_attr && g_value_get_int (property->value) >= 0)
+			{
+				column_str   = g_strdup_printf ("%d", g_value_get_int (property->value));
+				attr_name    = &property->klass->id[attr_len];
+				
+				attr_node = glade_xml_node_new (context, GLADE_TAG_ATTRIBUTE);
+				glade_xml_node_append_child (attrs_node, attr_node);
+				glade_xml_node_set_property_string (attr_node, GLADE_TAG_NAME,
+								    attr_name);
+				glade_xml_set_content (attr_node, column_str);
+				g_free (column_str);
+			}
+			g_free (use_attr_str);
+		}
+	}
+
+	if (!glade_xml_node_get_children (attrs_node))
+		glade_xml_node_delete (attrs_node);
+	else
+		glade_xml_node_append_child (node, attrs_node);
+}
+
+void
+glade_gtk_cell_layout_write_child (GladeWidgetAdaptor *adaptor,
+				   GladeWidget        *widget,
+				   GladeXmlContext    *context,
+				   GladeXmlNode       *node)
+{
+	GladeXmlNode *child_node;
+
+	child_node = glade_xml_node_new (context, GLADE_XML_TAG_CHILD);
+	glade_xml_node_append_child (node, child_node);
+
+	/* Write out the widget */
+	glade_widget_write (widget, context, child_node);
+
+	glade_gtk_cell_renderer_write_attributes (widget, context, child_node);
+}
+
+
+/*--------------------------- GtkTreeViewColumn ---------------------------------*/
+void
+glade_gtk_treeview_column_action_activate (GladeWidgetAdaptor *adaptor,
+					   GObject *object,
+					   const gchar *action_path)
+{
+	if (strcmp (action_path, "append_renderer/accel") == 0)
+		glade_gtk_cell_layout_add_renderer (object, GTK_TYPE_CELL_RENDERER_ACCEL);
+	else if (strcmp (action_path, "append_renderer/combo") == 0)
+		glade_gtk_cell_layout_add_renderer (object, GTK_TYPE_CELL_RENDERER_COMBO);
+	else if (strcmp (action_path, "append_renderer/pixbuf") == 0)
+		glade_gtk_cell_layout_add_renderer (object, GTK_TYPE_CELL_RENDERER_PIXBUF);
+	else if (strcmp (action_path, "append_renderer/progress") == 0)
+		glade_gtk_cell_layout_add_renderer (object, GTK_TYPE_CELL_RENDERER_PROGRESS);
+	else if (strcmp (action_path, "append_renderer/spin") == 0)
+		glade_gtk_cell_layout_add_renderer (object, GTK_TYPE_CELL_RENDERER_SPIN);
+	else if (strcmp (action_path, "append_renderer/text") == 0)
+		glade_gtk_cell_layout_add_renderer (object, GTK_TYPE_CELL_RENDERER_TEXT);
+	else if (strcmp (action_path, "append_renderer/toggle") == 0)
+		glade_gtk_cell_layout_add_renderer (object, GTK_TYPE_CELL_RENDERER_TOGGLE);
+	else
+		GWA_GET_CLASS (GTK_TYPE_CONTAINER)->action_activate (adaptor,
+								     object,
+								     action_path);
+}
+
+/*--------------------------- GtkCellRenderer ---------------------------------*/
+void
+glade_gtk_cell_renderer_post_create (GladeWidgetAdaptor *adaptor, 
+				     GObject            *object, 
+				     GladeCreateReason   reason)
+{
+	GladePropertyClass  *pclass;
+	GladeProperty       *property;
+	GladeWidget         *widget;
+	GList               *l;
+	
+	widget = glade_widget_get_from_gobject (object);
+
+	for (l = adaptor->properties; l; l = l->next)
+	{
+		pclass = l->data;
+
+		if (strncmp (pclass->id, "use-attr-", strlen ("use-attr-")) == 0)
+		{
+			property = glade_widget_get_property (widget, pclass->id);
+			glade_property_sync (property);
+		}
+	}
+}
+
+
+GladeEditable *
+glade_gtk_cell_renderer_create_editable (GladeWidgetAdaptor  *adaptor,
+					 GladeEditorPageType  type)
+{
+	GladeEditable *editable;
+
+	/* Get base editable */
+	editable = GWA_GET_CLASS (G_TYPE_OBJECT)->create_editable (adaptor, type);
+
+	if (type == GLADE_PAGE_GENERAL || type == GLADE_PAGE_COMMON)
+		return (GladeEditable *)glade_cell_renderer_editor_new (adaptor, type, editable);
+
+	return editable;
+}
+
+static void
+glade_gtk_cell_renderer_set_use_attribute (GObject      *object, 
+					   const gchar  *property_name,
+					   const GValue *value)
+{
+	GladeWidget *widget = glade_widget_get_from_gobject (object);
+	gchar *attr_prop_name, *prop_msg, *attr_msg;
+
+	attr_prop_name = g_strdup_printf ("attr-%s", property_name);
+
+	prop_msg = g_strdup_printf (_("%s is set to load %s from the model"), 
+				    widget->name, property_name);
+	attr_msg = g_strdup_printf (_("%s is set to manipulate %s directly"), 
+				    widget->name, attr_prop_name);
+
+	glade_widget_property_set_sensitive (widget, property_name, FALSE, prop_msg);
+	glade_widget_property_set_sensitive (widget, attr_prop_name, FALSE, attr_msg);
+
+	if (g_value_get_boolean (value))
+		glade_widget_property_set_sensitive (widget, attr_prop_name, TRUE, NULL);
+	else
+		glade_widget_property_set_sensitive (widget, property_name, TRUE, NULL);
+
+	g_free (prop_msg);
+	g_free (attr_msg);
+	g_free (attr_prop_name);
+}
+
+
+static void
+glade_gtk_cell_renderer_set_attribute (GObject      *object, 
+				       const gchar  *property_name,
+				       const GValue *value)
+{
+	GtkCellLayout *layout;
+	GtkCellRenderer *cell;
+	GladeWidget *widget = glade_widget_get_from_gobject (object);
+	GladeProperty *property;
+	gchar *attr_prop_name;
+	GList *l;
+	static gint attr_len = 0;
+
+	if (!attr_len)
+		attr_len = strlen ("attr-");
+
+	/* Apply attributes to renderer when bound to a model in runtime */
+	widget = glade_widget_get_from_gobject (object);
+		
+	if (widget->parent == NULL) return;
+
+	layout = GTK_CELL_LAYOUT (widget->parent->object);
+	cell = GTK_CELL_RENDERER (object);
+
+	gtk_cell_layout_clear_attributes (layout, cell);
+
+	for (l = widget->properties; l; l = l->next)
+	{
+		property = l->data;
+
+		if (strncmp (property->klass->id, "attr-", attr_len) == 0)
+		{
+			attr_prop_name = &property->klass->id[attr_len];
+
+			/* XXX TODO: Check that column doesnt exceed model bounds, and that
+			 * cell supports the data type in the indexed column.
+			 */
+			if (g_value_get_int (property->value) >= 0)
+				gtk_cell_layout_add_attribute (layout, cell,
+							       attr_prop_name,
+							       g_value_get_int (property->value));
+		}
+	}
+}
+
+
+void
+glade_gtk_cell_renderer_set_property (GladeWidgetAdaptor *adaptor,
+				      GObject *object,
+				      const gchar *property_name,
+				      const GValue *value)
+{
+	static gint use_attr_len = 0;
+	static gint attr_len     = 0;
+
+	if (!attr_len)
+	{
+		use_attr_len = strlen ("use-attr-");
+		attr_len = strlen ("attr-");
+	}
+
+	if (strncmp (property_name, "use-attr-", use_attr_len) == 0)
+		glade_gtk_cell_renderer_set_use_attribute (object, &property_name[use_attr_len], value);
+	else if (strncmp (property_name, "attr-", attr_len) == 0)
+		glade_gtk_cell_renderer_set_attribute (object, &property_name[attr_len], value);
+	else
+		/* Chain Up */
+		GWA_GET_CLASS (G_TYPE_OBJECT)->set_property (adaptor,
+							     object,
+							     property_name, 
+							     value);
+}
+
+
+GladeEditorProperty *
+glade_gtk_cell_renderer_create_eprop (GladeWidgetAdaptor *adaptor,
+				      GladePropertyClass *klass,
+				      gboolean            use_command)
+{
+	GladeEditorProperty *eprop;
+
+	/* chain up.. */
+/* 	if (klass->pspec->value_type == GLADE_TYPE_CELL_ATTRIBUTE_LIST) */
+/* 		eprop = g_object_new (GLADE_TYPE_EPROP_CELL_ATTRIBUTE_LIST, */
+/* 				      "property-class", klass,  */
+/* 				      "use-command", use_command, */
+/* 				      NULL); */
+/* 	else */
+		eprop = GWA_GET_CLASS 
+			(G_TYPE_OBJECT)->create_eprop (adaptor, 
+						       klass, 
+						       use_command);
+	return eprop;
+}
+
+
+static void
+glade_gtk_cell_renderer_write_properties (GladeWidget        *widget,
+					  GladeXmlContext    *context,
+					  GladeXmlNode       *node)
+{
+	GladeProperty *property, *prop;
+	gchar *attr_name;
+	GList *l;
+	static gint attr_len = 0;
+
+	if (!attr_len)
+		attr_len = strlen ("attr-");
+
+	for (l = widget->properties; l; l = l->next)
+	{
+		property = l->data;
+
+		if (strncmp (property->klass->id, "attr-", attr_len) == 0)
+		{
+			gchar *use_attr_str;
+			gboolean use_attr = FALSE;
+
+			use_attr_str = g_strdup_printf ("use-%s", property->klass->id);
+			glade_widget_property_get (widget, use_attr_str, &use_attr);
+
+			attr_name  = &property->klass->id[attr_len];
+			prop       = glade_widget_get_property (widget, "attr_name");
+
+			if (!use_attr && prop)
+				glade_property_write (prop, context, node);
+
+			g_free (use_attr_str);
+		}
+	}
+}
+
+void
+glade_gtk_cell_renderer_write_widget (GladeWidgetAdaptor *adaptor,
+				      GladeWidget        *widget,
+				      GladeXmlContext    *context,
+				      GladeXmlNode       *node)
+{
+	if (!glade_xml_node_verify
+	    (node, GLADE_XML_TAG_WIDGET (glade_project_get_format (widget->project))))
+		return;
+
+	/* Write our normal properties, then chain up to write any other normal properties,
+	 * then attributes 
+	 */
+	glade_gtk_cell_renderer_write_properties (widget, context, node);
+
+        GWA_GET_CLASS (G_TYPE_OBJECT)->write_widget (adaptor, widget, context, node);
+}

Modified: trunk/plugins/gtk+/glade-image-item-editor.h
==============================================================================
--- trunk/plugins/gtk+/glade-image-item-editor.h	(original)
+++ trunk/plugins/gtk+/glade-image-item-editor.h	Wed Nov 19 18:17:58 2008
@@ -19,8 +19,8 @@
  * Authors:
  *   Tristan Van Berkom <tvb gnome org>
  */
-#ifndef _GLADE_IMAGE_BUTTON_EDITOR_H_
-#define _GLADE_IMAGE_BUTTON_EDITOR_H_
+#ifndef _GLADE_IMAGE_ITEM_EDITOR_H_
+#define _GLADE_IMAGE_ITEM_EDITOR_H_
 
 #include <gtk/gtk.h>
 

Modified: trunk/plugins/gtk+/glade-label-editor.c
==============================================================================
--- trunk/plugins/gtk+/glade-label-editor.c	(original)
+++ trunk/plugins/gtk+/glade-label-editor.c	Wed Nov 19 18:17:58 2008
@@ -128,7 +128,7 @@
 	{
 		GladeLabelContentMode content_mode;
 		GladeLabelWrapMode    wrap_mode;
-		static PangoAttrList *bold_attr_list;
+		static PangoAttrList *bold_attr_list = NULL;
 		gboolean              use_max_width;
 
 		if (!bold_attr_list)

Modified: trunk/plugins/gtk+/gtk+.xml.in
==============================================================================
--- trunk/plugins/gtk+/gtk+.xml.in	(original)
+++ trunk/plugins/gtk+/gtk+.xml.in	Wed Nov 19 18:17:58 2008
@@ -1791,6 +1791,7 @@
       <remove-child-function>glade_gtk_treeview_remove_child</remove-child-function>
       <action-activate-function>glade_gtk_treeview_action_activate</action-activate-function>
       <child-action-activate-function>glade_gtk_treeview_child_action_activate</child-action-activate-function>
+      <depends-function>glade_gtk_treeview_depends</depends-function>
 
       <actions>
         <action id="append_column" _name="Append Column" stock="gtk-add" important="True"/>
@@ -1897,10 +1898,603 @@
 
 
     <glade-widget-class name="GtkTreeViewColumn" generic-name="treeviewcolumn" _title="Tree View Column" 
-			libglade-unsupported="True"/>
+			libglade-unsupported="True">
+      <add-child-function>glade_gtk_cell_layout_add_child</add-child-function>
+      <remove-child-function>glade_gtk_cell_layout_remove_child</remove-child-function> 
+      <get-children-function>glade_gtk_cell_layout_get_children</get-children-function>
+      <read-child-function>glade_gtk_cell_layout_read_child</read-child-function>
+      <write-child-function>glade_gtk_cell_layout_write_child</write-child-function>
+
+      <action-activate-function>glade_gtk_treeview_column_action_activate</action-activate-function>
+      
+      <actions>
+        <action id="append_renderer" _name="Append Cell Renderer" stock="gtk-add">
+          <action id="accel" _name="Accel"/>
+          <action id="combo" _name="Combo"/>
+          <action id="pixbuf" _name="Pixbuf"/>
+          <action id="progress" _name="Progress"/>
+          <action id="spin" _name="Spin"/>
+          <action id="text" _name="Text"/>
+          <action id="toggle" _name="Toggle"/>
+        </action>
+      </actions>
+    </glade-widget-class>
+    
+
+    <glade-widget-class name="GtkCellRenderer">
+      <post-create-function>glade_gtk_cell_renderer_post_create</post-create-function>
+      <create-editable-function>glade_gtk_cell_renderer_create_editable</create-editable-function>
+      <set-property-function>glade_gtk_cell_renderer_set_property</set-property-function>
+      <write-widget-function>glade_gtk_cell_renderer_write_widget</write-widget-function>
+
+      <properties>
+        <property id="cell-background-set" disabled="True"/>
+        <property id="is-expanded" disabled="True"/>
+        <property id="is-expander" disabled="True"/>
+        <property id="mode" disabled="True"/>
+
+	<!-- Cell renderer properties with thier virtual attribute and control properties -->
+        <property id="cell-background" common="True" save="False" custom-layout="True"/>
+        <property id="attr-cell-background" _name="Data 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-cell-background" default="True" save="False" visible="False">
+	  <parameter-spec>
+	    <type>GParamBoolean</type>
+	  </parameter-spec>
+	</property>
+
+        <property id="cell-background-gdk" common="True" save="False" custom-layout="True"/>
+        <property id="attr-cell-background-gdk" _name="Data 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-cell-background-gdk" default="True" save="False" visible="False">
+	  <parameter-spec>
+	    <type>GParamBoolean</type>
+	  </parameter-spec>
+	</property>
+
+        <property id="width" common="True" save="False" custom-layout="True"/>
+        <property id="attr-width" _name="Data 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-width" default="True" save="False" visible="False">
+	  <parameter-spec>
+	    <type>GParamBoolean</type>
+	  </parameter-spec>
+	</property>
+
+        <property id="height" common="True" save="False" custom-layout="True"/>
+        <property id="attr-height" _name="Data 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-height" default="True" save="False" visible="False">
+	  <parameter-spec>
+	    <type>GParamBoolean</type>
+	  </parameter-spec>
+	</property>
+
+        <property id="xpad" _name="Horizontal padding" common="True" save="False" custom-layout="True"/>
+        <property id="attr-xpad" _name="Data 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-xpad" default="True" save="False" visible="False">
+	  <parameter-spec>
+	    <type>GParamBoolean</type>
+	  </parameter-spec>
+	</property>
+
+        <property id="ypad" _name="Vertical padding" common="True" save="False" custom-layout="True"/>
+        <property id="attr-ypad" _name="Data 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-ypad" default="True" save="False" visible="False">
+	  <parameter-spec>
+	    <type>GParamBoolean</type>
+	  </parameter-spec>
+	</property>
+
+        <property id="xalign" _name="Horizontal alignment" common="True" save="False" custom-layout="True"/>
+        <property id="attr-xalign" _name="Data 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-xalign" default="True" save="False" visible="False">
+	  <parameter-spec>
+	    <type>GParamBoolean</type>
+	  </parameter-spec>
+	</property>
+
+        <property id="yalign" _name="Vertical alignment" common="True" save="False" custom-layout="True"/>
+        <property id="attr-yalign" _name="Data 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-yalign" default="True" save="False" visible="False">
+	  <parameter-spec>
+	    <type>GParamBoolean</type>
+	  </parameter-spec>
+	</property>
+
+        <property id="sensitive" common="True" save="False" custom-layout="True"/>
+        <property id="attr-sensitive" _name="Data 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-sensitive" default="True" save="False" visible="False">
+	  <parameter-spec>
+	    <type>GParamBoolean</type>
+	  </parameter-spec>
+	</property>
+
+        <property id="visible" _name="Visible" common="True" save="False" custom-layout="True"/>
+        <property id="attr-visible" _name="Data 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-visible" default="True" save="False" visible="False">
+	  <parameter-spec>
+	    <type>GParamBoolean</type>
+	  </parameter-spec>
+	</property>
+      </properties>
+    </glade-widget-class>
 
     <glade-widget-class name="GtkCellRendererText" generic-name="cellrenderertext" _title="Text Renderer" 
-			libglade-unsupported="True"/>
+			libglade-unsupported="True">
+      <properties>
+        <property id="editable-set" disabled="True"/>
+	<property id="ellipsize-set" disabled="True"/>
+	<property id="family-set" disabled="True"/>
+	<property id="align-set" disabled="True"/>
+	<property id="background-set" disabled="True"/>
+	<property id="foreground-set" disabled="True"/>
+	<property id="language-set" disabled="True"/>
+	<property id="rise-set" disabled="True"/>
+	<property id="scale-set" disabled="True"/>
+	<property id="size-set" disabled="True"/>
+	<property id="weight-set" disabled="True"/>
+	<property id="variant-set" disabled="True"/>
+	<property id="underline-set" disabled="True"/>
+	<property id="style-set" disabled="True"/>
+	<property id="strikethrough-set" disabled="True"/>
+	<property id="stretch-set" disabled="True"/>
+
+        <property id="alignment" save="False" custom-layout="True"/>
+        <property id="attr-alignment" _name="Data 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-alignment" default="True" save="False" visible="False">
+	  <parameter-spec>
+	    <type>GParamBoolean</type>
+	  </parameter-spec>
+	</property>
+
+        <property id="attributes" save="False" custom-layout="True"/>
+        <property id="attr-attributes" _name="Data 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-attributes" default="True" save="False" visible="False">
+	  <parameter-spec>
+	    <type>GParamBoolean</type>
+	  </parameter-spec>
+	</property>
+
+
+        <property id="background" save="False" custom-layout="True"/>
+        <property id="attr-background" _name="Data 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-background" default="True" save="False" visible="False">
+	  <parameter-spec>
+	    <type>GParamBoolean</type>
+	  </parameter-spec>
+	</property>
+
+        <property id="background-gdk" save="False" custom-layout="True"/>
+        <property id="attr-background-gdk" _name="Data 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-background-gdk" default="True" save="False" visible="False">
+	  <parameter-spec>
+	    <type>GParamBoolean</type>
+	  </parameter-spec>
+	</property>
+
+        <property id="editable" save="False" custom-layout="True"/>
+        <property id="attr-editable" _name="Data 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-editable" default="True" save="False" visible="False">
+	  <parameter-spec>
+	    <type>GParamBoolean</type>
+	  </parameter-spec>
+	</property>
+
+        <property id="ellipsize" save="False" custom-layout="True"/>
+        <property id="attr-ellipsize" _name="Data 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-ellipsize" default="True" save="False" visible="False">
+	  <parameter-spec>
+	    <type>GParamBoolean</type>
+	  </parameter-spec>
+	</property>
+
+        <property id="family" save="False" custom-layout="True"/>
+        <property id="attr-family" _name="Data 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-family" default="True" save="False" visible="False">
+	  <parameter-spec>
+	    <type>GParamBoolean</type>
+	  </parameter-spec>
+	</property>
+
+        <property id="font" save="False" custom-layout="True"/>
+        <property id="attr-font" _name="Data 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-font" default="True" save="False" visible="False">
+	  <parameter-spec>
+	    <type>GParamBoolean</type>
+	  </parameter-spec>
+	</property>
+
+        <property id="font-desc" save="False" custom-layout="True"/>
+        <property id="attr-font-desc" _name="Data 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-font-desc" default="True" save="False" visible="False">
+	  <parameter-spec>
+	    <type>GParamBoolean</type>
+	  </parameter-spec>
+	</property>
+
+        <property id="foreground" save="False" custom-layout="True"/>
+        <property id="attr-foreground" _name="Data 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-foreground" default="True" save="False" visible="False">
+	  <parameter-spec>
+	    <type>GParamBoolean</type>
+	  </parameter-spec>
+	</property>
+
+        <property id="foreground-gdk" save="False" custom-layout="True"/>
+        <property id="attr-foreground-gdk" _name="Data 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-foreground-gdk" default="True" save="False" visible="False">
+	  <parameter-spec>
+	    <type>GParamBoolean</type>
+	  </parameter-spec>
+	</property>
+
+        <property id="language" save="False" custom-layout="True"/>
+        <property id="attr-language" _name="Data 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-language" default="True" save="False" visible="False">
+	  <parameter-spec>
+	    <type>GParamBoolean</type>
+	  </parameter-spec>
+	</property>
+
+        <property id="markup" save="False" custom-layout="True"/>
+        <property id="attr-markup" _name="Data 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-markup" default="True" save="False" visible="False">
+	  <parameter-spec>
+	    <type>GParamBoolean</type>
+	  </parameter-spec>
+	</property>
+
+        <property id="rise" save="False" custom-layout="True"/>
+        <property id="attr-rise" _name="Data 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-rise" default="True" save="False" visible="False">
+	  <parameter-spec>
+	    <type>GParamBoolean</type>
+	  </parameter-spec>
+	</property>
+
+        <property id="scale" save="False" custom-layout="True"/>
+        <property id="attr-scale" _name="Data 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-scale" default="True" save="False" visible="False">
+	  <parameter-spec>
+	    <type>GParamBoolean</type>
+	  </parameter-spec>
+	</property>
+
+        <property id="single-paragraph-mode" save="False" custom-layout="True"/>
+        <property id="attr-single-paragraph-mode" _name="Data 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-single-paragraph-mode" default="True" save="False" visible="False">
+	  <parameter-spec>
+	    <type>GParamBoolean</type>
+	  </parameter-spec>
+	</property>
+
+        <property id="size" save="False" custom-layout="True"/>
+        <property id="attr-size" _name="Data 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-size" default="True" save="False" visible="False">
+	  <parameter-spec>
+	    <type>GParamBoolean</type>
+	  </parameter-spec>
+	</property>
+
+        <property id="size-points" save="False" custom-layout="True"/>
+        <property id="attr-size-points" _name="Data 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-size-points" default="True" save="False" visible="False">
+	  <parameter-spec>
+	    <type>GParamBoolean</type>
+	  </parameter-spec>
+	</property>
+
+        <property id="stretch" save="False" custom-layout="True"/>
+        <property id="attr-stretch" _name="Data 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-stretch" default="True" save="False" visible="False">
+	  <parameter-spec>
+	    <type>GParamBoolean</type>
+	  </parameter-spec>
+	</property>
+
+        <property id="strikethrough" save="False" custom-layout="True"/>
+        <property id="attr-strikethrough" _name="Data 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-strikethrough" default="True" save="False" visible="False">
+	  <parameter-spec>
+	    <type>GParamBoolean</type>
+	  </parameter-spec>
+	</property>
+
+        <property id="style" save="False" custom-layout="True"/>
+        <property id="attr-style" _name="Data 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-style" default="True" save="False" visible="False">
+	  <parameter-spec>
+	    <type>GParamBoolean</type>
+	  </parameter-spec>
+	</property>
+
+        <property id="text" save="False" custom-layout="True"/>
+        <property id="attr-text" _name="Data 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-text" default="True" save="False" visible="False">
+	  <parameter-spec>
+	    <type>GParamBoolean</type>
+	  </parameter-spec>
+	</property>
+
+        <property id="underline" save="False" custom-layout="True"/>
+        <property id="attr-underline" _name="Data 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-underline" default="True" save="False" visible="False">
+	  <parameter-spec>
+	    <type>GParamBoolean</type>
+	  </parameter-spec>
+	</property>
+
+        <property id="variant" save="False" custom-layout="True"/>
+        <property id="attr-variant" _name="Data 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-variant" default="True" save="False" visible="False">
+	  <parameter-spec>
+	    <type>GParamBoolean</type>
+	  </parameter-spec>
+	</property>
+
+        <property id="weight" save="False" custom-layout="True"/>
+        <property id="attr-weight" _name="Data 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-weight" default="True" save="False" visible="False">
+	  <parameter-spec>
+	    <type>GParamBoolean</type>
+	  </parameter-spec>
+	</property>
+
+        <property id="width-chars" save="False" custom-layout="True"/>
+        <property id="attr-width-chars" _name="Data 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-width-chars" default="True" save="False" visible="False">
+	  <parameter-spec>
+	    <type>GParamBoolean</type>
+	  </parameter-spec>
+	</property>
+
+        <property id="wrap-mode" save="False" custom-layout="True"/>
+        <property id="attr-wrap-mode" _name="Data 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-wrap-mode" default="True" save="False" visible="False">
+	  <parameter-spec>
+	    <type>GParamBoolean</type>
+	  </parameter-spec>
+	</property>
+
+        <property id="wrap-width" save="False" custom-layout="True"/>
+        <property id="attr-wrap-width" _name="Data 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-wrap-width" default="True" save="False" visible="False">
+	  <parameter-spec>
+	    <type>GParamBoolean</type>
+	  </parameter-spec>
+	</property>
+      </properties>
+
+
+
+    </glade-widget-class>
+      
+
     <glade-widget-class name="GtkCellRendererAccel" generic-name="cellrendereraccel" _title="Accelerator Renderer" 
 			libglade-unsupported="True"/>
     <glade-widget-class name="GtkCellRendererCombo" generic-name="cellrenderercombo" _title="Combo Renderer" 

Modified: trunk/po/POTFILES.in
==============================================================================
--- trunk/po/POTFILES.in	(original)
+++ trunk/po/POTFILES.in	Wed Nov 19 18:17:58 2008
@@ -40,11 +40,25 @@
 gladeui/icon-naming-spec.c
 
 # gtk plugin backend
+plugins/gtk+/glade-convert.c
 plugins/gtk+/glade-attributes.c
 plugins/gtk+/glade-gtk.c
 plugins/gtk+/glade-accels.c
 plugins/gtk+/gtk+.xml.in
 plugins/gtk+/gtkunixprint.xml.in
+plugins/gtk+/glade-column-types.c
+plugins/gtk+/glade-model-data.c
+plugins/gtk+/glade-text-button.c
+plugins/gtk+/glade-cell-renderer-button.c
+plugins/gtk+/glade-icon-sources.c
+plugins/gtk+/glade-button-editor.c
+plugins/gtk+/glade-tool-button-editor.c
+plugins/gtk+/glade-image-editor.c
+plugins/gtk+/glade-image-item-editor.c
+plugins/gtk+/glade-icon-factory-editor.c
+plugins/gtk+/glade-store-editor.c
+plugins/gtk+/glade-label-editor.c
+plugins/gtk+/glade-cell-renderer-editor.c
 
 # gnome plugin backend
 plugins/gnome/glade-gnome.c



[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]