blob: ba737f1df85063cecbe9947aa97137db7d649f1b (
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
|
package com.vaadin.tests.components.tabsheet;
import java.util.ArrayList;
import com.vaadin.event.FieldEvents.BlurEvent;
import com.vaadin.event.FieldEvents.BlurListener;
import com.vaadin.event.FieldEvents.FocusEvent;
import com.vaadin.event.FieldEvents.FocusListener;
import com.vaadin.tests.components.TestBase;
import com.vaadin.tests.util.Log;
import com.vaadin.ui.Button;
import com.vaadin.ui.Button.ClickEvent;
import com.vaadin.ui.Button.ClickListener;
import com.vaadin.ui.Component;
import com.vaadin.ui.Label;
import com.vaadin.ui.Layout;
import com.vaadin.ui.TabSheet;
import com.vaadin.ui.TabSheet.Tab;
import com.vaadin.ui.TextField;
import com.vaadin.ui.VerticalLayout;
public class TabKeyboardNavigation extends TestBase {
int index = 1;
ArrayList<Component> tabs = new ArrayList<Component>();
TabSheet ts = new TabSheet();
Log focusblur = new Log(10);
@Override
protected void setup() {
ts.setWidth("500px");
ts.setHeight("500px");
ts.addListener(new FocusListener() {
@Override
public void focus(FocusEvent event) {
focusblur.log("Tabsheet focused!");
}
});
ts.addListener(new BlurListener() {
@Override
public void blur(BlurEvent event) {
focusblur.log("Tabsheet blurred!");
}
});
for (int i = 0; i < 5; ++i) {
addTab();
}
Button addTab = new Button("Add a tab", new ClickListener() {
@Override
public void buttonClick(ClickEvent event) {
addTab();
}
});
Button focus = new Button("Focus tabsheet", new ClickListener() {
@Override
public void buttonClick(ClickEvent event) {
ts.focus();
}
});
addComponent(addTab);
addComponent(focus);
TextField tf = new TextField();
addComponent(tf);
addComponent(focusblur);
addComponent(ts);
tf = new TextField();
addComponent(tf);
}
@Override
protected String getDescription() {
return "The tab bar should be focusable and arrow keys should switch tabs. The del key should close a tab if closable.";
}
@Override
protected Integer getTicketNumber() {
return 5100;
}
private Tab addTab() {
Layout content = new VerticalLayout();
tabs.add(content);
content.addComponent(new Label("Tab " + index));
content.addComponent(new TextField());
Tab tab = ts.addTab(content, "Tab " + index, null);
if (index == 2) {
tab.setClosable(true);
}
if (index == 4) {
tab.setEnabled(false);
}
index++;
return tab;
}
}
|