private EmulatorConfig config;
public DetailInfoDialog( Shell parent, String emulatorName, SocketCommunicator communicator, EmulatorConfig config ) {
- super( parent, "Detail Info" + " - " + emulatorName, SWT.DIALOG_TRIM | SWT.APPLICATION_MODAL | SWT.RESIZE );
+ super( parent, "Detail Info" + " - " + emulatorName, SWT.DIALOG_TRIM | SWT.APPLICATION_MODAL | SWT.RESIZE
+ | SWT.MAX );
this.communicator = communicator;
this.config = config;
}
Composite composite = new Composite( parent, SWT.NONE );
composite.setLayout( new FillLayout() );
- Table table = new Table( composite, SWT.BORDER | SWT.MULTI );
+ Table table = new Table( composite, SWT.BORDER | SWT.MULTI | SWT.FULL_SELECTION );
table.setHeaderVisible( true );
table.setLinesVisible( true );
private Logger logger = SkinLogger.getSkinLogger( LicenseDialog.class ).getLogger();
public LicenseDialog( Shell parent, String title ) {
- super( parent, title, SWT.DIALOG_TRIM | SWT.APPLICATION_MODAL | SWT.RESIZE );
+ super( parent, title, SWT.DIALOG_TRIM | SWT.APPLICATION_MODAL | SWT.RESIZE | SWT.MAX );
}
@Override
this.config = config;
this.needToStoreRotatedImage = true;
- shell = new Shell( Display.getDefault(), SWT.DIALOG_TRIM | SWT.RESIZE );
+ shell = new Shell( Display.getDefault(), SWT.DIALOG_TRIM | SWT.RESIZE | SWT.MAX );
shell.setText( "Screen Shot - " + SkinUtil.makeEmulatorName( config ) );
shell.setLocation( parent.getLocation().x + parent.getSize().x + 30, parent.getLocation().y );
shell.addListener( SWT.Close, new Listener() {