summaryrefslogtreecommitdiff
path: root/gtk/gtktoolbutton.c
diff options
context:
space:
mode:
authorMatthias Clasen <mclasen@redhat.com>2007-01-28 03:16:30 +0000
committerMatthias Clasen <matthiasc@src.gnome.org>2007-01-28 03:16:30 +0000
commitd465fbeda745525485098815a5a702d7d6b031d7 (patch)
tree143f19f67ca1ff1ecf768e8ebd031168d584481a /gtk/gtktoolbutton.c
parent0030448e265e50dea73a772e61f558183519fbf7 (diff)
downloadgtk+-d465fbeda745525485098815a5a702d7d6b031d7.tar.gz
Rearrange things so that setting multiple properties causes not more than
2007-01-27 Matthias Clasen <mclasen@redhat.com> * gtk/gtktoolbar.c: * gtk/gtktoolitem.c: * gtk/gtktoolbutton.c: Rearrange things so that setting multiple properties causes not more than a single reconstruction of the contents. * gtk/gtkaction.c (connect_proxy): Set all tool button properties in one go. svn path=/trunk/; revision=17227
Diffstat (limited to 'gtk/gtktoolbutton.c')
-rw-r--r--gtk/gtktoolbutton.c65
1 files changed, 28 insertions, 37 deletions
diff --git a/gtk/gtktoolbutton.c b/gtk/gtktoolbutton.c
index c7b2f573cf..7c126931dd 100644
--- a/gtk/gtktoolbutton.c
+++ b/gtk/gtktoolbutton.c
@@ -94,6 +94,7 @@ struct _GtkToolButtonPrivate
GtkWidget *icon_widget;
guint use_underline : 1;
+ guint contents_invalid : 1;
};
GType
@@ -269,6 +270,8 @@ gtk_tool_button_init (GtkToolButton *button,
button->priv = GTK_TOOL_BUTTON_GET_PRIVATE (button);
+ button->priv->contents_invalid = TRUE;
+
gtk_tool_item_set_homogeneous (toolitem, TRUE);
/* create button */
@@ -294,6 +297,8 @@ gtk_tool_button_construct_contents (GtkToolItem *tool_item)
GtkWidget *box = NULL;
guint icon_spacing;
+ button->priv->contents_invalid = FALSE;
+
gtk_widget_style_get (GTK_WIDGET (tool_item),
"icon-spacing", &icon_spacing,
NULL);
@@ -494,7 +499,9 @@ static void
gtk_tool_button_property_notify (GObject *object,
GParamSpec *pspec)
{
- if (strcmp (pspec->name, "is-important") == 0)
+ GtkToolButton *button = GTK_TOOL_BUTTON (object);
+
+ if (button->priv->contents_invalid)
gtk_tool_button_construct_contents (GTK_TOOL_ITEM (object));
if (parent_class->notify)
@@ -735,13 +742,9 @@ gtk_tool_button_new (GtkWidget *icon_widget,
GtkToolButton *button;
button = g_object_new (GTK_TYPE_TOOL_BUTTON,
+ "label", label,
+ "icon-widget", icon_widget,
NULL);
-
- if (label)
- gtk_tool_button_set_label (button, label);
-
- if (icon_widget)
- gtk_tool_button_set_icon_widget (button, icon_widget);
return GTK_TOOL_ITEM (button);
}
@@ -770,12 +773,11 @@ gtk_tool_button_set_label (GtkToolButton *button,
old_label = button->priv->label_text;
button->priv->label_text = g_strdup (label);
- gtk_tool_button_construct_contents (GTK_TOOL_ITEM (button));
-
- g_object_notify (G_OBJECT (button), "label");
+ button->priv->contents_invalid = TRUE;
- if (old_label)
- g_free (old_label);
+ g_free (old_label);
+
+ g_object_notify (G_OBJECT (button), "label");
}
/**
@@ -825,8 +827,7 @@ gtk_tool_button_set_use_underline (GtkToolButton *button,
if (use_underline != button->priv->use_underline)
{
button->priv->use_underline = use_underline;
-
- gtk_tool_button_construct_contents (GTK_TOOL_ITEM (button));
+ button->priv->contents_invalid = TRUE;
g_object_notify (G_OBJECT (button), "use-underline");
}
@@ -874,11 +875,11 @@ gtk_tool_button_set_stock_id (GtkToolButton *button,
old_stock_id = button->priv->stock_id;
button->priv->stock_id = g_strdup (stock_id);
- gtk_tool_button_construct_contents (GTK_TOOL_ITEM (button));
-
- g_object_notify (G_OBJECT (button), "stock-id");
+ button->priv->contents_invalid = TRUE;
g_free (old_stock_id);
+
+ g_object_notify (G_OBJECT (button), "stock-id");
}
/**
@@ -924,11 +925,11 @@ gtk_tool_button_set_icon_name (GtkToolButton *button,
old_icon_name = button->priv->icon_name;
button->priv->icon_name = g_strdup (icon_name);
- gtk_tool_button_construct_contents (GTK_TOOL_ITEM (button));
-
- g_object_notify (G_OBJECT (button), "icon-name");
+ button->priv->contents_invalid = TRUE;
g_free (old_icon_name);
+
+ g_object_notify (G_OBJECT (button), "icon-name");
}
/**
@@ -974,22 +975,17 @@ gtk_tool_button_set_icon_widget (GtkToolButton *button,
if (button->priv->icon_widget)
{
if (button->priv->icon_widget->parent)
- {
- gtk_container_remove (GTK_CONTAINER (button->priv->icon_widget->parent),
+ gtk_container_remove (GTK_CONTAINER (button->priv->icon_widget->parent),
button->priv->icon_widget);
- }
g_object_unref (button->priv->icon_widget);
}
if (icon_widget)
- {
- g_object_ref_sink (icon_widget);
- }
+ g_object_ref_sink (icon_widget);
button->priv->icon_widget = icon_widget;
-
- gtk_tool_button_construct_contents (GTK_TOOL_ITEM (button));
+ button->priv->contents_invalid = TRUE;
g_object_notify (G_OBJECT (button), "icon-widget");
}
@@ -1020,22 +1016,17 @@ gtk_tool_button_set_label_widget (GtkToolButton *button,
if (button->priv->label_widget)
{
if (button->priv->label_widget->parent)
- {
- gtk_container_remove (GTK_CONTAINER (button->priv->label_widget->parent),
- button->priv->label_widget);
- }
+ gtk_container_remove (GTK_CONTAINER (button->priv->label_widget->parent),
+ button->priv->label_widget);
g_object_unref (button->priv->label_widget);
}
if (label_widget)
- {
- g_object_ref_sink (label_widget);
- }
+ g_object_ref_sink (label_widget);
button->priv->label_widget = label_widget;
-
- gtk_tool_button_construct_contents (GTK_TOOL_ITEM (button));
+ button->priv->contents_invalid = TRUE;
g_object_notify (G_OBJECT (button), "label-widget");
}