|
From: Robert E. <sky...@us...> - 2006-04-17 08:54:32
|
Update of /cvsroot/jcommander/plugins/org.jcommander.ui.filepanel/src/org/jcommander/ui/filepanel/performers In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv31428/src/org/jcommander/ui/filepanel/performers Modified Files: Utils.java Log Message: Changed confirmation and perform dialog types to normal child window trims according to the discussions from feature request [1457808 ] "Common Dialog design rules" Index: Utils.java =================================================================== RCS file: /cvsroot/jcommander/plugins/org.jcommander.ui.filepanel/src/org/jcommander/ui/filepanel/performers/Utils.java,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -d -r1.5 -r1.6 *** Utils.java 13 Apr 2006 07:55:09 -0000 1.5 --- Utils.java 17 Apr 2006 08:54:28 -0000 1.6 *************** *** 21,26 **** */ public static Shell createOperationDialog(Shell parent, TabMediator mediator) { ! Shell tmpShell = new Shell(parent, SWT.TOOL | SWT.RESIZE | SWT.TITLE | SWT.CLOSE); ! // SWT.TITLE | SWT.CLOSE | SWT.MIN | SWT.MAX | SWT.BORDER | SWT.RESIZE); GridLayout layout = new GridLayout(); --- 21,27 ---- */ public static Shell createOperationDialog(Shell parent, TabMediator mediator) { ! Shell tmpShell = new Shell(parent, SWT.DIALOG_TRIM | SWT.RESIZE); ! // SWT.TOOL | SWT.RESIZE | SWT.TITLE | SWT.CLOSE); ! // SWT.TITLE | SWT.CLOSE | SWT.MIN | SWT.MAX | SWT.BORDER | SWT.RESIZE); GridLayout layout = new GridLayout(); |