blob: d4556024a9c6816065a198e39917dce8848594a2 (
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
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
|
package com.vaadin.tests;
import java.net.MalformedURLException;
import java.net.URL;
import com.vaadin.server.LegacyApplication;
import com.vaadin.shared.ui.ContentMode;
import com.vaadin.ui.Button;
import com.vaadin.ui.Button.ClickEvent;
import com.vaadin.ui.Label;
import com.vaadin.ui.LegacyWindow;
import com.vaadin.ui.VerticalLayout;
import com.vaadin.ui.Window;
public class TestForNativeWindowing extends LegacyApplication {
LegacyWindow main = new LegacyWindow("Windowing test");
@Override
public void init() {
setMainWindow(main);
main.addComponent(
new Button("Add new subwindow", event -> {
VerticalLayout layout = new VerticalLayout();
layout.setMargin(true);
final Window w = new Window(
"sw " + System.currentTimeMillis(), layout);
main.addWindow(w);
w.setPositionX(100);
w.setPositionY(100);
w.setWidth("200px");
w.setHeight("200px");
w.setWidth("100px");
w.setHeight("400px");
final Button closebutton = new Button(
"Close " + w.getCaption(),
clickEvent -> main.removeWindow(w));
layout.addComponent(closebutton);
layout.addComponent(new Label(
"<p>Lorem ipsum dolor sit amet.</p>"
+ "<p>Lorem ipsum dolor sit amet.</p>"
+ "<p>Lorem ipsum dolor sit amet.</p>"
+ "<p>Lorem ipsum dolor sit amet.</p>"
+ "<p>Lorem ipsum dolor sit amet.</p>"
+ "<p>Lorem ipsum dolor sit amet.</p>"
+ "<p>Lorem ipsum dolor sit amet.</p>"
+ "<p>Lorem ipsum dolor sit amet.</p>"
+ "<p>Lorem ipsum dolor sit amet.</p>"
+ "<p>Lorem ipsum dolor sit amet.</p>"
+ "<p>Lorem ipsum dolor sit amet.</p>"
+ "<p>Lorem ipsum dolor sit amet.</p>"
+ "<p>Lorem ipsum dolor sit amet.</p>"
+ "<p>Lorem ipsum dolor sit amet.</p>"
+ "<p>Lorem ipsum dolor sit amet.</p>"
+ "<p>Lorem ipsum dolor sit amet.</p>"
+ "<p>Lorem ipsum dolor sit amet.</p>"
+ "<p>Lorem ipsum dolor sit amet.</p>"
+ "<p>Lorem ipsum dolor sit amet.</p>"
+ "<p>Lorem ipsum dolor sit amet.</p>"
+ "<p>Lorem ipsum dolor sit amet.</p>"
+ "<p>Lorem ipsum dolor sit amet.</p>",
ContentMode.HTML));
}));
main.addComponent(new Button(
"Open a currently uncreated application level window",
event -> {
try {
main.open(new com.vaadin.server.ExternalResource(
new URL(getURL(), "mainwin-"
+ System.currentTimeMillis() + "/")),
null);
} catch (final MalformedURLException e) {
}
}));
main.addComponent(new Button(
"Commit (saves window state: size, place, scrollpos)"));
}
@Override
public LegacyWindow getWindow(String name) {
final LegacyWindow w = super.getWindow(name);
if (w != null) {
return w;
}
if (name != null && name.startsWith("mainwin-")) {
final String postfix = name.substring("mainwin-".length());
final LegacyWindow ww = new LegacyWindow("Window: " + postfix);
ww.setName(name);
ww.addComponent(new Label(
"This is a application-level window opened with name: "
+ name));
ww.addComponent(new Button("Click me", new Button.ClickListener() {
int state = 0;
@Override
public void buttonClick(ClickEvent event) {
ww.addComponent(new Label(
"Button clicked " + (++state) + " times"));
}
}));
addWindow(ww);
return ww;
}
return null;
}
}
|