widget: Make width, height and transform be widget-relative

Previously, those numbers stored the values relative to the margin box
of the widget. Now they store values relative to the content box,
thereby getting rid of the last remains of weird coordinate systems.
This commit is contained in:
Benjamin Otte 2019-02-15 03:49:05 +01:00
parent 19ffb40b27
commit 285aba6ece
5 changed files with 60 additions and 126 deletions

View File

@ -961,7 +961,7 @@ gtk_entry_accessible_get_character_extents (AtkText *text,
pango_layout_index_to_pos (gtk_entry_get_layout (entry), index, &char_rect); pango_layout_index_to_pos (gtk_entry_get_layout (entry), index, &char_rect);
pango_extents_to_pixels (&char_rect, NULL); pango_extents_to_pixels (&char_rect, NULL);
_gtk_widget_get_allocation (widget, &allocation); gtk_widget_get_allocation (widget, &allocation);
surface = gtk_widget_get_surface (widget); surface = gtk_widget_get_surface (widget);
gdk_surface_get_origin (surface, &x_surface, &y_surface); gdk_surface_get_origin (surface, &x_surface, &y_surface);

View File

@ -31,11 +31,13 @@ static inline void
gtk_css_boxes_init (GtkCssBoxes *boxes, gtk_css_boxes_init (GtkCssBoxes *boxes,
GtkWidget *widget) GtkWidget *widget)
{ {
GtkWidgetPrivate *priv = widget->priv;
gtk_css_boxes_init_content_box (boxes, gtk_css_boxes_init_content_box (boxes,
gtk_css_node_get_style (widget->priv->cssnode), gtk_css_node_get_style (priv->cssnode),
0, 0, 0, 0,
gtk_widget_get_width (widget), priv->width,
gtk_widget_get_height (widget)); priv->height);
} }
static inline void static inline void

View File

@ -34,6 +34,7 @@
#include "gtkbuildable.h" #include "gtkbuildable.h"
#include "gtkbuilderprivate.h" #include "gtkbuilderprivate.h"
#include "gtkcontainerprivate.h" #include "gtkcontainerprivate.h"
#include "gtkcssboxesprivate.h"
#include "gtkcssfiltervalueprivate.h" #include "gtkcssfiltervalueprivate.h"
#include "gtkcssfontvariationsvalueprivate.h" #include "gtkcssfontvariationsvalueprivate.h"
#include "gtkcssnumbervalueprivate.h" #include "gtkcssnumbervalueprivate.h"
@ -4313,13 +4314,6 @@ gtk_widget_size_allocate (GtkWidget *widget,
real_allocation.height = MAX (1, real_allocation.height); real_allocation.height = MAX (1, real_allocation.height);
} }
/* Set the widget allocation to real_allocation now, pass the smaller allocation to the vfunc */
priv->transform.x = real_allocation.x;
priv->transform.y = real_allocation.y;
priv->width = real_allocation.width;
priv->height = real_allocation.height;
priv->baseline = baseline;
if (!alloc_needed && !size_changed && !baseline_changed) if (!alloc_needed && !size_changed && !baseline_changed)
{ {
/* Still have to move the window... */ /* Still have to move the window... */
@ -4342,6 +4336,9 @@ gtk_widget_size_allocate (GtkWidget *widget,
get_box_border (style, &border); get_box_border (style, &border);
get_box_padding (style, &padding); get_box_padding (style, &padding);
priv->transform.x = real_allocation.x + margin.left + border.left + padding.left;
priv->transform.y = real_allocation.y + margin.top + border.top + padding.top;
/* Since gtk_widget_measure does it for us, we can be sure here that /* Since gtk_widget_measure does it for us, we can be sure here that
* the given alloaction is large enough for the css margin/bordder/padding */ * the given alloaction is large enough for the css margin/bordder/padding */
real_allocation.x = 0; real_allocation.x = 0;
@ -4354,6 +4351,10 @@ gtk_widget_size_allocate (GtkWidget *widget,
if (baseline >= 0) if (baseline >= 0)
baseline -= margin.top + border.top + padding.top; baseline -= margin.top + border.top + padding.top;
priv->width = real_allocation.width;
priv->height = real_allocation.height;
priv->baseline = baseline;
if (g_signal_has_handler_pending (widget, widget_signals[SIZE_ALLOCATE], 0, FALSE)) if (g_signal_has_handler_pending (widget, widget_signals[SIZE_ALLOCATE], 0, FALSE))
g_signal_emit (widget, widget_signals[SIZE_ALLOCATE], 0, g_signal_emit (widget, widget_signals[SIZE_ALLOCATE], 0,
real_allocation.width, real_allocation.width,
@ -4457,23 +4458,8 @@ gtk_widget_get_origin_relative_to_parent (GtkWidget *widget,
int *origin_x, int *origin_x,
int *origin_y) int *origin_y)
{ {
GtkWidgetPrivate *priv = gtk_widget_get_instance_private (widget); *origin_x = widget->priv->transform.x;
GtkBorder margin, border, padding; *origin_y = widget->priv->transform.y;
GtkCssStyle *style;
style = gtk_css_node_get_style (priv->cssnode);
get_box_margin (style, &margin);
get_box_border (style, &border);
get_box_padding (style, &padding);
/* allocation is relative to the parent's origin */
*origin_x = priv->transform.x;
*origin_y = priv->transform.y;
/* ... but points to the upper left, excluding widget margins
* but including all the css properties */
*origin_x += margin.left + border.left + padding.left;
*origin_y += margin.top + border.top + padding.top;
} }
/** /**
@ -11207,14 +11193,19 @@ gtk_widget_get_allocation (GtkWidget *widget,
GtkAllocation *allocation) GtkAllocation *allocation)
{ {
GtkWidgetPrivate *priv = gtk_widget_get_instance_private (widget); GtkWidgetPrivate *priv = gtk_widget_get_instance_private (widget);
const graphene_rect_t *margin_rect;
GtkCssBoxes boxes;
g_return_if_fail (GTK_IS_WIDGET (widget)); g_return_if_fail (GTK_IS_WIDGET (widget));
g_return_if_fail (allocation != NULL); g_return_if_fail (allocation != NULL);
allocation->x = priv->transform.x; gtk_css_boxes_init (&boxes, widget);
allocation->y = priv->transform.y; margin_rect = gtk_css_boxes_get_margin_rect (&boxes);
allocation->width = priv->width;
allocation->height = priv->height; allocation->x = priv->transform.x + ceil (margin_rect->origin.x);
allocation->y = priv->transform.y + ceil (margin_rect->origin.y);
allocation->width = ceil (margin_rect->size.width);
allocation->height = ceil (margin_rect->size.height);
} }
/** /**
@ -11296,18 +11287,12 @@ gtk_widget_pick (GtkWidget *widget,
case GTK_OVERFLOW_HIDDEN: case GTK_OVERFLOW_HIDDEN:
{ {
GtkBorder margin, border, padding; GtkCssBoxes boxes;
GtkCssStyle *style;
style = gtk_css_node_get_style (priv->cssnode); gtk_css_boxes_init (&boxes, widget);
get_box_margin (style, &margin);
get_box_border (style, &border);
get_box_padding (style, &padding);
if (x < -padding.left || if (!graphene_rect_contains_point (gtk_css_boxes_get_padding_rect (&boxes),
y < -padding.top || &GRAPHENE_POINT_INIT (x, y)))
x >= priv->width - margin.left - margin.right - border.left - border.right - padding.left ||
y >= priv->height - margin.top - margin.bottom - border.top - border.bottom - padding.top)
return NULL; return NULL;
} }
break; break;
@ -11339,39 +11324,26 @@ gtk_widget_compute_bounds (GtkWidget *widget,
GtkWidget *target, GtkWidget *target,
graphene_rect_t *out_bounds) graphene_rect_t *out_bounds)
{ {
GtkWidgetPrivate *priv = gtk_widget_get_instance_private (widget); GtkCssBoxes boxes;
GtkBorder margin, border, padding; int x, y;
GtkCssStyle *style;
GtkAllocation alloc;
g_return_val_if_fail (GTK_IS_WIDGET (widget), FALSE); g_return_val_if_fail (GTK_IS_WIDGET (widget), FALSE);
g_return_val_if_fail (GTK_IS_WIDGET (target), FALSE); g_return_val_if_fail (GTK_IS_WIDGET (target), FALSE);
g_return_val_if_fail (out_bounds != NULL, FALSE); g_return_val_if_fail (out_bounds != NULL, FALSE);
style = gtk_css_node_get_style (priv->cssnode);
get_box_margin (style, &margin);
get_box_border (style, &border);
get_box_padding (style, &padding);
alloc.x = - (padding.left + border.left);
alloc.y = - (padding.top + border.top);
alloc.width = priv->width - margin.left - margin.right;
alloc.height = priv->height - margin.top - margin.bottom;
if (!gtk_widget_translate_coordinates (widget, if (!gtk_widget_translate_coordinates (widget,
target, target,
alloc.x, alloc.y, 0, 0,
&alloc.x, &alloc.y)) &x, &y))
{ {
graphene_rect_init_from_rect (out_bounds, graphene_rect_zero ()); graphene_rect_init_from_rect (out_bounds, graphene_rect_zero ());
return FALSE; return FALSE;
} }
graphene_rect_init (out_bounds, gtk_css_boxes_init (&boxes, widget);
alloc.x, graphene_rect_offset_r (gtk_css_boxes_get_border_rect (&boxes),
alloc.y, x, y,
alloc.width, out_bounds);
alloc.height);
return TRUE; return TRUE;
} }
@ -11387,11 +11359,13 @@ gtk_widget_compute_bounds (GtkWidget *widget,
int int
gtk_widget_get_allocated_width (GtkWidget *widget) gtk_widget_get_allocated_width (GtkWidget *widget)
{ {
GtkWidgetPrivate *priv = gtk_widget_get_instance_private (widget); GtkCssBoxes boxes;
g_return_val_if_fail (GTK_IS_WIDGET (widget), 0); g_return_val_if_fail (GTK_IS_WIDGET (widget), 0);
return priv->width; gtk_css_boxes_init (&boxes, widget);
return gtk_css_boxes_get_margin_rect (&boxes)->size.width;
} }
/** /**
@ -11405,11 +11379,13 @@ gtk_widget_get_allocated_width (GtkWidget *widget)
int int
gtk_widget_get_allocated_height (GtkWidget *widget) gtk_widget_get_allocated_height (GtkWidget *widget)
{ {
GtkWidgetPrivate *priv = gtk_widget_get_instance_private (widget); GtkCssBoxes boxes;
g_return_val_if_fail (GTK_IS_WIDGET (widget), 0); g_return_val_if_fail (GTK_IS_WIDGET (widget), 0);
return priv->height; gtk_css_boxes_init (&boxes, widget);
return gtk_css_boxes_get_margin_rect (&boxes)->size.height;
} }
/** /**
@ -13028,35 +13004,23 @@ gtk_widget_reset_controllers (GtkWidget *widget)
} }
static inline void static inline void
gtk_widget_maybe_add_debug_render_nodes (GtkWidget *widget, gtk_widget_maybe_add_debug_render_nodes (GtkWidget *widget,
GtkSnapshot *snapshot) GtkSnapshot *snapshot)
{ {
GtkWidgetPrivate *priv = gtk_widget_get_instance_private (widget); GtkWidgetPrivate *priv = gtk_widget_get_instance_private (widget);
GdkDisplay *display = _gtk_widget_get_display (widget); GdkDisplay *display = _gtk_widget_get_display (widget);
GtkCssStyle *style;
GtkBorder margin, border, padding;
/* We should be offset to priv->allocation at this point */
if (GTK_DISPLAY_DEBUG_CHECK (display, BASELINES)) if (GTK_DISPLAY_DEBUG_CHECK (display, BASELINES))
{ {
int baseline = gtk_widget_get_allocated_baseline (widget); if (priv->baseline != -1)
if (baseline != -1)
{ {
GdkRGBA red = {1, 0, 0, 1}; GdkRGBA red = {1, 0, 0, 1};
graphene_rect_t bounds; graphene_rect_t bounds;
style = gtk_css_node_get_style (priv->cssnode);
get_box_margin (style, &margin);
get_box_border (style, &border);
get_box_padding (style, &padding);
/* Baselines are relative to the widget's origin, /* Baselines are relative to the widget's origin,
* and we are offset to the widget's allocation here */ * and we are offset to the widget's allocation here */
graphene_rect_init (&bounds, graphene_rect_init (&bounds,
0, 0, priv->baseline,
margin.top + border.top + padding.top + baseline,
priv->width, 1); priv->width, 1);
gtk_snapshot_append_color (snapshot, gtk_snapshot_append_color (snapshot,
&red, &red,
@ -13102,7 +13066,7 @@ gtk_widget_create_render_node (GtkWidget *widget,
snapshot = gtk_snapshot_new_with_parent (parent_snapshot); snapshot = gtk_snapshot_new_with_parent (parent_snapshot);
_gtk_widget_get_allocation (widget, &allocation); gtk_widget_get_allocation (widget, &allocation);
gtk_snapshot_push_debug (snapshot, gtk_snapshot_push_debug (snapshot,
"RenderNode for %s %p @ %d x %d", "RenderNode for %s %p @ %d x %d",
G_OBJECT_TYPE_NAME (widget), widget, G_OBJECT_TYPE_NAME (widget), widget,
@ -13741,20 +13705,10 @@ int
gtk_widget_get_width (GtkWidget *widget) gtk_widget_get_width (GtkWidget *widget)
{ {
GtkWidgetPrivate *priv = gtk_widget_get_instance_private (widget); GtkWidgetPrivate *priv = gtk_widget_get_instance_private (widget);
GtkBorder margin, border, padding;
GtkCssStyle *style;
g_return_val_if_fail (GTK_IS_WIDGET (widget), 0); g_return_val_if_fail (GTK_IS_WIDGET (widget), 0);
style = gtk_css_node_get_style (priv->cssnode); return priv->width;
get_box_margin (style, &margin);
get_box_border (style, &border);
get_box_padding (style, &padding);
return priv->width -
margin.left - margin.right -
border.left - border.right -
padding.left - padding.right;
} }
/** /**
@ -13771,18 +13725,8 @@ int
gtk_widget_get_height (GtkWidget *widget) gtk_widget_get_height (GtkWidget *widget)
{ {
GtkWidgetPrivate *priv = gtk_widget_get_instance_private (widget); GtkWidgetPrivate *priv = gtk_widget_get_instance_private (widget);
GtkBorder margin, border, padding;
GtkCssStyle *style;
g_return_val_if_fail (GTK_IS_WIDGET (widget), 0); g_return_val_if_fail (GTK_IS_WIDGET (widget), 0);
style = gtk_css_node_get_style (priv->cssnode); return priv->height;
get_box_margin (style, &margin);
get_box_border (style, &border);
get_box_padding (style, &padding);
return priv->height -
margin.top - margin.bottom -
border.top - border.bottom -
padding.top - padding.bottom;
} }

View File

@ -460,18 +460,6 @@ _gtk_widget_get_surface (GtkWidget *widget)
return widget->priv->surface; return widget->priv->surface;
} }
static inline void
_gtk_widget_get_allocation (GtkWidget *widget,
GtkAllocation *allocation)
{
GtkWidgetPrivate *priv = widget->priv;
allocation->x = priv->transform.x;
allocation->y = priv->transform.y;
allocation->width = priv->width;
allocation->height = priv->height;
}
static inline GtkWidget * static inline GtkWidget *
_gtk_widget_get_prev_sibling (GtkWidget *widget) _gtk_widget_get_prev_sibling (GtkWidget *widget)
{ {

View File

@ -1728,7 +1728,7 @@ edge_under_coordinates (GtkWindow *window,
(priv->edge_constraints & constraints) != constraints) (priv->edge_constraints & constraints) != constraints)
return FALSE; return FALSE;
_gtk_widget_get_allocation (GTK_WIDGET (window), &allocation); gtk_widget_get_allocation (GTK_WIDGET (window), &allocation);
context = _gtk_widget_get_style_context (GTK_WIDGET (window)); context = _gtk_widget_get_style_context (GTK_WIDGET (window));
gtk_style_context_save_to_node (context, priv->decoration_node); gtk_style_context_save_to_node (context, priv->decoration_node);
@ -5271,7 +5271,7 @@ gtk_window_move (GtkWindow *window,
{ {
GtkAllocation allocation; GtkAllocation allocation;
_gtk_widget_get_allocation (widget, &allocation); gtk_widget_get_allocation (widget, &allocation);
/* we have now sent a request with this position /* we have now sent a request with this position
* with currently-active constraints, so toggle flag. * with currently-active constraints, so toggle flag.
@ -6063,7 +6063,7 @@ popover_get_rect (GtkWindowPopover *popover,
gdouble min, max; gdouble min, max;
gtk_widget_get_preferred_size (popover->widget, NULL, &req); gtk_widget_get_preferred_size (popover->widget, NULL, &req);
_gtk_widget_get_allocation (GTK_WIDGET (window), &win_alloc); gtk_widget_get_allocation (GTK_WIDGET (window), &win_alloc);
get_shadow_width (window, &win_border); get_shadow_width (window, &win_border);
win_alloc.x += win_border.left; win_alloc.x += win_border.left;
@ -6449,7 +6449,7 @@ gtk_window_realize (GtkWidget *widget)
g_return_if_fail (!_gtk_widget_get_realized (widget)); g_return_if_fail (!_gtk_widget_get_realized (widget));
} }
_gtk_widget_get_allocation (widget, &allocation); gtk_widget_get_allocation (widget, &allocation);
if (priv->hardcoded_surface) if (priv->hardcoded_surface)
{ {
@ -6827,7 +6827,7 @@ gtk_window_configure (GtkWindow *window,
* have been a queued resize from child widgets, and so we * have been a queued resize from child widgets, and so we
* need to reallocate our children in case *they* changed. * need to reallocate our children in case *they* changed.
*/ */
_gtk_widget_get_allocation (widget, &allocation); gtk_widget_get_allocation (widget, &allocation);
if (priv->configure_request_count == 0 && if (priv->configure_request_count == 0 &&
(allocation.width == width && allocation.height == height)) (allocation.width == width && allocation.height == height))
{ {
@ -7048,7 +7048,7 @@ get_active_region_type (GtkWindow *window, gint x, gint y)
gtk_widget_get_visible (priv->title_box) && gtk_widget_get_visible (priv->title_box) &&
gtk_widget_get_child_visible (priv->title_box)) gtk_widget_get_child_visible (priv->title_box))
{ {
_gtk_widget_get_allocation (priv->title_box, &allocation); gtk_widget_get_allocation (priv->title_box, &allocation);
if (allocation.x <= x && allocation.x + allocation.width > x && if (allocation.x <= x && allocation.x + allocation.width > x &&
allocation.y <= y && allocation.y + allocation.height > y) allocation.y <= y && allocation.y + allocation.height > y)
return GTK_WINDOW_REGION_TITLE; return GTK_WINDOW_REGION_TITLE;
@ -7428,7 +7428,7 @@ gtk_window_style_updated (GtkWidget *widget)
GtkAllocation allocation; GtkAllocation allocation;
GtkBorder window_border; GtkBorder window_border;
_gtk_widget_get_allocation (widget, &allocation); gtk_widget_get_allocation (widget, &allocation);
get_shadow_width (window, &window_border); get_shadow_width (window, &window_border);
update_opaque_region (window, &window_border, &allocation); update_opaque_region (window, &window_border, &allocation);
@ -7974,7 +7974,7 @@ gtk_window_compute_configure_request (GtkWindow *window,
gdk_surface_get_origin (surface, &ox, &oy); gdk_surface_get_origin (surface, &ox, &oy);
_gtk_widget_get_allocation (parent_widget, &allocation); gtk_widget_get_allocation (parent_widget, &allocation);
x = ox + (allocation.width - w) / 2; x = ox + (allocation.width - w) / 2;
y = oy + (allocation.height - h) / 2; y = oy + (allocation.height - h) / 2;