|
From: Matthias K <mat...@us...> - 2006-04-30 13:11:05
|
Update of /cvsroot/jcommander/plugins/org.jcommander.ui.filepanel/src/org/jcommander/ui/filepanel/actions In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv1394/src/org/jcommander/ui/filepanel/actions Modified Files: SimpleOpenURLAction.java Log Message: further implementation of the move to JFace Dialogs: - deleting files is now a job, thus the DeleteProgressDialog is replaced by the standard job progress dialog - file questions (overwrite, read error, etc) use now JFace dialogs, too. - make directory dialog is now a JFace dialog. Index: SimpleOpenURLAction.java =================================================================== RCS file: /cvsroot/jcommander/plugins/org.jcommander.ui.filepanel/src/org/jcommander/ui/filepanel/actions/SimpleOpenURLAction.java,v retrieving revision 1.6 retrieving revision 1.7 diff -C2 -d -r1.6 -r1.7 *** SimpleOpenURLAction.java 26 Apr 2006 16:39:19 -0000 1.6 --- SimpleOpenURLAction.java 30 Apr 2006 13:10:55 -0000 1.7 *************** *** 68,71 **** --- 68,72 ---- protected EnterTargetDialog(Shell shell) { super(shell); + //setShellStyle(SWT.DIALOG_TRIM|SWT.MODELESS); } *************** *** 262,267 **** --- 263,270 ---- public void run(IAction action) { EnterTargetDialog dialog = new EnterTargetDialog(window.getShell()); + // dialog.setBlockOnOpen(false); dialog.setHelpAvailable(true); dialog.create(); + // dialog.setBlockOnOpen(false); PlatformUI.getWorkbench().getHelpSystem().setHelp(window.getShell(), "org.jcommander.ui.help.VFS"); dialog.open(); |