X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=src%2Fui%2Fgui%2Fpsppire-hbuttonbox.c;h=d200b9d0879fcec5d41932c8d972d4e56e83235c;hb=91d8133700fae5cd89c1fb86dde1f097e1a18055;hp=2d036a415630df7621df1afd9df9de4a0a14117c;hpb=fe8dc2171009e90d2335f159d05f7e6660e24780;p=pspp diff --git a/src/ui/gui/psppire-hbuttonbox.c b/src/ui/gui/psppire-hbuttonbox.c index 2d036a4156..d200b9d087 100644 --- a/src/ui/gui/psppire-hbuttonbox.c +++ b/src/ui/gui/psppire-hbuttonbox.c @@ -114,9 +114,9 @@ gtk_hbutton_box_size_request (GtkWidget *widget, box = GTK_BOX (widget); bbox = GTK_BUTTON_BOX (widget); - spacing = box->spacing; - layout = bbox->layout_style != GTK_BUTTONBOX_DEFAULT_STYLE - ? bbox->layout_style : default_layout_style; + spacing = gtk_box_get_spacing (box); + layout = gtk_button_box_get_layout (bbox) != GTK_BUTTONBOX_DEFAULT_STYLE + ? gtk_button_box_get_layout (bbox) : default_layout_style; _psppire_button_box_child_requisition (widget, &nvis_children, @@ -150,8 +150,8 @@ gtk_hbutton_box_size_request (GtkWidget *widget, requisition->height = child_height; } - requisition->width += GTK_CONTAINER (box)->border_width * 2; - requisition->height += GTK_CONTAINER (box)->border_width * 2; + requisition->width += gtk_container_get_border_width (GTK_CONTAINER (box)) * 2; + requisition->height += gtk_container_get_border_width (GTK_CONTAINER (box)) * 2; } @@ -162,7 +162,6 @@ gtk_hbutton_box_size_allocate (GtkWidget *widget, { GtkBox *base_box; GtkButtonBox *box; - GtkBoxChild *child; GList *children; GtkAllocation child_allocation; gint nvis_children; @@ -180,28 +179,28 @@ gtk_hbutton_box_size_allocate (GtkWidget *widget, base_box = GTK_BOX (widget); box = GTK_BUTTON_BOX (widget); - spacing = base_box->spacing; - layout = box->layout_style != GTK_BUTTONBOX_DEFAULT_STYLE - ? box->layout_style : default_layout_style; + spacing = gtk_box_get_spacing (base_box); + layout = gtk_button_box_get_layout (box) != GTK_BUTTONBOX_DEFAULT_STYLE + ? gtk_button_box_get_layout (box) : default_layout_style; _psppire_button_box_child_requisition (widget, &nvis_children, &n_secondaries, &child_width, &child_height); - widget->allocation = *allocation; - width = allocation->width - GTK_CONTAINER (box)->border_width*2; + gtk_widget_set_allocation (widget, allocation); + width = allocation->width - gtk_container_get_border_width (GTK_CONTAINER (box))*2; switch (layout) { case GTK_BUTTONBOX_SPREAD: childspacing = (width - (nvis_children * child_width)) / (nvis_children + 1); - x = allocation->x + GTK_CONTAINER (box)->border_width + childspacing; + x = allocation->x + gtk_container_get_border_width (GTK_CONTAINER (box)) + childspacing; secondary_x = x + ((nvis_children - n_secondaries) * (child_width + childspacing)); break; case GTK_BUTTONBOX_EDGE: if (nvis_children >= 2) { childspacing = (width - (nvis_children * child_width)) / (nvis_children - 1); - x = allocation->x + GTK_CONTAINER (box)->border_width; + x = allocation->x + gtk_container_get_border_width (GTK_CONTAINER (box)); secondary_x = x + ((nvis_children - n_secondaries) * (child_width + childspacing)); } else @@ -213,19 +212,19 @@ gtk_hbutton_box_size_allocate (GtkWidget *widget, break; case GTK_BUTTONBOX_START: childspacing = spacing; - x = allocation->x + GTK_CONTAINER (box)->border_width; + x = allocation->x + gtk_container_get_border_width (GTK_CONTAINER (box)); secondary_x = allocation->x + allocation->width - child_width * n_secondaries - spacing * (n_secondaries - 1) - - GTK_CONTAINER (box)->border_width; + - gtk_container_get_border_width (GTK_CONTAINER (box)); break; case GTK_BUTTONBOX_END: childspacing = spacing; x = allocation->x + allocation->width - child_width * (nvis_children - n_secondaries) - spacing * (nvis_children - n_secondaries - 1) - - GTK_CONTAINER (box)->border_width; - secondary_x = allocation->x + GTK_CONTAINER (box)->border_width; + - gtk_container_get_border_width (GTK_CONTAINER (box)); + secondary_x = allocation->x + gtk_container_get_border_width (GTK_CONTAINER (box)); break; default: g_assert_not_reached(); @@ -236,25 +235,29 @@ gtk_hbutton_box_size_allocate (GtkWidget *widget, y = allocation->y + (allocation->height - child_height) / 2; childspace = child_width + childspacing; - children = GTK_BOX (box)->children; + children = gtk_container_get_children (GTK_CONTAINER (box)); while (children) { - child = children->data; + GtkWidget *child = children->data; children = children->next; - if (gtk_widget_get_visible (child->widget)) + if (gtk_widget_get_visible (child)) { + gboolean is_secondary = FALSE; + gtk_container_child_get (GTK_CONTAINER (box), child, "secondary", &is_secondary, NULL); + + child_allocation.width = child_width; child_allocation.height = child_height; child_allocation.y = y; - if (child->is_secondary) - { + if (is_secondary) + { child_allocation.x = secondary_x; secondary_x += childspace; } - else + else { child_allocation.x = x; x += childspace; @@ -263,7 +266,7 @@ gtk_hbutton_box_size_allocate (GtkWidget *widget, if (gtk_widget_get_direction (widget) == GTK_TEXT_DIR_RTL) child_allocation.x = (allocation->x + allocation->width) - (child_allocation.x + child_width - allocation->x); - gtk_widget_size_allocate (child->widget, &child_allocation); + gtk_widget_size_allocate (child, &child_allocation); } } }