blob: d71134696f1054e45cfa9b355dfde161c88d34d7 (
plain)
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
|
package com.vaadin.tests.tickets;
import com.vaadin.Application;
import com.vaadin.ui.Button;
import com.vaadin.ui.GridLayout;
import com.vaadin.ui.Label;
import com.vaadin.ui.Layout;
import com.vaadin.ui.Layout.SpacingHandler;
import com.vaadin.ui.UI.LegacyWindow;
import com.vaadin.ui.VerticalLayout;
public class Ticket2232 extends Application.LegacyApplication {
@Override
public void init() {
setMainWindow(new LegacyWindow());
setTheme("tests-tickets");
getMainWindow()
.addComponent(
new Label(
"Defining spacing must be possible also with pure CSS"));
Layout gl;
gl = new VerticalLayout();
gl.setWidth("100%");
gl.setHeight("200px");
gl.setStyleName("t2232");
fillAndAdd(gl);
gl = new GridLayout();
gl.setWidth("100%");
gl.setHeight("200px");
gl.setStyleName("t2232");
fillAndAdd(gl);
gl = new VerticalLayout();
gl.setWidth("100%");
gl.setHeight("200px");
((SpacingHandler) gl).setSpacing(true);
fillAndAdd(gl);
gl = new GridLayout();
gl.setWidth("100%");
gl.setHeight("200px");
((SpacingHandler) gl).setSpacing(true);
fillAndAdd(gl);
gl = new VerticalLayout();
gl.setWidth("100%");
gl.setHeight("200px");
fillAndAdd(gl);
gl = new GridLayout();
gl.setWidth("100%");
gl.setHeight("200px");
fillAndAdd(gl);
}
private void fillAndAdd(Layout gl) {
for (int i = 0; i < 4; i++) {
Button b = new Button("B");
b.setSizeFull();
gl.addComponent(b);
}
String caption = gl.getClass().getSimpleName();
caption += " style: " + gl.getStyleName() + ", spacingFromServer:"
+ ((SpacingHandler) gl).isSpacing();
gl.setCaption(caption);
getMainWindow().addComponent(gl);
}
}
|