AWT / Swing允许显示应用程序模式(阻止整个应用程序)和父模式(仅阻止父项)对话框。如何使用SWT实现相同的目标?
答案 0 :(得分:22)
为了阻止整个应用程序,您可以使用样式Shell
创建对话框SWT.APPLICATION_MODAL
,打开它,然后抽取UI事件,直到shell被释放:
Display display = Display.getDefault();
Shell dialogShell = new Shell(display, SWT.APPLICATION_MODAL);
// populate dialogShell
dialogShell.open();
while (!dialogShell.isDisposed()) {
if (!display.readAndDispatch()) {
display.sleep();
}
}
如果您只想阻止对父项的输入,请尝试使用样式SWT.PRIMARY_MODAL
,尽管Javadocs指定(对于其他模态样式)这是一个提示;即,不同的SWT实现可能不会以相同的方式精确地处理它。同样,我不知道一个符合SWT.SYSTEM_MODAL
风格的实现。
更新:回答第一条评论
如果您同时打开两个或更多主要模态,则在模式关闭之前不能使用技巧来抽取事件,因为它们可以按任何顺序关闭。代码将运行,但在当前对话框关闭之后的while循环之后以及之后打开的所有其他此类对话框将继续执行。在这种情况下,我会在每个对话框上注册DisposeListener
以在关闭时获得回调。像这样:
void run() {
Display display = new Display();
Shell shell1 = openDocumentShell(display);
Shell shell2 = openDocumentShell(display);
// close both shells to exit
while (!shell1.isDisposed() || !shell2.isDisposed()) {
if (!display.readAndDispatch()) {
display.sleep();
}
}
display.dispose();
}
Shell openDocumentShell(final Display display) {
final Shell shell = new Shell(display, SWT.SHELL_TRIM);
shell.setLayout(new FillLayout());
Button button = new Button(shell, SWT.PUSH);
button.setText("Open Modal Dialog");
button.addSelectionListener(new SelectionAdapter() {
@Override
public void widgetSelected(SelectionEvent e) {
System.out.println("Button pressed, about to open modal dialog");
final Shell dialogShell = new Shell(shell, SWT.PRIMARY_MODAL | SWT.SHEET);
dialogShell.setLayout(new FillLayout());
Button closeButton = new Button(dialogShell, SWT.PUSH);
closeButton.setText("Close");
closeButton.addSelectionListener(new SelectionAdapter() {
@Override
public void widgetSelected(SelectionEvent e) {
dialogShell.dispose();
}
});
dialogShell.setDefaultButton(closeButton);
dialogShell.addDisposeListener(new DisposeListener() {
@Override
public void widgetDisposed(DisposeEvent e) {
System.out.println("Modal dialog closed");
}
});
dialogShell.pack();
dialogShell.open();
}
});
shell.pack();
shell.open();
return shell;
}