[gtk+/wip/baedert/progressbar: 16/18] box: Remove center child
- From: Timm Bäder <baedert src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [gtk+/wip/baedert/progressbar: 16/18] box: Remove center child
- Date: Sun, 23 Apr 2017 15:54:52 +0000 (UTC)
commit f91076d8970dc707fc451db18055011a853e3b4d
Author: Timm Bäder <mail baedert org>
Date: Sun Apr 23 09:30:17 2017 +0200
box: Remove center child
demos/widget-factory/widget-factory.ui | 8 +-
docs/reference/gtk/gtk4-sections.txt | 2 -
gtk/gtkbox.c | 493 +----------------------------
gtk/gtkbox.h | 6 -
gtk/inspector/data-list.ui | 4 +-
gtk/inspector/recorder.ui | 4 +-
gtk/inspector/window.ui | 4 +-
gtk/ui/gtkfilechooserwidget.ui | 4 +-
tests/testbox.c | 1 -
testsuite/css/nodes/box-packing.ltr.nodes | 1 -
testsuite/css/nodes/box-packing.ltr.ui | 6 -
testsuite/css/nodes/box-packing.rtl.nodes | 1 -
testsuite/css/nodes/box-packing.rtl.ui | 6 -
13 files changed, 29 insertions(+), 511 deletions(-)
---
diff --git a/demos/widget-factory/widget-factory.ui b/demos/widget-factory/widget-factory.ui
index 86e44f9..adeb72b 100644
--- a/demos/widget-factory/widget-factory.ui
+++ b/demos/widget-factory/widget-factory.ui
@@ -3038,9 +3038,11 @@ microphone-sensitivity-medium-symbolic</property>
</child>
<child type="tab">
<object class="GtkBox">
- <child type="center">
+ <child>
<object class="GtkLabel">
<property name="label" translatable="yes">Page 1</property>
+ <property name="halign">center</property>
+ <property name="hexpand">1</property>
</object>
</child>
<child>
@@ -3069,9 +3071,11 @@ microphone-sensitivity-medium-symbolic</property>
</child>
<child type="tab">
<object class="GtkBox">
- <child type="center">
+ <child>
<object class="GtkLabel">
<property name="label" translatable="yes">Page 2</property>
+ <property name="halign">center</property>
+ <property name="hexpand">1</property>
</object>
</child>
<child>
diff --git a/docs/reference/gtk/gtk4-sections.txt b/docs/reference/gtk/gtk4-sections.txt
index 84229d0..41c37ba 100644
--- a/docs/reference/gtk/gtk4-sections.txt
+++ b/docs/reference/gtk/gtk4-sections.txt
@@ -329,8 +329,6 @@ gtk_box_query_child_packing
gtk_box_set_child_packing
gtk_box_get_baseline_position
gtk_box_set_baseline_position
-gtk_box_get_center_widget
-gtk_box_set_center_widget
<SUBSECTION Standard>
GTK_BOX
GTK_IS_BOX
diff --git a/gtk/gtkbox.c b/gtk/gtkbox.c
index 3108efa..16bb87d 100644
--- a/gtk/gtkbox.c
+++ b/gtk/gtkbox.c
@@ -117,7 +117,6 @@ typedef struct _GtkBoxChild GtkBoxChild;
struct _GtkBoxPrivate
{
GList *children;
- GtkBoxChild *center;
GtkCssGadget *gadget;
GtkOrientation orientation;
@@ -189,12 +188,9 @@ static void gtk_box_measure (GtkWidget *widget,
static void gtk_box_snapshot (GtkWidget *widget,
GtkSnapshot *snapshot);
-static void gtk_box_buildable_init (GtkBuildableIface *iface);
-
G_DEFINE_TYPE_WITH_CODE (GtkBox, gtk_box, GTK_TYPE_CONTAINER,
G_ADD_PRIVATE (GtkBox)
- G_IMPLEMENT_INTERFACE (GTK_TYPE_ORIENTABLE, NULL)
- G_IMPLEMENT_INTERFACE (GTK_TYPE_BUILDABLE, gtk_box_buildable_init))
+ G_IMPLEMENT_INTERFACE (GTK_TYPE_ORIENTABLE, NULL))
static void
gtk_box_dispose (GObject *object)
@@ -720,360 +716,6 @@ gtk_box_size_allocate_no_center (GtkWidget *widget,
}
static void
-gtk_box_size_allocate_with_center (GtkWidget *widget,
- const GtkAllocation *allocation)
-{
- GtkBox *box = GTK_BOX (widget);
- GtkBoxPrivate *priv = box->priv;
- GtkBoxChild *child;
- GList *children;
- gint nvis[2];
- gint nexp[2];
- GtkTextDirection direction;
- GtkAllocation child_allocation;
- GtkRequestedSize *sizes[2];
- GtkRequestedSize center_req = {0, 0};
- gint child_minimum_baseline, child_natural_baseline;
- gint minimum_above, natural_above;
- gint minimum_below, natural_below;
- gboolean have_baseline;
- gint baseline;
- gint idx[2];
- gint center_pos;
- gint center_size;
- gint box_size;
- gint side[2];
- GtkPackType packing;
- gint min_size[2];
- gint nat_size[2];
- gint size_given_to_child[2];
- gint n_extra_widgets[2];
- gint x = 0, y = 0, i;
- gint child_size;
- gint spacing;
-
- nvis[0] = nvis[1] = 0;
- nexp[0] = nexp[1] = 0;
- for (children = priv->children; children; children = children->next)
- {
- child = children->data;
-
- if (child != priv->center &&
- _gtk_widget_get_visible (child->widget))
- {
- nvis[child->pack] += 1;
- if (gtk_widget_compute_expand (child->widget, priv->orientation))
- nexp[child->pack] += 1;
- }
- }
-
- direction = _gtk_widget_get_direction (widget);
- sizes[0] = g_newa (GtkRequestedSize, nvis[0]);
- sizes[1] = g_newa (GtkRequestedSize, nvis[1]);
-
- spacing = get_spacing (box);
- if (priv->orientation == GTK_ORIENTATION_HORIZONTAL)
- box_size = allocation->width;
- else
- box_size = allocation->height;
-
- have_baseline = FALSE;
- minimum_above = natural_above = 0;
- minimum_below = natural_below = 0;
-
- min_size[0] = nat_size[0] = nvis[0] * spacing;
- min_size[1] = nat_size[1] = nvis[1] * spacing;
-
- /* Retrieve desired size for visible children. */
- idx[0] = idx[1] = 0;
- for (children = priv->children; children; children = children->next)
- {
- GtkRequestedSize *req;
-
- child = children->data;
-
- if (!_gtk_widget_get_visible (child->widget))
- continue;
-
- if (child == priv->center)
- req = ¢er_req;
- else
- req = &(sizes[child->pack][idx[child->pack]]);
-
- gtk_widget_measure (child->widget,
- priv->orientation,
- priv->orientation == GTK_ORIENTATION_HORIZONTAL ?
- allocation->height : allocation->width,
- &req->minimum_size, &req->natural_size,
- NULL, NULL);
-
- if (child != priv->center)
- {
- min_size[child->pack] += req->minimum_size;
- nat_size[child->pack] += req->natural_size;
-
- idx[child->pack] += 1;
- }
-
- req->data = child;
- }
-
- /* Determine size of center */
- if (gtk_widget_compute_expand (priv->center->widget, priv->orientation))
- center_size = MAX (box_size - 2 * MAX (nat_size[0], nat_size[1]), center_req.minimum_size);
- else
- center_size = MAX (MIN (center_req.natural_size, box_size - min_size[0] - min_size[1]),
center_req.minimum_size);
-
- if (priv->homogeneous)
- {
- size_given_to_child[0] = ((box_size - center_size) / 2 - nvis[0] * spacing) / nvis[0];
- size_given_to_child[1] = ((box_size - center_size) / 2 - nvis[1] * spacing) / nvis[1];
- size_given_to_child[0] = MIN (size_given_to_child[0], size_given_to_child[1]);
- n_extra_widgets[0] = 0;
- }
- else
- {
- for (packing = GTK_PACK_START; packing <= GTK_PACK_END; packing++)
- {
- gint extra_space;
- /* Distribute the remainder naturally on each side */
- extra_space = MIN ((box_size - center_size) / 2 - min_size[packing],
- box_size - center_size - min_size[0] - min_size[1]);
- extra_space = MAX (0, extra_space);
- extra_space = gtk_distribute_natural_allocation (extra_space, nvis[packing], sizes[packing]);
-
- /* Calculate space which hasn't distributed yet,
- * and is available for expanding children.
- */
- if (nexp[packing] > 0)
- {
- size_given_to_child[packing] = extra_space / nexp[packing];
- n_extra_widgets[packing] = extra_space % nexp[packing];
- }
- else
- {
- size_given_to_child[packing] = 0;
- }
- }
- }
-
- /* Allocate child sizes. */
- for (packing = GTK_PACK_START; packing <= GTK_PACK_END; ++packing)
- {
- for (i = 0, children = priv->children; children; children = children->next)
- {
- child = children->data;
-
- /* If widget is not visible, skip it. */
- if (!_gtk_widget_get_visible (child->widget))
- continue;
-
- /* Skip the center widget */
- if (child == priv->center)
- continue;
-
- /* If widget is packed differently, skip it. */
- if (child->pack != packing)
- continue;
-
- /* Assign the child's size. */
- if (priv->homogeneous)
- {
- child_size = size_given_to_child[0];
-
- if (n_extra_widgets[0] > 0)
- {
- child_size++;
- n_extra_widgets[0]--;
- }
- }
- else
- {
- child_size = sizes[packing][i].minimum_size;
-
- if (gtk_widget_compute_expand (child->widget, priv->orientation))
- {
- child_size += size_given_to_child[packing];
-
- if (n_extra_widgets[packing] > 0)
- {
- child_size++;
- n_extra_widgets[packing]--;
- }
- }
- }
-
- sizes[packing][i].natural_size = child_size;
-
- if (priv->orientation == GTK_ORIENTATION_HORIZONTAL &&
- gtk_widget_get_valign (child->widget) == GTK_ALIGN_BASELINE)
- {
- gint child_allocation_width;
- gint child_minimum_height, child_natural_height;
-
- child_allocation_width = MAX (1, child_size);
-
- child_minimum_baseline = -1;
- child_natural_baseline = -1;
- gtk_widget_measure (child->widget,
- GTK_ORIENTATION_VERTICAL,
- child_allocation_width,
- &child_minimum_height, &child_natural_height,
- &child_minimum_baseline, &child_natural_baseline);
-
- if (child_minimum_baseline >= 0)
- {
- have_baseline = TRUE;
- minimum_below = MAX (minimum_below, child_minimum_height - child_minimum_baseline);
- natural_below = MAX (natural_below, child_natural_height - child_natural_baseline);
- minimum_above = MAX (minimum_above, child_minimum_baseline);
- natural_above = MAX (natural_above, child_natural_baseline);
- }
- }
-
- i++;
- }
- }
-
- baseline = gtk_widget_get_allocated_baseline (widget);
- if (baseline == -1 && have_baseline)
- {
- gint height = MAX (1, allocation->height);
-
- /* TODO: This is purely based on the minimum baseline, when things fit we should
- * use the natural one?
- */
- switch (priv->baseline_pos)
- {
- case GTK_BASELINE_POSITION_TOP:
- baseline = minimum_above;
- break;
- case GTK_BASELINE_POSITION_CENTER:
- baseline = minimum_above + (height - (minimum_above + minimum_below)) / 2;
- break;
- case GTK_BASELINE_POSITION_BOTTOM:
- baseline = height - minimum_below;
- break;
- }
- }
-
- /* Allocate child positions. */
- for (packing = GTK_PACK_START; packing <= GTK_PACK_END; ++packing)
- {
- if (priv->orientation == GTK_ORIENTATION_HORIZONTAL)
- {
- child_allocation.y = allocation->y;
- child_allocation.height = MAX (1, allocation->height);
- if ((packing == GTK_PACK_START && direction == GTK_TEXT_DIR_LTR) ||
- (packing == GTK_PACK_END && direction == GTK_TEXT_DIR_RTL))
- x = allocation->x;
- else
- x = allocation->x + allocation->width;
- }
- else
- {
- child_allocation.x = allocation->x;
- child_allocation.width = MAX (1, allocation->width);
- if (packing == GTK_PACK_START)
- y = allocation->y;
- else
- y = allocation->y + allocation->height;
- }
-
- for (i = 0, children = priv->children; children; children = children->next)
- {
- child = children->data;
-
- /* If widget is not visible, skip it. */
- if (!_gtk_widget_get_visible (child->widget))
- continue;
-
- /* Skip the center widget */
- if (child == priv->center)
- continue;
-
- /* If widget is packed differently, skip it. */
- if (child->pack != packing)
- continue;
-
- child_size = sizes[packing][i].natural_size;
-
- /* Assign the child's position. */
- if (priv->orientation == GTK_ORIENTATION_HORIZONTAL)
- {
- child_allocation.width = MAX (1, child_size);
- child_allocation.x = x;
-
- if ((packing == GTK_PACK_START && direction == GTK_TEXT_DIR_LTR) ||
- (packing == GTK_PACK_END && direction == GTK_TEXT_DIR_RTL))
- {
- x += child_size + spacing;
- }
- else
- {
- x -= child_size + spacing;
- child_allocation.x -= child_size;
- }
- }
- else /* (private->orientation == GTK_ORIENTATION_VERTICAL) */
- {
- child_allocation.height = MAX (1, child_size);
- child_allocation.y = y;
-
- if (packing == GTK_PACK_START)
- {
- y += child_size + spacing;
- }
- else
- {
- y -= child_size + spacing;
- child_allocation.y -= child_size;
- }
- }
- gtk_widget_size_allocate_with_baseline (child->widget, &child_allocation, baseline);
-
- i++;
- }
-
- if (priv->orientation == GTK_ORIENTATION_HORIZONTAL)
- side[packing] = x;
- else
- side[packing] = y;
- }
-
- /* Allocate the center widget */
- if (priv->orientation == GTK_ORIENTATION_HORIZONTAL)
- center_pos = allocation->x + (box_size - center_size) / 2;
- else
- center_pos = allocation->y + (box_size - center_size) / 2;
-
- if (priv->orientation == GTK_ORIENTATION_HORIZONTAL &&
- direction == GTK_TEXT_DIR_RTL)
- packing = GTK_PACK_END;
- else
- packing = GTK_PACK_START;
-
- if (center_pos < side[packing])
- center_pos = side[packing];
- else if (center_pos + center_size > side[1 - packing])
- center_pos = side[1 - packing] - center_size;
-
- if (priv->orientation == GTK_ORIENTATION_HORIZONTAL)
- {
- child_allocation.x = center_pos;
- child_allocation.width = center_size;
- }
- else
- {
- child_allocation.y = center_pos;
- child_allocation.height = center_size;
- }
- gtk_widget_size_allocate_with_baseline (priv->center->widget, &child_allocation, baseline);
-
- _gtk_widget_set_simple_clip (widget, NULL);
-}
-
-static void
gtk_box_allocate_contents (GtkCssGadget *gadget,
const GtkAllocation *allocation,
int baseline,
@@ -1083,11 +725,7 @@ gtk_box_allocate_contents (GtkCssGadget *gadget,
GtkWidget *widget = gtk_css_gadget_get_owner (gadget);
GtkBox *box = GTK_BOX (widget);
- if (box->priv->center &&
- _gtk_widget_get_visible (box->priv->center->widget))
- gtk_box_size_allocate_with_center (widget, allocation);
- else
- gtk_box_size_allocate_no_center (widget, allocation);
+ gtk_box_size_allocate_no_center (widget, allocation);
gtk_container_get_children_clip (GTK_CONTAINER (box), out_clip);
}
@@ -1287,26 +925,6 @@ gtk_box_get_path_for_child (GtkContainer *container,
}
static void
-gtk_box_buildable_add_child (GtkBuildable *buildable,
- GtkBuilder *builder,
- GObject *child,
- const gchar *type)
-{
- if (type && strcmp (type, "center") == 0)
- gtk_box_set_center_widget (GTK_BOX (buildable), GTK_WIDGET (child));
- else if (!type)
- gtk_container_add (GTK_CONTAINER (buildable), GTK_WIDGET (child));
- else
- GTK_BUILDER_WARN_INVALID_CHILD_TYPE (GTK_BOX (buildable), type);
-}
-
-static void
-gtk_box_buildable_init (GtkBuildableIface *iface)
-{
- iface->add_child = gtk_box_buildable_add_child;
-}
-
-static void
gtk_box_update_child_css_position (GtkBox *box,
GtkBoxChild *child_info)
{
@@ -1399,7 +1017,6 @@ gtk_box_get_size (GtkWidget *widget,
gint minimum_below, natural_below;
gboolean have_baseline;
gint min_baseline, nat_baseline;
- gint center_min, center_nat;
box = GTK_BOX (widget);
private = box->priv;
@@ -1412,8 +1029,6 @@ gtk_box_get_size (GtkWidget *widget,
nvis_children = 0;
- center_min = center_nat = 0;
-
for (children = private->children; children; children = children->next)
{
GtkBoxChild *child = children->data;
@@ -1433,21 +1048,13 @@ gtk_box_get_size (GtkWidget *widget,
{
if (private->homogeneous)
{
- if (child == private->center)
- {
- center_min = child_minimum;
- center_nat = child_natural;
- }
- else
- {
- gint largest;
-
- largest = child_minimum;
- minimum = MAX (minimum, largest);
-
- largest = child_natural;
- natural = MAX (natural, largest);
- }
+ int largest;
+
+ largest = child_minimum;
+ minimum = MAX (minimum, largest);
+
+ largest = child_natural;
+ natural = MAX (natural, largest);
}
else
{
@@ -1483,16 +1090,8 @@ gtk_box_get_size (GtkWidget *widget,
if (private->homogeneous)
{
- if (center_min > 0)
- {
- minimum = minimum * (nvis_children - 1) + center_min;
- natural = natural * (nvis_children - 1) + center_nat;
- }
- else
- {
- minimum *= nvis_children;
- natural *= nvis_children;
- }
+ minimum *= nvis_children;
+ natural *= nvis_children;
}
minimum += (nvis_children - 1) * spacing;
natural += (nvis_children - 1) * spacing;
@@ -2269,9 +1868,6 @@ gtk_box_remove (GtkContainer *container,
{
gboolean was_visible;
- if (priv->center == child)
- priv->center = NULL;
-
was_visible = _gtk_widget_get_visible (widget);
gtk_widget_unparent (widget);
@@ -2310,15 +1906,10 @@ gtk_box_forall (GtkContainer *container,
child = children->data;
children = children->next;
- if (child == priv->center)
- continue;
-
if (child->pack == GTK_PACK_START)
(* callback) (child->widget, callback_data);
}
- if (priv->center)
- (* callback) (priv->center->widget, callback_data);
children = g_list_last (priv->children);
while (children)
@@ -2326,9 +1917,6 @@ gtk_box_forall (GtkContainer *container,
child = children->data;
children = children->prev;
- if (child == priv->center)
- continue;
-
if (child->pack == GTK_PACK_END)
(* callback) (child->widget, callback_data);
}
@@ -2357,62 +1945,3 @@ _gtk_box_get_children (GtkBox *box)
return g_list_reverse (retval);
}
-
-/**
- * gtk_box_set_center_widget:
- * @box: a #GtkBox
- * @widget: (allow-none): the widget to center
- *
- * Sets a center widget; that is a child widget that will be
- * centered with respect to the full width of the box, even
- * if the children at either side take up different amounts
- * of space.
- *
- * Since: 3.12
- */
-void
-gtk_box_set_center_widget (GtkBox *box,
- GtkWidget *widget)
-{
- GtkBoxPrivate *priv = box->priv;
- GtkWidget *old_center = NULL;
-
- g_return_if_fail (GTK_IS_BOX (box));
-
- if (priv->center)
- {
- old_center = g_object_ref (priv->center->widget);
- gtk_box_remove (GTK_CONTAINER (box), priv->center->widget);
- priv->center = NULL;
- }
-
- if (widget)
- priv->center = gtk_box_pack (box, widget, GTK_PACK_START);
-
- if (old_center)
- g_object_unref (old_center);
-}
-
-/**
- * gtk_box_get_center_widget:
- * @box: a #GtkBox
- *
- * Retrieves the center widget of the box.
- *
- * Returns: (transfer none) (nullable): the center widget
- * or %NULL in case no center widget is set.
- *
- * Since: 3.12
- */
-GtkWidget *
-gtk_box_get_center_widget (GtkBox *box)
-{
- GtkBoxPrivate *priv = box->priv;
-
- g_return_val_if_fail (GTK_IS_BOX (box), NULL);
-
- if (priv->center)
- return priv->center->widget;
-
- return NULL;
-}
diff --git a/gtk/gtkbox.h b/gtk/gtkbox.h
index 79abe10..ad7ef3a 100644
--- a/gtk/gtkbox.h
+++ b/gtk/gtkbox.h
@@ -117,12 +117,6 @@ void gtk_box_set_child_packing (GtkBox *box,
GtkWidget *child,
GtkPackType pack_type);
-GDK_AVAILABLE_IN_3_12
-void gtk_box_set_center_widget (GtkBox *box,
- GtkWidget *widget);
-GDK_AVAILABLE_IN_3_12
-GtkWidget *gtk_box_get_center_widget (GtkBox *box);
-
G_END_DECLS
#endif /* __GTK_BOX_H__ */
diff --git a/gtk/inspector/data-list.ui b/gtk/inspector/data-list.ui
index 889b50c..3acd716 100644
--- a/gtk/inspector/data-list.ui
+++ b/gtk/inspector/data-list.ui
@@ -20,9 +20,11 @@
<property name="pack-type">start</property>
</packing>
</child>
- <child type="center">
+ <child>
<object class="GtkLabel" id="object_title">
<property name="visible">True</property>
+ <property name="hexpand">1</property>
+ <property name="halign">center</property>
</object>
</child>
</object>
diff --git a/gtk/inspector/recorder.ui b/gtk/inspector/recorder.ui
index 6ee0933..b3d1863 100644
--- a/gtk/inspector/recorder.ui
+++ b/gtk/inspector/recorder.ui
@@ -27,10 +27,12 @@
<signal name="clicked" handler="recordings_clear_all"/>
</object>
</child>
- <child type="center">
+ <child>
<object class="GtkStackSwitcher">
<property name="visible">1</property>
<property name="stack">render_stack</property>
+ <property name="hexpand">1</property>
+ <property name="halign">center</property>
</object>
</child>
<child>
diff --git a/gtk/inspector/window.ui b/gtk/inspector/window.ui
index 6bac8da..992b454 100644
--- a/gtk/inspector/window.ui
+++ b/gtk/inspector/window.ui
@@ -256,10 +256,12 @@
</child>
</object>
</child>
- <child type="center">
+ <child>
<object class="GtkStack" id="object_center_stack">
<property name="visible">1</property>
<property name="transition-type">crossfade</property>
+ <property name="hexpand">1</property>
+ <property name="halign">center</property>
<child>
<object class="GtkLabel" id="object_title">
<property name="visible">1</property>
diff --git a/gtk/ui/gtkfilechooserwidget.ui b/gtk/ui/gtkfilechooserwidget.ui
index 3eb3425..eb021be 100644
--- a/gtk/ui/gtkfilechooserwidget.ui
+++ b/gtk/ui/gtkfilechooserwidget.ui
@@ -88,9 +88,11 @@
<object class="GtkBox" id="search_entry_box">
<property name="spacing">6</property>
<property name="margin">6</property>
- <child type="center">
+ <child>
<object class="GtkSearchEntry" id="search_entry">
<property name="width-chars">45</property>
+ <property name="hexpand">1</property>
+ <property name="halign">center</property>
<signal name="search-changed" handler="search_entry_activate_cb"
swapped="yes"/>
<signal name="stop-search" handler="search_entry_stop_cb"
swapped="yes"/>
</object>
diff --git a/tests/testbox.c b/tests/testbox.c
index cd958e8..cb616f9 100644
--- a/tests/testbox.c
+++ b/tests/testbox.c
@@ -96,7 +96,6 @@ main (int argc, char *argv[])
gtk_box_pack_end (GTK_BOX (box), test_widget ("5"));
gtk_box_pack_end (GTK_BOX (box), test_widget ("6"));
- gtk_box_set_center_widget (GTK_BOX (box), test_widget ("center"));
gtk_container_add (GTK_CONTAINER (vbox), box);
check = gtk_check_button_new_with_label ("Homogeneous");
diff --git a/testsuite/css/nodes/box-packing.ltr.nodes b/testsuite/css/nodes/box-packing.ltr.nodes
index c74ab30..bf424bd 100644
--- a/testsuite/css/nodes/box-packing.ltr.nodes
+++ b/testsuite/css/nodes/box-packing.ltr.nodes
@@ -2,5 +2,4 @@
decoration:dir(ltr)
box.horizontal:dir(ltr)
label#start:dir(ltr)
- label#center:dir(ltr)
label#end:dir(ltr)
diff --git a/testsuite/css/nodes/box-packing.ltr.ui b/testsuite/css/nodes/box-packing.ltr.ui
index 75651a5..b2222c7 100644
--- a/testsuite/css/nodes/box-packing.ltr.ui
+++ b/testsuite/css/nodes/box-packing.ltr.ui
@@ -26,12 +26,6 @@
<property name="pack-type">start</property>
</packing>
</child>
- <child type="center">
- <object class="GtkLabel">
- <property name="visible">True</property>
- <property name="name">center</property>
- </object>
- </child>
</object>
</child>
</object>
diff --git a/testsuite/css/nodes/box-packing.rtl.nodes b/testsuite/css/nodes/box-packing.rtl.nodes
index 6d05fbd..899e36b 100644
--- a/testsuite/css/nodes/box-packing.rtl.nodes
+++ b/testsuite/css/nodes/box-packing.rtl.nodes
@@ -2,5 +2,4 @@
decoration:dir(rtl)
box.horizontal:dir(rtl)
label#end:dir(rtl)
- label#center:dir(rtl)
label#start:dir(rtl)
diff --git a/testsuite/css/nodes/box-packing.rtl.ui b/testsuite/css/nodes/box-packing.rtl.ui
index 75651a5..b2222c7 100644
--- a/testsuite/css/nodes/box-packing.rtl.ui
+++ b/testsuite/css/nodes/box-packing.rtl.ui
@@ -26,12 +26,6 @@
<property name="pack-type">start</property>
</packing>
</child>
- <child type="center">
- <object class="GtkLabel">
- <property name="visible">True</property>
- <property name="name">center</property>
- </object>
- </child>
</object>
</child>
</object>
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]