Searched defs:border_width (Results 1 - 5 of 5) sorted by relevance

/inkscape/src/libgdl/
H A Dgdl-dock-bar.c469 guint border_width; local
519 border_width = gtk_container_get_border_width (GTK_CONTAINER (box));
520 requisition->width += border_width * 2;
521 requisition->height += border_width * 2;
537 guint border_width; local
570 border_width = gtk_container_get_border_width (GTK_CONTAINER (box));
577 border_width * 2 -
592 y = allocation->y + border_width;
593 child_allocation.x = allocation->x + border_width;
594 child_allocation.width = MAX (1, (gint) allocation->width - (gint) border_width *
736 guint border_width; local
805 guint border_width; local
[all...]
H A Dgdl-dock-tablabel.c280 guint border_width; local
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; local
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; local
425 guint border_width; local
[all...]
H A Dgdl-dock-item-grip.c504 guint border_width; local
509 border_width = gtk_container_get_border_width (GTK_CONTAINER (widget));
512 requisition->width = border_width * 2/* + ALIGN_BORDER*/;
513 requisition->height = border_width * 2;
545 guint border_width; local
551 border_width = gtk_container_get_border_width (GTK_CONTAINER (widget));
562 + border_width * 2;
569 child_allocation.x = border_width/* + ALIGN_BORDER*/;
571 child_allocation.x = allocation->width - border_width;
572 child_allocation.y = border_width;
[all...]
H A Dgdl-dock.c538 guint border_width; local
545 border_width = gtk_container_get_border_width (container);
555 requisition->width += 2 * border_width;
556 requisition->height += 2 * border_width;
567 guint border_width; local
574 border_width = gtk_container_get_border_width (container);
579 allocation->x += border_width;
580 allocation->y += border_width;
581 allocation->width = MAX (1, allocation->width - 2 * border_width);
582 allocation->height = MAX (1, allocation->height - 2 * border_width);
[all...]
H A Dgdl-dock-item.c819 guint border_width; local
863 border_width = gtk_container_get_border_width (GTK_CONTAINER (widget));
866 requisition->width += (border_width + style->xthickness) * 2;
867 requisition->height += (border_width + style->ythickness) * 2;
899 guint border_width; local
901 border_width = gtk_container_get_border_width (GTK_CONTAINER (widget));
904 child_allocation.x = border_width + style->xthickness;
905 child_allocation.y = border_width + style->ythickness;
907 - 2 * (border_width + style->xthickness);
909 - 2 * (border_width
[all...]

Completed in 2168 milliseconds