tags:

views:

5

answers:

1

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