[glade] * glade-widget.[ch]: - Make glade_widget_find_child() have a const gchar argument - Use glade
- From: Juan Pablo Ugarte <jpu src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [glade] * glade-widget.[ch]: - Make glade_widget_find_child() have a const gchar argument - Use glade
- Date: Tue, 5 Apr 2011 05:20:30 +0000 (UTC)
commit 46479e6b6c45764cefbdc7190fb71c1e5e3daf4c
Author: Tristan Van Berkom <tristan van berkom gmail com>
Date: Mon Apr 4 21:47:42 2011 +0900
* glade-widget.[ch]:
- Make glade_widget_find_child() have a const gchar argument
- Use glade_widget_get_internal_child() instead of glade_widget_get_internal_func().
ChangeLog | 4 ++
gladeui/glade-widget.c | 78 ++++++++++++-----------------------------------
gladeui/glade-widget.h | 2 +-
3 files changed, 25 insertions(+), 59 deletions(-)
---
diff --git a/ChangeLog b/ChangeLog
index c4cc3d1..b371265 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -4,6 +4,10 @@
* doc/gladeui.types: Fixed inclusion of private type in doc generation (bug 645125).
+ * glade-widget.[ch]:
+ - Make glade_widget_find_child() have a const gchar argument
+ - Use glade_widget_get_internal_child() instead of glade_widget_get_internal_func().
+
2011-04-03 Cosimo Cecchi <cosimoc gnome org>
* doc/Makefile.am: don't use gtk+-2.0 for scanning the docs
diff --git a/gladeui/glade-widget.c b/gladeui/glade-widget.c
index fcd0b30..ca89dd3 100644
--- a/gladeui/glade-widget.c
+++ b/gladeui/glade-widget.c
@@ -1475,7 +1475,9 @@ glade_widget_set_default_packing_properties (GladeWidget * container,
* When looking for an internal child we have to walk up the hierarchy...
*/
static GObject *
-glade_widget_get_internal_child (GladeWidget * parent, const gchar * internal)
+glade_widget_get_internal_child (GladeWidget *main_target,
+ GladeWidget *parent,
+ const gchar *internal)
{
while (parent)
{
@@ -1483,47 +1485,21 @@ glade_widget_get_internal_child (GladeWidget * parent, const gchar * internal)
return glade_widget_adaptor_get_internal_child
(parent->priv->adaptor, parent->priv->object, internal);
- parent = glade_widget_get_parent (parent);
- }
- return NULL;
-}
-
-static GladeGetInternalFunc
-glade_widget_get_internal_func (GladeWidget * main_target,
- GladeWidget * parent, GladeWidget ** parent_ret)
-{
- GladeWidget *gwidget;
-
- g_return_val_if_fail (GLADE_IS_WIDGET (parent), NULL);
-
- for (gwidget = parent; gwidget; gwidget = gwidget->priv->parent)
- {
- GladeWidgetAdaptorClass *adaptor_class =
- GLADE_WIDGET_ADAPTOR_GET_CLASS (gwidget->priv->adaptor);
-
- if (adaptor_class->get_internal_child)
- {
- if (parent_ret)
- *parent_ret = gwidget;
- return adaptor_class->get_internal_child;
- }
-
/* Limit the itterations into where the copy routine stared */
- if (gwidget == main_target)
+ if (parent == main_target)
break;
- }
+ parent = glade_widget_get_parent (parent);
+ }
return NULL;
}
-
static GladeWidget *
glade_widget_dup_internal (GladeWidget * main_target,
GladeWidget * parent,
GladeWidget * template_widget, gboolean exact)
{
- GladeGetInternalFunc get_internal;
- GladeWidget *gwidget = NULL, *internal_parent;
+ GladeWidget *gwidget = NULL;
GList *children;
GtkWidget *placeholder;
gchar *child_type;
@@ -1537,22 +1513,13 @@ glade_widget_dup_internal (GladeWidget * main_target,
{
GObject *internal_object = NULL;
- if ((get_internal =
- glade_widget_get_internal_func (main_target, parent,
- &internal_parent)) != NULL)
- {
- /* We cant use "parent" here, we have to recurse up the hierarchy to find
- * the "parent" that has `get_internal_child' support (i.e. internal children
- * may have depth).
- */
- if ((internal_object =
- get_internal (internal_parent->priv->adaptor,
- internal_parent->priv->object,
- template_widget->priv->internal)) != NULL)
- {
- gwidget = glade_widget_get_from_gobject (internal_object);
- g_assert (gwidget);
- }
+ if ((internal_object =
+ glade_widget_get_internal_child (main_target,
+ parent,
+ template_widget->priv->internal)) != NULL)
+ {
+ gwidget = glade_widget_get_from_gobject (internal_object);
+ g_assert (gwidget);
}
}
@@ -1754,19 +1721,13 @@ glade_widget_insert_children (GladeWidget * gwidget, GList * children)
if (extract->internal_name)
{
- GladeGetInternalFunc get_internal;
- GladeWidget *internal_parent;
-
/* Recurse and add deep widget hierarchies to internal
* widgets.
*/
- get_internal = glade_widget_get_internal_func
- (NULL, gwidget, &internal_parent);
-
- internal_object = get_internal (internal_parent->priv->adaptor,
- internal_parent->priv->object,
- extract->internal_name);
+ internal_object = glade_widget_get_internal_child (NULL,
+ gwidget,
+ extract->internal_name);
gchild = glade_widget_get_from_gobject (internal_object);
@@ -3475,7 +3436,8 @@ glade_widget_set_parent (GladeWidget * widget, GladeWidget * parent)
* Returns: The child of widget or NULL if it was not found.
*/
GladeWidget *
-glade_widget_find_child (GladeWidget *widget, gchar *name)
+glade_widget_find_child (GladeWidget *widget,
+ const gchar *name)
{
GList *adapter_children;
GladeWidget *real_child = NULL;
@@ -3798,7 +3760,7 @@ glade_widget_read (GladeProject * project,
if (internal)
{
GObject *child_object =
- glade_widget_get_internal_child (parent, internal);
+ glade_widget_get_internal_child (NULL, parent, internal);
if (!child_object)
{
diff --git a/gladeui/glade-widget.h b/gladeui/glade-widget.h
index d3ce6fc..aa0726f 100644
--- a/gladeui/glade-widget.h
+++ b/gladeui/glade-widget.h
@@ -385,7 +385,7 @@ void glade_widget_support_changed (GladeWidget *w
GtkTreeModel *glade_widget_get_signal_model (GladeWidget *widget);
GladeWidget *glade_widget_find_child (GladeWidget *widget,
- gchar *name);
+ const gchar *name);
G_END_DECLS
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]