Composite
を使用して、のタブ順序を定義できますComposite#setTabList(Control[])
。
Button
これは、 sの間をタブで移動し、 sone
と:をthree
無視する小さな例です。Button
two
four
public static void main(String[] args) {
Display display = new Display();
Shell shell = new Shell(display);
shell.setLayout(new GridLayout(1, false));
Composite content = new Composite(shell, SWT.NONE);
content.setLayout(new GridLayout(2, true));
content.setLayoutData(new GridData(SWT.FILL, SWT.FILL, true, true));
final Button one = new Button(content, SWT.PUSH);
one.setText("One");
final Button two = new Button(content, SWT.PUSH);
two.setText("Two");
final Button three = new Button(content, SWT.PUSH);
three.setText("Three");
final Button four = new Button(content, SWT.PUSH);
four.setText("Four");
Control[] controls = new Control[] {one, three};
content.setTabList(controls);
shell.pack();
shell.open();
while (!shell.isDisposed()) {
if (!display.readAndDispatch()) {
display.sleep();
}
}
display.dispose();
}
編集:上記のコードは、要件に合わせて簡単に変換できます。Composite
sはフォーカス可能ではないため、自分でテストすることはできませんが、次のアイデアを得る必要があります。
mainPane.setTabList(new Control[] {customPanel1, customPanel2, customPanel3 });
customPanel1.setTabList(new Control[] {});
customPanel2.setTabList(new Control[] {});
customPanel3.setTabList(new Control[] {});