Home | History | Annotate | Download | only in gtk

Lines Matching defs:border

273         GtkBorder border = { 1, 1, 1, 1 };
275 gtk_style_context_get_style(context, "default-border", &borderPtr, NULL);
277 border = *borderPtr;
281 buttonRect.move(border.left, border.top);
282 buttonRect.setWidth(buttonRect.width() - (border.left + border.right));
283 buttonRect.setHeight(buttonRect.height() - (border.top + border.bottom));
339 static void getComboBoxMetrics(RenderStyle* style, GtkBorder& border, int& focus, int& separator)
352 gtk_style_context_get_border(context, static_cast<GtkStateFlags>(0), &border);
378 // GTK+ always uses border.left, regardless of text direction. See gtkseperator.c.
380 separatorWidth = border.left;
442 "inner-border", &innerBorderPtr,
534 GtkBorder border;
535 gtk_style_context_get_border(separatorStyleContext, state, &border);
538 separatorPosition.move(-(padding.left + border.left), 0);
545 cairo_rectangle(cairoContext, separatorPosition.x(), separatorPosition.y(), border.left, innerRect.height());
644 gtk_style_context_get_style(context, "trough-border", &troughBorder, NULL);