Searched defs:bw (Results 1 - 3 of 3) sorted by relevance

/inkscape/src/libgdl/
H A Dgdl-dock-paned.c395 guint bw; local
409 bw = gtk_container_get_border_width (GTK_CONTAINER (object));
431 my_request.rect.x = bw;
432 my_request.rect.y = bw;
433 my_request.rect.width = alloc.width - 2*bw;
434 my_request.rect.height = alloc.height - 2*bw;
439 if (rel_x < (gint)bw) {
443 } else if (rel_x > alloc.width - (gint)bw) {
448 } else if (rel_y < (gint)bw) {
452 } else if (rel_y > alloc.height - (gint)bw) {
[all...]
H A Dgdl-dock.c788 guint bw; local
802 bw = gtk_container_get_border_width (GTK_CONTAINER (dock));
819 my_request.rect.x = alloc.x + bw;
820 my_request.rect.y = alloc.y + bw;
821 my_request.rect.width = alloc.width - 2*bw;
822 my_request.rect.height = alloc.height - 2*bw;
833 if (rel_x < (gint)bw) {
836 } else if (rel_x > alloc.width - (gint)bw) {
840 } else if (rel_y < (gint)bw) {
843 } else if (rel_y > alloc.height - (gint)bw) {
[all...]
/inkscape/src/display/
H A Dsp-canvas.cpp1651 int bw = this_rect.width(); local
1653 if ((bw < 1) || (bh < 1))
1656 if (bw * bh < setup->max_pixels) {
1669 paintSingleBuffer(this_rect, setup->big_rect, bw);
1679 bw < bh (strips mode) splits across the smaller dimension of the rect and therefore (on
1684 bw > bh (chunks mode) splits across the larger dimension of the rect and therefore paints in
1691 if (bw < bh || bh < 2 * TILE_SIZE) {

Completed in 1180 milliseconds