blob: a7ca7b179fabf68b318451fd06273f57e4001c0d (
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
|
package com.vaadin.tests.tickets;
import com.vaadin.ui.Accordion;
import com.vaadin.ui.Label;
import com.vaadin.ui.Layout.MarginHandler;
import com.vaadin.ui.UI.LegacyWindow;
import com.vaadin.ui.TextArea;
import com.vaadin.ui.TextField;
public class Ticket2040 extends com.vaadin.Application.LegacyApplication {
TextField f = new TextField();
@Override
public void init() {
LegacyWindow main = new LegacyWindow();
setMainWindow(main);
main.getContent().setSizeFull();
((MarginHandler) main.getContent()).setMargin(true);
setTheme("tests-tickets");
Accordion ts;
ts = new Accordion();
ts.setSizeFull();
ts.setWidth("300px");
TextArea l = new TextArea("DSFS");
l.setRows(2);
l.setStyleName("red");
l.setSizeFull();
ts.addTab(l, "100% h component", null);
Label testContent = new Label(
"TabSheet by default uses caption, icon, errors etc. from Components. ");
testContent.setCaption("Introduction to test");
ts.addTab(testContent);
// main.addComponent(ts);
ts = new Accordion();
ts.setSizeFull();
ts.setHeight("200px");
ts.setWidth("300px");
l = new TextArea("DSFS");
l.setRows(2);
l.setStyleName("red");
l.setSizeFull();
ts.addTab(l, "200px h component", null);
testContent = new Label(
"TabSheet by default uses caption, icon, errors etc. from Components. ");
testContent.setCaption("Introduction to test");
ts.addTab(testContent);
main.addComponent(ts);
ts = new Accordion();
ts.setSizeFull();
ts.setHeight("50%");
ts.setWidth("300px");
l = new TextArea("DSFS");
l.setRows(2);
l.setStyleName("red");
l.setSizeFull();
ts.addTab(l, "50% h component", null);
testContent = new Label(
"TabSheet by default uses caption, icon, errors etc. from Components. ");
testContent.setCaption("Introduction to test");
ts.addTab(testContent);
// main.addComponent(ts);
}
}
|