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.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.SelectedTabChangeEvent;
+import com.vaadin.ui.TabSheet.SelectedTabChangeListener;
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();
+ Label focusblur = new Label("No focus");
@Override
protected void setup() {
ts.setWidth("500px");
ts.setHeight("500px");
- for (int i = 0; i < 4; ++i) {
+ // ts.setTabIndex(0);
+
+ ts.addListener(new FocusListener() {
+ public void focus(FocusEvent event) {
+ focusblur.setValue("Tabsheet focused!");
+ }
+ });
+
+ ts.addListener(new BlurListener() {
+ public void blur(BlurEvent event) {
+ focusblur.setValue("Tabsheet blurred!");
+ }
+ });
+
+ ts.addListener(new SelectedTabChangeListener() {
+
+ public void selectedTabChange(SelectedTabChangeEvent event) {
+ // ts.setSelectedTab(tabs.get(Math.max(0,
+ // tabs.indexOf(ts.getSelectedTab()) - 1)));
+ }
+ });
+
+ for (int i = 0; i < 5; ++i) {
addTab();
}
- Button b = new Button("Add a tab", new Button.ClickListener() {
+
+ Button addTab = new Button("Add a tab", new ClickListener() {
public void buttonClick(ClickEvent event) {
addTab();
}
});
- addComponent(b);
- addComponent(new TextField());
+ Button focus = new Button("Focus tabsheet", new ClickListener() {
+ public void buttonClick(ClickEvent event) {
+ ts.focus();
+ }
+ });
+
+ addComponent(addTab);
+ addComponent(focus);
+
+ TextField tf = new TextField();
+ addComponent(tf);
+ addComponent(focusblur);
addComponent(ts);
- addComponent(new TextField());
+ tf = new TextField();
+ addComponent(tf);
}
@Override
protected String getDescription() {
- return "The tab bar should be focusable and arrow keys should switch tabs";
+ return "The tab bar should be focusable and arrow keys should switch tabs. The del key should close a tab if closable.";
}
@Override
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);
- tab.setClosable(true);
+ Tab tab = ts.addTab(content, "Tab " + index, null);
+ if (index == 2) {
+ tab.setClosable(true);
+ }
+ if (index == 4) {
+ tab.setEnabled(false);
+ }
+ index++;
return tab;
}
}