Searched refs:focusInsets (Results 1 - 5 of 5) sorted by relevance

/openjdk7/jdk/src/solaris/classes/sun/awt/X11/
H A DXButtonPeer.java42 private Insets focusInsets; field in class:XButtonPeer
60 focusInsets = new Insets(0,0,0,0);
267 paintFocus(g,focusInsets.left,
268 focusInsets.top,
269 size.width-(focusInsets.left+focusInsets.right)-1,
270 size.height-(focusInsets.top+focusInsets.bottom)-1);
H A DXCheckboxPeer.java41 private static final Insets focusInsets = new Insets(0,0,0,0); field in class:XCheckboxPeer
293 focusRect.x = focusInsets.left;
294 focusRect.y = focusInsets.top;
295 focusRect.width = size.width-(focusInsets.left+focusInsets.right)-1;
296 focusRect.height = size.height-(focusInsets.top+focusInsets.bottom)-1;
H A DXChoicePeer.java60 private static final Insets focusInsets = new Insets(0,0,0,0); field in class:XChoicePeer
540 focusRect.x = focusInsets.left;
541 focusRect.y = focusInsets.top;
542 focusRect.width = size.width-(focusInsets.left+focusInsets.right)-1;
543 focusRect.height = size.height-(focusInsets.top+focusInsets.bottom)-1;
584 paintFocus(g,focusInsets.left,focusInsets.top,size.width-(focusInsets
[all...]
/openjdk7/jdk/src/macosx/classes/com/apple/laf/
H A DAquaButtonExtendedTypes.java148 final Insets focusInsets = new Insets(4, 4, 4, 4);
171 new BorderDefinedTypeSpecifier("square", Widget.BUTTON_BEVEL, new SizeVariant(16, 16).alterMargins(5, 7, 5, 7).replaceInsets(focusInsets)),
172 new BorderDefinedTypeSpecifier("gradient", Widget.BUTTON_BEVEL_INSET, new SizeVariant(18, 18).alterMargins(8, 9, 8, 9).replaceInsets(focusInsets)) {
178 new BorderDefinedTypeSpecifier("roundRect", Widget.BUTTON_PUSH_INSET, new SizeVariant(28, 28).alterMargins(4, 14, 4, 14).replaceInsets(focusInsets)),
179 new BorderDefinedTypeSpecifier("recessed", Widget.BUTTON_PUSH_SCOPE, new SizeVariant(28, 28).alterMargins(4, 14, 4, 14).replaceInsets(focusInsets)),
217 new BorderDefinedTypeSpecifier("disclosure", Widget.BUTTON_DISCLOSURE, new SizeVariant().alterMargins(10, 10, 10, 10).replaceInsets(focusInsets).alterMinSize(27, 27), -1, -1, -1, -1),
/openjdk7/jdk/src/share/classes/javax/swing/plaf/basic/
H A DBasicSliderUI.java58 protected Insets focusInsets = null; field in class:BasicSliderUI
205 focusInsets = (Insets)UIManager.get( "Slider.focusInsets" );
208 if (focusInsets == null) focusInsets = new InsetsUIResource(2,2,2,2);
214 focusInsets = null;
329 focusInsets.top - focusInsets.bottom;
337 int trackY = insets.top + focusInsets.top +
356 int contentY = focusInsets
[all...]

Completed in 61 milliseconds