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
|
/**
*
*/
package com.itmill.toolkit.tests;
import com.itmill.toolkit.ui.Button;
import com.itmill.toolkit.ui.CustomComponent;
import com.itmill.toolkit.ui.GridLayout;
import com.itmill.toolkit.ui.Label;
import com.itmill.toolkit.ui.OrderedLayout;
import com.itmill.toolkit.ui.Panel;
import com.itmill.toolkit.ui.Window;
import com.itmill.toolkit.ui.Button.ClickEvent;
/**
* @author marc
*
*/
public class TestComponentAddAndRecursion extends CustomComponent {
Panel p;
Panel p2;
Label l;
Label l2;
Panel p3;
public TestComponentAddAndRecursion() {
OrderedLayout main = new OrderedLayout();
setCompositionRoot(main);
l = new Label("A");
l2 = new Label("B");
p = new Panel("p");
p.addComponent(l);
p.addComponent(l2);
main.addComponent(p);
p2 = new Panel("p2");
p2.addComponent(l);
main.addComponent(p2);
p3 = new Panel("p3");
p2.addComponent(p3);
Button b = new Button("use gridlayout", new Button.ClickListener() {
public void buttonClick(ClickEvent event) {
p.setLayout(new GridLayout());
p2.setLayout(new GridLayout());
p3.setLayout(new GridLayout());
}
});
main.addComponent(b);
b = new Button("use orderedlayout", new Button.ClickListener() {
public void buttonClick(ClickEvent event) {
p.setLayout(new OrderedLayout());
p2.setLayout(new OrderedLayout());
p3.setLayout(new OrderedLayout());
}
});
main.addComponent(b);
b = new Button("move B", new Button.ClickListener() {
public void buttonClick(ClickEvent event) {
p2.addComponent(l2);
}
});
main.addComponent(b);
b = new Button("move p", new Button.ClickListener() {
public void buttonClick(ClickEvent event) {
p3.addComponent(p);
}
});
main.addComponent(b);
b = new Button("add to both", new Button.ClickListener() {
public void buttonClick(ClickEvent event) {
Label l = new Label("both");
p.addComponent(l);
p2.addComponent(l);
}
});
main.addComponent(b);
b = new Button("recurse", new Button.ClickListener() {
public void buttonClick(ClickEvent event) {
try {
p3.addComponent(p2);
getWindow().showNotification("ERROR",
"This should have failed",
Window.Notification.TYPE_ERROR_MESSAGE);
} catch (Exception e) {
getWindow().showNotification("OK", "threw, as expected",
Window.Notification.TYPE_ERROR_MESSAGE);
}
}
});
main.addComponent(b);
b = new Button("recurse2", new Button.ClickListener() {
public void buttonClick(ClickEvent event) {
Panel p = new Panel("dynamic");
p.addComponent(p2);
try {
p3.addComponent(p);
getWindow().showNotification("ERROR",
"This should have failed",
Window.Notification.TYPE_ERROR_MESSAGE);
} catch (Exception e) {
getWindow().showNotification("OK", "threw, as expected",
Window.Notification.TYPE_ERROR_MESSAGE);
}
}
});
main.addComponent(b);
/*
* And that's it! The framework will display the main window and its
* contents when the application is accessed with the terminal.
*/
}
}
|