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
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
|
package com.itmill.toolkit.demo.featurebrowser;
import java.util.HashMap;
import com.itmill.toolkit.data.Item;
import com.itmill.toolkit.data.Property;
import com.itmill.toolkit.data.Property.ValueChangeEvent;
import com.itmill.toolkit.data.util.HierarchicalContainer;
import com.itmill.toolkit.data.util.IndexedContainer;
import com.itmill.toolkit.terminal.ExternalResource;
import com.itmill.toolkit.terminal.Sizeable;
import com.itmill.toolkit.ui.Button;
import com.itmill.toolkit.ui.Component;
import com.itmill.toolkit.ui.ExpandLayout;
import com.itmill.toolkit.ui.Label;
import com.itmill.toolkit.ui.Layout;
import com.itmill.toolkit.ui.OrderedLayout;
import com.itmill.toolkit.ui.Select;
import com.itmill.toolkit.ui.SplitPanel;
import com.itmill.toolkit.ui.TabSheet;
import com.itmill.toolkit.ui.Table;
import com.itmill.toolkit.ui.Tree;
import com.itmill.toolkit.ui.Window;
import com.itmill.toolkit.ui.Button.ClickEvent;
/**
*
* @author IT Mill Ltd.
* @see com.itmill.toolkit.ui.Window
*/
public class FeatureBrowser extends com.itmill.toolkit.Application implements
Select.ValueChangeListener {
private static final Object PROPERTY_ID_CATEGORY = "Category";
private static final Object PROPERTY_ID_NAME = "Name";
private static final Object PROPERTY_ID_DESC = "Description";
private static final Object PROPERTY_ID_CLASS = "Class";
private static final Object PROPERTY_ID_VIEWED = "Viewed";
private Tree tree;
private Table table;
private TabSheet ts;
private HashMap components = new HashMap();
// category, name, desc, class, viewed
private static final Object[][] demos = new Object[][] {
// START
// Intro
{ "Intro", "About", "About this demo", Button.class, Boolean.FALSE },
// Windowing
{ "Intro", "Windowing", "About windowing", WindowingExample.class,
Boolean.FALSE },
// Basic: Labels
{ "Basic", "Labels", "Some variations of Labels", Button.class,
Boolean.FALSE },
// Basic: Buttons
{ "Basic", "Buttons and links",
"Some variations of Buttons and Links", Button.class,
Boolean.FALSE },
// Basic: Fields
{ "Basic", "User input", "TextFields, DateFields, and such",
Button.class, Boolean.FALSE },
// Basic: Selects
{ "Basic", "Choices, choices", "Some variations of simple selects",
Button.class, Boolean.FALSE },
// Organizing: ComboBox
{ "Organizing", "ComboBox", "ComboBox - the swiss army select",
Button.class, Boolean.FALSE },
// Organizing: Table
{ "Organizing", "Table", "A dynamic Table with bells and whistles",
Button.class, Boolean.FALSE },
// Organizing: Tree
{ "Organizing", "Tree", "Some variations of Buttons and Links",
Button.class, Boolean.FALSE },
// Misc: Notifications
{ "Misc", "Notifications", "Notifications can improve usability",
NotificationExample.class, Boolean.FALSE },
// Misc: Caching
{ "Misc", "Client caching", "A simple demo of client-side caching",
ClientCachingExample.class, Boolean.FALSE },
// Misc: Embedded
{ "Misc", "Embedding",
"You can embed resources - another site in this case",
EmbeddedBrowserExample.class, Boolean.FALSE },
// END
};
public void init() {
// Create new window for the application and give the window a visible.
Window main = new Window("IT Mill Toolkit 5");
// set as main window
setMainWindow(main);
SplitPanel split = new SplitPanel(SplitPanel.ORIENTATION_HORIZONTAL);
split.setSplitPosition(200, Sizeable.UNITS_PIXELS);
main.setLayout(split);
HashMap sectionIds = new HashMap();
HierarchicalContainer container = createContainer();
Object rootId = container.addItem();
Item item = container.getItem(rootId);
Property p = item.getItemProperty(PROPERTY_ID_NAME);
p.setValue("All");
for (int i = 0; i < demos.length; i++) {
Object[] demo = demos[i];
String section = (String) demo[0];
Object sectionId;
if (sectionIds.containsKey(section)) {
sectionId = sectionIds.get(section);
} else {
sectionId = container.addItem();
sectionIds.put(section, sectionId);
container.setParent(sectionId, rootId);
item = container.getItem(sectionId);
p = item.getItemProperty(PROPERTY_ID_NAME);
p.setValue(section);
}
Object id = container.addItem();
container.setParent(id, sectionId);
initItem(container.getItem(id), demo);
}
tree = new Tree();
tree.setSelectable(true);
tree.setMultiSelect(false);
tree.setNullSelectionAllowed(false);
tree.setContainerDataSource(container);
tree.setItemCaptionMode(Tree.ITEM_CAPTION_MODE_PROPERTY);
tree.setItemCaptionPropertyId(PROPERTY_ID_NAME);
tree.addListener(this);
tree.setImmediate(true);
tree.expandItemsRecursively(rootId);
split.addComponent(tree);
SplitPanel split2 = new SplitPanel();
split2.setSplitPosition(200, Sizeable.UNITS_PIXELS);
split.addComponent(split2);
table = new Table();
table.setSizeFull();
table.setColumnReorderingAllowed(true);
table.setColumnCollapsingAllowed(true);
table.setSelectable(true);
table.setMultiSelect(false);
table.setNullSelectionAllowed(false);
try {
table.setContainerDataSource((IndexedContainer) container.clone());
} catch (Exception e) {
e.printStackTrace(System.err);
}
table.addListener(this);
table.setImmediate(true);
split2.addComponent(table);
ExpandLayout exp = new ExpandLayout();
exp.setMargin(true);
split2.addComponent(exp);
OrderedLayout wbLayout = new OrderedLayout(
OrderedLayout.ORIENTATION_HORIZONTAL);
wbLayout.addComponent(new Button("Open in popup window",
new Button.ClickListener() {
public void buttonClick(ClickEvent event) {
Component component = (Component) ts
.getComponentIterator().next();
String caption = ts.getTabCaption(component);
try {
component = (Component) component.getClass()
.newInstance();
} catch (Exception e) {
// Could not create
return;
}
Window w = new Window(caption);
if (Layout.class.isAssignableFrom(component.getClass())) {
w.setLayout((Layout) component);
} else {
w.getLayout().setSizeFull();
w.addComponent(component);
}
getMainWindow().addWindow(w);
}
}));
wbLayout.addComponent(new Button("Open in native window",
new Button.ClickListener() {
public void buttonClick(ClickEvent event) {
Component component = (Component) ts
.getComponentIterator().next();
String caption = ts.getTabCaption(component);
Window w = getWindow(caption);
if (w == null) {
try {
component = (Component) component.getClass()
.newInstance();
} catch (Exception e) {
// Could not create
return;
}
w = new Window(caption);
w.setName(caption);
if (Layout.class.isAssignableFrom(component
.getClass())) {
w.setLayout((Layout) component);
} else {
w.getLayout().setSizeFull();
w.addComponent(component);
}
addWindow(w);
}
getMainWindow().open(new ExternalResource(w.getURL()),
caption);
}
}));
exp.addComponent(wbLayout);
exp.setComponentAlignment(wbLayout, exp.ALIGNMENT_RIGHT,
exp.ALIGNMENT_TOP);
ts = new TabSheet();
ts.setSizeFull();
ts.addTab(new Label(
"Choose demo (Only Notification and CliensSideCaching yet"),
"Demo", null);
exp.addComponent(ts);
exp.expand(ts);
Label status = new Label("Copyright IT Mill 2007");
exp.addComponent(status);
exp.setComponentAlignment(status, exp.ALIGNMENT_RIGHT,
exp.ALIGNMENT_VERTICAL_CENTER);
// select initial section ("All")
tree.setValue(rootId);
}
private void initItem(Item item, Object[] data) {
int p = 0;
Property prop = item.getItemProperty(PROPERTY_ID_CATEGORY);
prop.setValue(data[p++]);
prop = item.getItemProperty(PROPERTY_ID_NAME);
prop.setValue(data[p++]);
prop = item.getItemProperty(PROPERTY_ID_DESC);
prop.setValue(data[p++]);
prop = item.getItemProperty(PROPERTY_ID_CLASS);
prop.setValue(data[p++]);
prop = item.getItemProperty(PROPERTY_ID_VIEWED);
prop.setValue(data[p++]);
}
private HierarchicalContainer createContainer() {
HierarchicalContainer c = new HierarchicalContainer();
c.addContainerProperty(PROPERTY_ID_CATEGORY, String.class, null);
c.addContainerProperty(PROPERTY_ID_NAME, String.class, "");
c.addContainerProperty(PROPERTY_ID_DESC, String.class, "");
c.addContainerProperty(PROPERTY_ID_CLASS, Class.class, Button.class);
c
.addContainerProperty(PROPERTY_ID_VIEWED, Boolean.class,
Boolean.FALSE);
return c;
}
public void valueChange(ValueChangeEvent event) {
if (event.getProperty() == tree) {
Object id = tree.getValue();
Item item = tree.getItem(id);
String section;
if (tree.isRoot(id)) {
section = ""; // show all sections
} else if (tree.hasChildren(id)) {
section = (String) item.getItemProperty(PROPERTY_ID_NAME)
.getValue();
} else {
section = (String) item.getItemProperty(PROPERTY_ID_CATEGORY)
.getValue();
}
table.setValue(null);
IndexedContainer c = (IndexedContainer) table
.getContainerDataSource();
c.removeAllContainerFilters();
if (section != null) {
c
.addContainerFilter(PROPERTY_ID_CATEGORY, section,
false, true);
}
if (!tree.hasChildren(id)) {
table.setValue(id);
}
} else if (event.getProperty() == table) {
if (table.getValue() != null) {
table.removeListener(this);
tree.setValue(table.getValue());
table.addListener(this);
Item item = table.getItem(table.getValue());
Class c = (Class) item.getItemProperty(PROPERTY_ID_CLASS)
.getValue();
Component component = getComponent(c);
if (component != null) {
String caption = (String) item.getItemProperty(
PROPERTY_ID_NAME).getValue();
ts.removeAllComponents();
ts.addTab(component, caption, null);
}
}
}
}
private Component getComponent(Class componentClass) {
if (!components.containsKey(componentClass)) {
try {
Component c = (Component) componentClass.newInstance();
components.put(componentClass, c);
} catch (Exception e) {
return null;
}
}
return (Component) components.get(componentClass);
}
public class Dummy extends Label {
public Dummy() {
super("Dummy component");
}
}
}
|