blob: a6ef9be77a8315cc50941f79a079aea5e621035c (
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
|
package com.vaadin.tests.tickets;
import com.vaadin.LegacyApplication;
import com.vaadin.ui.Button;
import com.vaadin.ui.Button.ClickEvent;
import com.vaadin.ui.Button.ClickListener;
import com.vaadin.ui.UI.LegacyWindow;
import com.vaadin.ui.VerticalLayout;
import com.vaadin.ui.Window;
public class Ticket2406 extends LegacyApplication {
private Window w;
@Override
public void init() {
LegacyWindow w = new LegacyWindow(getClass().getSimpleName());
setMainWindow(w);
// setTheme("tests-tickets");
createUI((VerticalLayout) w.getContent());
}
private void createUI(VerticalLayout layout) {
w = new Window("A sub window");
w.setSizeUndefined();
getMainWindow().addWindow(w);
VerticalLayout l = new VerticalLayout();
l.setSizeFull();
w.setContent(l);
Button b = new Button("Button 1");
b.setSizeFull();
b.addListener(new ClickListener() {
@Override
public void buttonClick(ClickEvent event) {
w.setHeight("200px");
}
});
l.addComponent(b);
for (int i = 0; i < 5; i++) {
b = new Button("Button number " + (i + 2));
b.setSizeFull();
l.addComponent(b);
}
}
}
|