Searched refs:hgap (Results 1 - 9 of 9) sorted by relevance

/openjdk7/jdk/src/share/classes/sun/awt/
H A DHorizBagLayout.java38 int hgap; field in class:HorizBagLayout
49 * @param hgap the horizontal gap
51 public HorizBagLayout(int hgap) { argument
52 this.hgap = hgap;
84 dim.width += d.width + hgap;
110 dim.width += d.width + hgap;
143 left += d.width + hgap;
152 return getClass().getName() + "[hgap=" + hgap
[all...]
H A DVariableGridLayout.java50 int hgap; field in class:VariableGridLayout
77 * @param hgap the horizontal gap variable
81 public VariableGridLayout(int rows, int cols, int hgap, int vgap) { argument
82 super(rows, cols, hgap, vgap);
86 this.hgap = hgap;
191 w = (w - (ncols - 1) * hgap);
207 x += colWidth + hgap;
224 return getClass().getName() + "[hgap=" + hgap
[all...]
/openjdk7/jdk/src/share/classes/java/awt/
H A DGridLayout.java108 int hgap; field in class:GridLayout
187 * @param hgap the horizontal gap
193 public GridLayout(int rows, int cols, int hgap, int vgap) { argument
199 this.hgap = hgap;
260 return hgap;
265 * @param hgap the horizontal gap between components
268 public void setHgap(int hgap) { argument
269 this.hgap = hgap;
[all...]
H A DFlowLayout.java174 int hgap; field in class:FlowLayout
228 * @param hgap the horizontal gap between components
235 public FlowLayout(int align, int hgap, int vgap) { argument
236 this.hgap = hgap;
301 return hgap;
309 * @param hgap the horizontal gap between components
315 public void setHgap(int hgap) { argument
316 this.hgap = hgap;
[all...]
H A DBorderLayout.java129 * The horizontal gap is specified by <code>hgap</code>.
136 int hgap; field in class:BorderLayout
358 * The horizontal gap is specified by <code>hgap</code>
360 * @param hgap the horizontal gap.
363 public BorderLayout(int hgap, int vgap) { argument
364 this.hgap = hgap;
373 return hgap;
378 * @param hgap the horizontal gap between components
381 public void setHgap(int hgap) { argument
[all...]
H A DCardLayout.java98 int hgap; field in class:CardLayout
113 * @serialField hgap int
120 new ObjectStreamField("hgap", Integer.TYPE),
138 * @param hgap the horizontal gap.
141 public CardLayout(int hgap, int vgap) { argument
142 this.hgap = hgap;
154 return hgap;
159 * @param hgap the horizontal gap between components.
164 public void setHgap(int hgap) { argument
[all...]
/openjdk7/jdk/src/share/classes/sun/tools/jconsole/
H A DVariableGridLayout.java38 int hgap, int vgap,
40 super(rows, cols, hgap, vgap);
69 int hgap = getHgap();
103 x += w + hgap;
167 x += w + hgap;
202 int hgap = getHgap();
234 x += w + hgap;
37 VariableGridLayout(int rows, int cols, int hgap, int vgap, boolean fillRows, boolean fillColumns) argument
H A DAboutDialog.java192 TPanel(int hgap, int vgap) { argument
193 super(new BorderLayout(hgap, vgap));
/openjdk7/jdk/test/java/awt/Graphics2D/RenderClipTest/
H A DRenderClipTest.java1427 int hgap; field in class:RenderClipTest.SmartGridLayout
1433 this.hgap = h;
1492 return new Dimension(insets.left+insets.right + w+(ncols+1)*hgap,
1516 w = w - (ncols+1)*hgap;
1521 int x = insets.left + hgap;
1527 x += widths[c++] + hgap;
1530 x = insets.left + hgap;

Completed in 46 milliseconds