Is SWT capable of showing an NSSheet like Quaqua simulates it using Swing?
A:
One has to create the Dialog
with the option SWT.SHEET
, e.g.
FileDialog fileDialog = new FileDialog(shell, SWT.OPEN | SWT.SHEET);
mklhmnn
2010-10-30 15:35:39