-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCellLayout.java
416 lines (374 loc) · 12 KB
/
CellLayout.java
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
import java.awt.Component;
import java.awt.Container;
import java.awt.Dimension;
import java.awt.Insets;
import java.awt.LayoutManager;
/**
* This layout manager is based on java.awt.GridLayout
*
* The <code>GridLayout</code> class is a layout manager that lays out a
* container's components in a hexagonal grid. The container is divided into
* equal-sized hexagons, and one component is placed in each hexagon.
*
* @author Cameron Maxwell
*
*/
public class CellLayout implements LayoutManager, java.io.Serializable {
private static final long serialVersionUID = -858342723067286796L;
private int numNeighbours = 4; // Number of neighbouring cells of each cell
/**
* This is the gap (in pixels) which specifies the space between components.
* They can be changed at any time. This should be a non-negative integer.
*
* @serial
*/
int cgap;
/**
* This is the number of rows specified for the grid. The number of rows can
* be changed at any time. This should be a non negative integer, where '0'
* means 'any number' meaning that the number of Rows in that dimension
* depends on the other dimension.
*
* @serial
* @see #getRows()
* @see #setRows(int)
*/
int rows;
/**
* This is the number of columns specified for the grid. The number of
* columns can be changed at any time. This should be a non negative
* integer, where '0' means 'any number' meaning that the number of Columns
* in that dimension depends on the other dimension.
*
* @serial
* @see #getColumns()
* @see #setColumns(int)
*/
int cols;
/**
* Creates a grid layout with a default of one column per component, in a
* single row.
*
* @since JDK1.1
*/
public CellLayout() {
this(1, 0, 0);
}
/**
* Creates a grid layout with the specified number of rows and columns. All
* components in the layout are given equal size.
* <p>
* One, but not both, of <code>rows</code> and <code>cols</code> can be
* zero, which means that any number of objects can be placed in a row or in
* a column.
*
* @param r
* the rows, with the value zero meaning any number of rows.
* @param c
* the columns, with the value zero meaning any number of
* columns.
*/
public CellLayout(int r, int c) {
this(r, c, 0);
}
/**
* Creates a grid layout with the specified number of rows and columns. All
* components in the layout are given equal size.
* <p>
* In addition, the gap between components is set to the specified value.
* <p>
* One, but not both, of <code>rows</code> and <code>cols</code> can be
* zero, which means that any number of objects can be placed in a row or in
* a column.
* <p>
* All <code>GridLayout</code> constructors defer to this one.
*
* @param r
* the rows, with the value zero meaning any number of rows
* @param c
* the columns, with the value zero meaning any number of columns
* @param hgap
* the gap around the component
* @exception IllegalArgumentException
* if the value of both <code>rows</code> and
* <code>cols</code> is set to zero
*/
public CellLayout(int r, int c, int hgap) {
if ((r == 0) && (c == 0)) {
throw new IllegalArgumentException("rows and cols cannot both be zero");
}
this.rows = r;
this.cols = c;
this.cgap = hgap;
}
/**
* Gets the number of rows in this layout.
*
* @return the number of rows in this layout
*/
public int getRows() {
return rows;
}
/**
* Sets the number of rows in this layout to the specified value.
*
* @param r
* the number of rows in this layout
* @exception IllegalArgumentException
* if the value of both <code>rows</code> and
* <code>cols</code> is set to zero
*/
public void setRows(int r) {
if ((r == 0) && (this.cols == 0)) {
throw new IllegalArgumentException("rows and cols cannot both be zero");
}
this.rows = r;
}
/**
* Gets the number of columns in this layout.
*
* @return the number of columns in this layout
*/
public int getColumns() {
return cols;
}
/**
* Sets the number of columns in this layout to the specified value. Setting
* the number of columns has no affect on the layout if the number of rows
* specified by a constructor or by the <tt>setRows</tt> method is non-zero.
* In that case, the number of columns displayed in the layout is determined
* by the total number of components and the number of rows specified.
*
* @param c
* the number of columns in this layout
* @exception IllegalArgumentException
* if the value of both <code>rows</code> and
* <code>cols</code> is set to zero
*/
public void setColumns(int c) {
if ((c == 0) && (this.rows == 0)) {
throw new IllegalArgumentException("rows and cols cannot both be zero");
}
this.cols = c;
}
/**
* Gets the gap between components.
*
* @return the gap between components
*/
public int getGap() {
return cgap;
}
/**
* Sets the gap between components to the specified value.
*
* @param gap
* the gap between components
*/
public void setGap(int gap) {
this.cgap = gap;
}
/**
* Adds the specified component with the specified name to the layout.
*
* @param name
* the name of the component
* @param comp
* the component to be added
*/
public void addLayoutComponent(String name, Component comp) {
// do nothing
}
/**
* Removes the specified component from the layout.
*
* @param comp
* the component to be removed
*/
public void removeLayoutComponent(Component comp) {
// do nothing
}
/**
* Determines the preferred size of the container argument using this grid
* layout.
* <p>
* The preferred width of a grid layout is the largest preferred width of
* all of the components in the container times the number of columns, plus
* the horizontal padding times the number of columns minus one, plus the
* left and right insets of the target container, plus the width of half a
* component if there is more than one row.
* <p>
* The preferred height of a grid layout is the largest preferred height of
* all of the components in the container plus three quarters of the largest
* minimum height of all of the components in the container times the number
* of rows greater than one, plus the vertical padding times the number of
* rows minus one, plus the top and bottom insets of the target container.
*
* @param parent
* the container in which to do the layout
* @return the preferred dimensions to lay out the subcomponents of the
* specified container
* @see java.awt.GridLayout#minimumLayoutSize
* @see java.awt.Container#getPreferredSize()
*/
public Dimension preferredLayoutSize(Container parent) {
synchronized (parent.getTreeLock()) {
Insets insets = parent.getInsets();
int ncomponents = parent.getComponentCount();
int nrows = rows;
int ncols = cols;
if (nrows > 0) {
ncols = (ncomponents + nrows - 1) / nrows;
} else {
nrows = (ncomponents + ncols - 1) / ncols;
}
int w = 0;
int h = 0;
for (int i = 0; i < ncomponents; i++) {
Component comp = parent.getComponent(i);
Dimension d = comp.getPreferredSize();
if (w < d.width) {
w = d.width;
}
if (h < d.height) {
h = d.height;
}
}
int dx = insets.left + insets.right + ncols * w + (ncols - 1) * cgap;
int dy = insets.top + insets.bottom + nrows * h + (nrows - 1) * cgap;
if (nrows > 1) {
dx = dx + (int) (w * 0.5f);
dy /= nrows;
dy = dy + (int) (dy * (nrows - 1) * 0.75f);
}
return new Dimension(dx, dy);
}
}
/**
* Determines the minimum size of the container argument using this grid
* layout.
* <p>
* The minimum width of a grid layout is the largest minimum width of all of
* the components in the container times the number of columns, plus the
* horizontal padding times the number of columns minus one, plus the left
* and right insets of the target container, plus the width of half a
* component if there is more than one row.
* <p>
* The minimum height of a grid layout is the largest minimum height of all
* of the components in the container plus three quarters of the largest
* minimum height of all of the components in the container times the number
* of rows greater than one, plus the vertical padding times the number of
* rows minus one, plus the top and bottom insets of the target container.
*
* @param parent
* the container in which to do the layout
* @return the minimum dimensions needed to lay out the subcomponents of the
* specified container
* @see java.awt.GridLayout#preferredLayoutSize
* @see java.awt.Container#doLayout
*/
public Dimension minimumLayoutSize(Container parent) {
synchronized (parent.getTreeLock()) {
Insets insets = parent.getInsets();
int ncomponents = parent.getComponentCount();
int nrows = rows;
int ncols = cols;
if (nrows > 0) {
ncols = (ncomponents + nrows - 1) / nrows;
} else {
nrows = (ncomponents + ncols - 1) / ncols;
}
int w = 0;
int h = 0;
for (int i = 0; i < ncomponents; i++) {
Component comp = parent.getComponent(i);
Dimension d = comp.getMinimumSize();
if (w < d.width) {
w = d.width;
}
if (h < d.height) {
h = d.height;
}
}
int dx = insets.left + insets.right + ncols * w + (ncols - 1) * cgap;
int dy = insets.top + insets.bottom + nrows * h + (nrows - 1) * cgap;
if (nrows > 1) {
dx = dx + (int) (w * 0.5f);
dy /= nrows;
dy = dy + (int) (dy * (nrows - 1) * 0.75f);
}
return new Dimension(dx, dy);
}
}
/**
* Lays out the specified container using this layout.
* <p>
* This method reshapes the components in the specified target container in
* order to satisfy the constraints of the <code>GridLayout</code> object.
* <p>
* The grid layout manager determines the size of individual components by
* dividing the free space in the container into equal-sized portions
* according to the number of rows and columns in the layout. The
* container's free space equals the container's size minus any insets and
* any specified horizontal or vertical gap. All components in a grid layout
* are given the same size.
*
* @param parent
* the container in which to do the layout
* @see java.awt.Container
* @see java.awt.Container#doLayout
*/
public void layoutContainer(Container parent) {
synchronized (parent.getTreeLock()) {
Insets insets = parent.getInsets();
int ncomponents = parent.getComponentCount();
int nrows = rows;
int ncols = cols;
if (ncomponents == 0) {
return;
}
if (nrows > 0) {
ncols = (ncomponents + nrows - 1) / nrows;
} else {
nrows = (ncomponents + ncols - 1) / ncols;
}
int w = parent.getWidth() - (insets.left + insets.right);
int h = parent.getHeight() - (insets.top + insets.bottom);
w = (int) ((w - (ncols - 1) * cgap) / (ncols + (nrows > 1 ? 0.5f : 0.0f)));
float effectiveRows;
int xoffset, yoffset;
if (numNeighbours == 4) effectiveRows = nrows;
else effectiveRows = 1 + ((nrows - 1) * 0.75f);
h = (int) ((h - (nrows - 1) * cgap) / effectiveRows);
if (numNeighbours == 4) {
xoffset = 0; //(w + cgap) / 2;
yoffset = h; //(int) (h * 0.75f);
}
else {
xoffset = (w + cgap) / 2;
yoffset = (int) (h * 0.75f);
}
boolean staggeredRow = false;
for (int r = 0, y = insets.top; r < nrows; r++, y += yoffset + cgap) {
int offset = 0;
if (staggeredRow)
offset = xoffset;
for (int c = 0, x = insets.left; c < ncols; c++, x += w + cgap) {
int i = r * ncols + c;
if (i < ncomponents) {
parent.getComponent(i).setBounds(x + offset, y, w, h);
}
}
staggeredRow = !staggeredRow;
}
}
}
/**
* Returns the string representation of this grid layout's values.
*
* @return a string representation of this grid layout
*/
public String toString() {
return getClass().getName() + "[gap=" + cgap + ",rows=" + rows + ",cols=" + cols + "]";
}
}