Searched refs:inset (Results 1 - 6 of 6) sorted by relevance

/openjdk7/jdk/src/share/demo/jfc/TableExample/
H A DTableExample.java285 int inset = 4;
286 showConnectionInfoButton.setBounds(b.width - 2 * inset - 120, inset, 120,
288 fetchButton.setBounds(b.width - 2 * inset - 120, 60, 120, 25);
290 queryAggregate.setBounds(inset, inset, b.width - 2 * inset - 150, 80);
291 tableAggregate.setBounds(new Rectangle(inset,
292 inset + topHeight,
293 b.width - 2 * inset,
[all...]
/openjdk7/jdk/src/share/classes/javax/swing/plaf/metal/
H A DMetalSplitPaneDivider.java61 private int inset = 2; field in class:MetalSplitPaneDivider
85 size.width -= inset * 2;
86 size.height -= inset * 2;
87 int drawX = inset;
88 int drawY = inset;
/openjdk7/jdk/src/share/demo/jfc/Metalworks/
H A DMetalworksFrame.java90 final int inset = 50;
92 setBounds(inset, inset, screenSize.width - inset * 2, screenSize.height - inset
/openjdk7/jdk/src/macosx/classes/com/apple/laf/
H A DAquaButtonBorder.java130 final Insets inset = c.getInsets();
133 if (margin.equals(inset)) return false;
136 (inset.top < margin.top) ||
137 (inset.left < margin.left) ||
138 (inset.right < margin.right) ||
139 (inset.bottom < margin.bottom)
/openjdk7/jdk/src/share/classes/javax/swing/text/html/
H A Ddefault.css223 border-style: inset;
234 border-style: inset;
H A DStyleSheet.java1807 * Fetches the inset needed on a given side to
1811 * inset for. This can be View.TOP,
1820 float inset = 0;
1823 inset += getOrientationMargin(HorizontalMargin.LEFT,
1825 inset += binsets.left;
1826 inset += getLength(CSS.Attribute.PADDING_LEFT, a);
1829 inset += getOrientationMargin(HorizontalMargin.RIGHT,
1831 inset += binsets.right;
1832 inset += getLength(CSS.Attribute.PADDING_RIGHT, a);
1835 inset
[all...]

Completed in 435 milliseconds