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
|
package com.vaadin.tests.layouts;
import java.util.ArrayList;
import java.util.List;
import com.vaadin.data.Item;
import com.vaadin.data.Property.ValueChangeEvent;
import com.vaadin.data.Property.ValueChangeListener;
import com.vaadin.server.ThemeResource;
import com.vaadin.server.UserError;
import com.vaadin.tests.components.TestBase;
import com.vaadin.ui.AbstractField;
import com.vaadin.ui.Button;
import com.vaadin.ui.Button.ClickEvent;
import com.vaadin.ui.Button.ClickListener;
import com.vaadin.ui.CheckBox;
import com.vaadin.ui.Component;
import com.vaadin.ui.CssLayout;
import com.vaadin.ui.FormLayout;
import com.vaadin.ui.GridLayout;
import com.vaadin.ui.HorizontalLayout;
import com.vaadin.ui.Layout;
import com.vaadin.ui.NativeButton;
import com.vaadin.ui.NativeSelect;
import com.vaadin.ui.TextField;
import com.vaadin.ui.VerticalLayout;
public class CaptionsInLayouts extends TestBase {
private static final Object CAPTION = "CAPTION";
private static final Object CLASS = "C";
private static final Object WIDTH = "W";
private NativeSelect layoutSelect;
private Layout layout;
private VerticalLayout verticalLayout;
private HorizontalLayout horizontalLayout;
private GridLayout gridLayout;
private FormLayout formLayout;
private List<AbstractField<?>> components = new ArrayList<AbstractField<?>>();
private CssLayout cssLayout;
private HorizontalLayout layoutParent = new HorizontalLayout();
@Override
protected void setup() {
// setTheme("tests-tickets");
addComponent(createLayoutSelect());
addComponent(toggleRequired());
// addComponent(toggleCaptions());
addComponent(toggleError());
addComponent(toggleIcon());
addComponent(addCaptionText());
layoutParent.addComponent(new NativeButton("Button right of layout"));
addComponent(layoutParent);
addComponent(new NativeButton("Button below layout"));
createComponents();
layoutSelect.setValue(layoutSelect.getItemIds().iterator().next());
}
private Component addCaptionText() {
Button b = new Button("Add caption text");
b.addListener(new ClickListener() {
@Override
public void buttonClick(ClickEvent event) {
prependCaptions("a");
}
});
return b;
}
protected void prependCaptions(String prepend) {
for (AbstractField<?> c : components) {
c.setCaption(prepend + c.getCaption());
}
}
private Component toggleRequired() {
CheckBox requiredToggle = new CheckBox();
requiredToggle.setImmediate(true);
requiredToggle.setCaption("Required");
requiredToggle.addListener(new ValueChangeListener() {
@Override
public void valueChange(ValueChangeEvent event) {
setRequired((Boolean) event.getProperty().getValue());
}
});
return requiredToggle;
}
private Component toggleIcon() {
CheckBox iconToggle = new CheckBox();
iconToggle.setImmediate(true);
iconToggle.setCaption("Icons");
iconToggle.addListener(new ValueChangeListener() {
@Override
public void valueChange(ValueChangeEvent event) {
setIcon((Boolean) event.getProperty().getValue());
}
});
return iconToggle;
}
protected void setRequired(boolean value) {
for (AbstractField<?> c : components) {
c.setRequired(value);
}
}
protected void setIcon(boolean value) {
for (AbstractField<?> c : components) {
if (!value) {
c.setIcon(null);
} else {
c.setIcon(new ThemeResource("../runo/icons/16/ok.png"));
}
}
}
private Component toggleError() {
CheckBox errorToggle = new CheckBox();
errorToggle.setImmediate(true);
errorToggle.setCaption("Error");
errorToggle.addListener(new ValueChangeListener() {
@Override
public void valueChange(ValueChangeEvent event) {
setError((Boolean) event.getProperty().getValue());
}
});
return errorToggle;
}
protected void setError(boolean value) {
for (AbstractField<?> c : components) {
if (value) {
c.setComponentError(new UserError("error"));
} else {
c.setComponentError(null);
}
}
}
private void createComponents() {
TextField tfUndefWide = new TextField(
"Undefined wide text field with a very long caption, longer than the field and the layout. Lorem ipsum dolor sit amet.");
TextField tf100pxWide = new TextField(
"100 px wide text field with a very long caption, longer than 100px.");
tf100pxWide.setWidth("100px");
TextField tf500pxWide = new TextField(
"500 px wide text field with a very long caption, longer than 500px. Lorem ipsum dolor sit amet, consectetur adipiscing elit.");
tf500pxWide.setWidth("500px");
components.add(tfUndefWide);
components.add(tf100pxWide);
components.add(tf500pxWide);
}
private void setLayout(Layout newLayout) {
if (layout == null) {
layoutParent.addComponent(newLayout, 0);
} else {
layoutParent.replaceComponent(layout, newLayout);
}
layout = newLayout;
for (Component c : components) {
if (c.getParent() != layout) {
layout.addComponent(c);
}
}
}
private Layout getLayout(String caption,
Class<? extends Layout> layoutClass, String width) {
Layout l;
if (layoutClass == VerticalLayout.class) {
if (verticalLayout == null) {
verticalLayout = new VerticalLayout();
verticalLayout.setStyleName("borders");
}
l = verticalLayout;
} else if (layoutClass == HorizontalLayout.class) {
if (horizontalLayout == null) {
horizontalLayout = new HorizontalLayout();
horizontalLayout.setStyleName("borders");
}
l = horizontalLayout;
} else if (layoutClass == GridLayout.class) {
if (gridLayout == null) {
gridLayout = new GridLayout();
gridLayout.setStyleName("borders");
}
l = gridLayout;
} else if (layoutClass == CssLayout.class) {
if (cssLayout == null) {
cssLayout = new CssLayout();
cssLayout.setStyleName("borders");
}
l = cssLayout;
} else if (layoutClass == FormLayout.class) {
if (formLayout == null) {
formLayout = new FormLayout();
formLayout.setStyleName("borders");
}
l = formLayout;
} else {
return null;
}
l.setCaption(caption);
if (width.equals("auto")) {
width = null;
}
l.setWidth(width);
// addComponent(l);
return l;
}
private Component createLayoutSelect() {
layoutSelect = new NativeSelect("Layout");
layoutSelect.addContainerProperty(CAPTION, String.class, "");
layoutSelect.addContainerProperty(CLASS, Class.class, "");
layoutSelect.addContainerProperty(WIDTH, String.class, "");
layoutSelect.setItemCaptionPropertyId(CAPTION);
layoutSelect.setNullSelectionAllowed(false);
for (Class<?> cls : new Class[] { HorizontalLayout.class,
VerticalLayout.class, GridLayout.class, CssLayout.class,
FormLayout.class }) {
for (String width : new String[] { "400px", "auto" }) {
Object id = layoutSelect.addItem();
Item i = layoutSelect.getItem(id);
i.getItemProperty(CAPTION).setValue(
cls.getSimpleName() + ", " + width);
i.getItemProperty(CLASS).setValue(cls);
i.getItemProperty(WIDTH).setValue(width);
}
}
layoutSelect.setImmediate(true);
layoutSelect.addListener(new ValueChangeListener() {
@Override
@SuppressWarnings("unchecked")
public void valueChange(ValueChangeEvent event) {
Item i = layoutSelect.getItem(event.getProperty().getValue());
setLayout(getLayout((String) i.getItemProperty(CAPTION)
.getValue(), (Class<? extends Layout>) i
.getItemProperty(CLASS).getValue(), (String) i
.getItemProperty(WIDTH).getValue()));
}
});
return layoutSelect;
}
@Override
protected String getDescription() {
return "Tests what happens when the caption changes in various layouts. Behavior should be consistent.";
}
@Override
protected Integer getTicketNumber() {
return 5424;
}
}
|