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
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
|
package com.vaadin.tests.components.orderedlayout;
import java.lang.reflect.Field;
import java.util.ArrayList;
import java.util.Arrays;
import java.util.List;
import com.vaadin.annotations.Theme;
import com.vaadin.data.Property.ValueChangeEvent;
import com.vaadin.data.Property.ValueChangeListener;
import com.vaadin.server.VaadinRequest;
import com.vaadin.tests.components.AbstractTestUI;
import com.vaadin.tests.util.TestUtils;
import com.vaadin.ui.AbstractOrderedLayout;
import com.vaadin.ui.Alignment;
import com.vaadin.ui.Button;
import com.vaadin.ui.Button.ClickEvent;
import com.vaadin.ui.Button.ClickListener;
import com.vaadin.ui.Component;
import com.vaadin.ui.HorizontalLayout;
import com.vaadin.ui.NativeSelect;
import com.vaadin.ui.VerticalLayout;
@Theme("tests-components")
public class OrderedLayoutCases extends AbstractTestUI {
private static final String[] dimensionValues = { "-1px", "5px", "350px",
"800px", "100%", "50%" };
private static class SampleChild extends VerticalLayout {
public SampleChild(int i) {
addStyleName("sampleChild");
addStyleName("sampleChild" + i);
addComponent(createSimpleSelector("Child width",
new ValueChangeListener() {
@Override
public void valueChange(ValueChangeEvent event) {
setWidth(event.getProperty().getValue().toString());
}
}, dimensionValues));
addComponent(createSimpleSelector("Child height",
new ValueChangeListener() {
@Override
public void valueChange(ValueChangeEvent event) {
setHeight(event.getProperty().getValue().toString());
}
}, dimensionValues));
addComponent(createSimpleSelector("Caption",
new ValueChangeListener() {
@Override
public void valueChange(ValueChangeEvent event) {
String value = event.getProperty().getValue()
.toString();
if (value.length() == 0) {
setCaption(null);
} else if (value.equals("Long")) {
setCaption("A rather long caption just to see what happens");
} else {
setCaption(value);
}
}
}, "", "Short", "Long"));
addComponent(createSimpleSelector("Expand ratio",
new ValueChangeListener() {
@Override
public void valueChange(ValueChangeEvent event) {
AbstractOrderedLayout parent = (AbstractOrderedLayout) getParent();
if (parent == null) {
return;
}
String value = event.getProperty().getValue()
.toString();
parent.setExpandRatio(SampleChild.this,
Float.parseFloat(value));
}
}, "0", "1", "2"));
// Why is Alignment not an enum? Now we have to use reflection just
// to get the different values as hardcoding is never an option! ;)
List<String> alignmentValues = new ArrayList<String>();
Field[] fields = Alignment.class.getDeclaredFields();
for (Field field : fields) {
if (field.getType() == Alignment.class) {
alignmentValues.add(field.getName());
}
}
addComponent(createSimpleSelector("Alignment",
new ValueChangeListener() {
@Override
public void valueChange(ValueChangeEvent event) {
String value = event.getProperty().getValue()
.toString();
AlignmentHandler parent = (AlignmentHandler) getParent();
if (parent == null) {
return;
}
try {
Field field = Alignment.class
.getDeclaredField(value);
Alignment alignment = (Alignment) field
.get(null);
parent.setComponentAlignment(SampleChild.this,
alignment);
} catch (Exception e) {
throw new RuntimeException(e);
}
}
}, alignmentValues, "TOP_LEFT")); // Sorry for not using
// more reflection magic
// just to find the
// default value...
}
}
private AbstractOrderedLayout currentLayout;
private HorizontalLayout sizeBar;
@Override
protected void setup(VaadinRequest request) {
TestUtils.injectCSS(getUI(),
".sampleChild, .theLayout {border: 1px solid black;}"
+ ".sampleChild1 {background: aqua;}"
+ ".sampleChild2 {background: yellow;}"
+ ".sampleChild3 {background: lightgrey;}");
currentLayout = new HorizontalLayout();
for (int i = 0; i < 3; i++) {
currentLayout.addComponent(new SampleChild(i + 1));
}
sizeBar = new HorizontalLayout();
sizeBar.setSpacing(true);
sizeBar.addComponent(createSimpleSelector("Layout width",
new ValueChangeListener() {
@Override
public void valueChange(ValueChangeEvent event) {
currentLayout.setWidth(event.getProperty().getValue()
.toString());
}
}, dimensionValues));
sizeBar.addComponent(createSimpleSelector("Layout height",
new ValueChangeListener() {
@Override
public void valueChange(ValueChangeEvent event) {
currentLayout.setHeight(event.getProperty().getValue()
.toString());
}
}, dimensionValues));
sizeBar.addComponent(createSimpleSelector("Spacing",
new ValueChangeListener() {
@Override
public void valueChange(ValueChangeEvent event) {
currentLayout.setSpacing(Boolean.parseBoolean(event
.getProperty().getValue().toString()));
}
}, "false", "true"));
sizeBar.addComponent(createSimpleSelector("Margin",
new ValueChangeListener() {
@Override
public void valueChange(ValueChangeEvent event) {
currentLayout.setMargin(Boolean.parseBoolean(event
.getProperty().getValue().toString()));
}
}, "false", "true"));
sizeBar.addComponent(createSimpleSelector("Direction",
new ValueChangeListener() {
@Override
public void valueChange(ValueChangeEvent event) {
Object value = event.getProperty().getValue();
AbstractOrderedLayout newLayout;
if (value.equals("Horizontal")) {
newLayout = new HorizontalLayout();
} else {
newLayout = new VerticalLayout();
}
while (currentLayout.getComponentCount() > 0) {
Component child = currentLayout.getComponent(0);
Alignment alignment = currentLayout
.getComponentAlignment(child);
float expRatio = currentLayout
.getExpandRatio(child);
newLayout.addComponent(child);
newLayout.setExpandRatio(child, expRatio);
newLayout.setComponentAlignment(child, alignment);
}
newLayout.setStyleName("theLayout");
newLayout.setHeight(currentLayout.getHeight(),
currentLayout.getHeightUnits());
newLayout.setWidth(currentLayout.getWidth(),
currentLayout.getWidthUnits());
newLayout.setMargin(currentLayout.getMargin());
newLayout.setSpacing(currentLayout.isSpacing());
getLayout().replaceComponent(currentLayout, newLayout);
getLayout().setExpandRatio(newLayout, 1);
currentLayout = newLayout;
}
}, "Horizontal", "Vertical"));
HorizontalLayout caseBar = new HorizontalLayout();
caseBar.addComponent(new Button("Undefined without relative",
new ClickListener() {
@Override
public void buttonClick(ClickEvent event) {
resetState();
setState(sizeBar, 2, 1);
// width: 350px to middle child
setChildState(1, 0, 2);
// middle center allign to middle child
setChildState(1, 4, 5);
// long captions to right child
setChildState(2, 2, 2);
}
}));
caseBar.addComponent(new Button("Undefined with relative",
new ClickListener() {
@Override
public void buttonClick(ClickEvent event) {
resetState();
// width: 100% to middle child
setChildState(1, 0, 4);
}
}));
caseBar.addComponent(new Button("Fixed with overflow",
new ClickListener() {
@Override
public void buttonClick(ClickEvent event) {
resetState();
// layout width: 350px
setState(sizeBar, 0, 2);
// layout margin enabled
setState(sizeBar, 3, 1);
}
}));
caseBar.addComponent(new Button("Fixed with extra space",
new ClickListener() {
@Override
public void buttonClick(ClickEvent event) {
resetState();
// Layout width: 800px
setState(sizeBar, 0, 3);
// layout margin enabled
setState(sizeBar, 3, 1);
// width: 350px to middle child
setChildState(1, 0, 2);
// short caption for middle child
setChildState(1, 2, 1);
// top center align for middle child
setChildState(1, 4, 2);
}
}));
caseBar.addComponent(new Button("Expand with alignment",
new ClickListener() {
@Override
public void buttonClick(ClickEvent event) {
resetState();
// Layout width: 800px
setState(sizeBar, 0, 3);
// Layout height: 350px
setState(sizeBar, 1, 2);
// Expand: 1 to middle child
setChildState(1, 3, 1);
// Align bottom left to middle child
setChildState(1, 4, 6);
// Long caption to middle child
setChildState(1, 2, 2);
}
}));
caseBar.addComponent(new Button("Multiple expands",
new ClickListener() {
@Override
public void buttonClick(ClickEvent event) {
resetState();
// Layout width: 800px
setState(sizeBar, 0, 3);
// Layout height: 350px
setState(sizeBar, 1, 2);
// Long caption to left child
setChildState(0, 2, 2);
// Width 350px to middle child
setChildState(1, 0, 2);
// Apply to left and middle child
for (int i = 0; i < 2; i++) {
// Expand: 1
setChildState(i, 3, 1);
// Align: middle center
setChildState(i, 4, 5);
}
}
}));
caseBar.addComponent(new Button("Fixed + relative height",
new ClickListener() {
@Override
public void buttonClick(ClickEvent event) {
resetState();
// Layout height: 100%
setState(sizeBar, 1, 4);
// Height: 350px to left child
setChildState(0, 1, 2);
// Height: 100% to middle child
setChildState(1, 1, 4);
// Short caption to middle child
setChildState(1, 2, 1);
// Alignment: bottom left to right child
setChildState(2, 4, 7);
}
}));
caseBar.addComponent(new Button("Undefined + relative height",
new ClickListener() {
@Override
public void buttonClick(ClickEvent event) {
resetState();
// Height: 350px to left child
setChildState(0, 1, 2);
// Short caption to left child
setChildState(0, 2, 1);
// Height: 100% to middle child
setChildState(1, 1, 4);
}
}));
caseBar.addComponent(new Button("Undefined + alignments",
new ClickListener() {
@Override
public void buttonClick(ClickEvent event) {
resetState();
// Height: 350px to left child
setChildState(0, 1, 2);
// Short caption to left child
setChildState(0, 2, 1);
// Alignment: bottom left to right child
setChildState(2, 4, 7);
}
}));
caseBar.addComponent(new Button("Relative child without expand",
new ClickListener() {
@Override
public void buttonClick(ClickEvent event) {
resetState();
// Width 800px
setState(sizeBar, 0, 3);
// First child 100% wide
setChildState(0, 0, 4);
// Second child expand 1
setChildState(1, 3, 1);
}
}));
/*
* Hidden for not to avoid changing screenshots, functionality is still
* available by adding case=9 to the query string...
*/
caseBar.getComponent(9).setVisible(false);
caseBar.setSpacing(true);
addComponent(caseBar);
addComponent(sizeBar);
addComponent(currentLayout);
getLayout().setSpacing(true);
getContent().setSizeFull();
getLayout().setSizeFull();
getLayout().setExpandRatio(currentLayout, 1);
String caseParameter = request.getParameter("case");
if (caseParameter != null) {
int caseIndex = Integer.parseInt(caseParameter);
Button button = (Button) caseBar.getComponent(caseIndex);
button.click();
}
}
private void resetState() {
for (int i = 0; i < sizeBar.getComponentCount(); i++) {
setState(sizeBar, i, 0);
}
for (int i = 0; i < 3; i++) {
// Child width and height -> -1px
SampleChild child = (SampleChild) currentLayout.getComponent(i);
for (int j = 0; j < child.getComponentCount(); j++) {
if (j == 4) {
setState(child, j, 1);
} else {
setState(child, j, 0);
}
}
}
}
private void setChildState(int childIndex, int selectIndex, int valueIndex) {
Component child = currentLayout.getComponent(childIndex);
setState(child, selectIndex, valueIndex);
}
private static void setState(Component container, int selectIndex, int value) {
NativeSelect select = (NativeSelect) ((AbstractOrderedLayout) container)
.getComponent(selectIndex);
select.setValue(new ArrayList<Object>(select.getItemIds()).get(value));
}
private static NativeSelect createSimpleSelector(String caption,
ValueChangeListener listener, String... values) {
return createSimpleSelector(caption, listener, Arrays.asList(values),
values[0]);
}
private static NativeSelect createSimpleSelector(String caption,
ValueChangeListener listener, List<String> values,
String defaultValue) {
NativeSelect selector = new NativeSelect(caption, values);
selector.setNullSelectionAllowed(false);
selector.setImmediate(true);
selector.addListener(listener);
selector.setValue(defaultValue);
return selector;
}
@Override
protected Integer getTicketNumber() {
return null;
}
@Override
protected String getTestDescription() {
return "Tester application for exploring how Horizontal/VerticalLayout reacts to various settings ";
}
}
|