Lines Matching defs:border_width
280 guint border_width;
300 border_width = gtk_container_get_border_width (GTK_CONTAINER (widget));
302 requisition->width += border_width * 2;
303 requisition->height += border_width * 2;
315 gint border_width;
324 border_width = gtk_container_get_border_width (GTK_CONTAINER (widget));
339 child_allocation.x = widget_allocation.x + border_width;
340 child_allocation.y = widget_allocation.y + border_width;
347 MAX (1, (int) allocation->width - 2 * border_width);
349 MAX (1, (int) allocation->height - 2 * border_width);
363 gint border_width;
367 border_width = gtk_container_get_border_width (GTK_CONTAINER (widget));
370 rect.x = widget_allocation.x + border_width;
371 rect.y = widget_allocation.y + border_width;
373 rect.height = widget_allocation.height - 2*border_width;
425 guint border_width;
429 border_width = gtk_container_get_border_width (GTK_CONTAINER (widget));
431 rel_x = event->x - border_width;
432 rel_y = event->y - border_width;