Download
Getting Started
Members
Projects
Community
Marketplace
Events
Planet Eclipse
Newsletter
Videos
Participate
Report a Bug
Forums
Mailing Lists
Wiki
IRC
How to Contribute
Working Groups
Automotive
Internet of Things
LocationTech
Long-Term Support
PolarSys
Science
OpenMDM
More
Community
Marketplace
Events
Planet Eclipse
Newsletter
Videos
Participate
Report a Bug
Forums
Mailing Lists
Wiki
IRC
How to Contribute
Working Groups
Automotive
Internet of Things
LocationTech
Long-Term Support
PolarSys
Science
OpenMDM
Toggle navigation
Bugzilla – Attachment 76947 Details for
Bug 200964
Cshelp panel does not display in "Create New Test Recording" wizard
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Requests
|
Help
|
Log In
[x]
|
Terms of Use
|
Copyright Agent
Some Eclipse Foundation services are deprecated, or will be soon. Please ensure you've read
this important communication.
[patch]
org.eclipse.hyades.test.ui_defect_200964_patch.txt
org.eclipse.hyades.test.ui_defect_200964_patch.txt (text/plain), 2.37 KB, created by
Paul Slauenwhite
on 2007-08-24 14:55:09 EDT
(
hide
)
Description:
org.eclipse.hyades.test.ui_defect_200964_patch.txt
Filename:
MIME Type:
Creator:
Paul Slauenwhite
Created:
2007-08-24 14:55:09 EDT
Size:
2.37 KB
patch
obsolete
>### Eclipse Workspace Patch 1.0 >#P org.eclipse.hyades.test.ui >Index: src-recorder/org/eclipse/hyades/internal/execution/recorder/ui/actions/NewGenericRecordingAction.java >=================================================================== >RCS file: /cvsroot/tptp/test/org.eclipse.hyades.test.ui/src-recorder/org/eclipse/hyades/internal/execution/recorder/ui/actions/NewGenericRecordingAction.java,v >retrieving revision 1.6 >diff -u -r1.6 NewGenericRecordingAction.java >--- src-recorder/org/eclipse/hyades/internal/execution/recorder/ui/actions/NewGenericRecordingAction.java 2 May 2007 19:35:53 -0000 1.6 >+++ src-recorder/org/eclipse/hyades/internal/execution/recorder/ui/actions/NewGenericRecordingAction.java 24 Aug 2007 18:57:08 -0000 >@@ -22,10 +22,15 @@ > import org.eclipse.ui.IViewPart; > import org.eclipse.ui.IWorkbench; > import org.eclipse.ui.IWorkbenchWindow; >+import org.eclipse.ui.PlatformUI; > > /** >- * @author jnevicos >- * >+ * New generic recording action. >+ * >+ * @author Jeff Nevicosi >+ * @author Paul E. Slauenwhite >+ * @version August 24, 2007 >+ * @since October 28, 2005 > */ > public class NewGenericRecordingAction > extends Action >@@ -53,11 +58,25 @@ > */ > public void run() > { >- NewTestFromRecordingWizard wiz = new NewTestFromRecordingWizard(); >- wiz.init(getWorkbench(),getSelection()); >- WizardDialog wizDlg = new WizardDialog(getWorkbench().getActiveWorkbenchWindow().getShell(), >- wiz); >- wizDlg.open(); >+ >+ NewTestFromRecordingWizard wizard = new NewTestFromRecordingWizard(); >+ wizard.init(getWorkbench(),getSelection()); >+ >+ //Remove the 'Help' button for consistency (for example, use the circled '?' button): >+ wizard.setHelpAvailable(false); >+ >+ WizardDialog wizardDialog = new WizardDialog(getWorkbench().getActiveWorkbenchWindow().getShell(),wizard); >+ >+ //Ensure the context help is available for this wizard dialog: >+ wizardDialog.create(); >+ >+ //Set the size of the wizard dialog (500 x 500) for consistency with the 'File > New' wizard: >+ wizardDialog.getShell().setSize(Math.max(500, wizardDialog.getShell().getSize().x),500); >+ >+ //Set the context help of the wizard dialog for consistency with the 'File > New' wizard: >+ PlatformUI.getWorkbench().getHelpSystem().setHelp(wizardDialog.getShell(), (PlatformUI.PLUGIN_ID + ".new_wizard_context")); >+ >+ wizardDialog.open(); > } > > /* (non-Javadoc)
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Diff
View Attachment As Raw
Actions:
View
|
Diff
Attachments on
bug 200964
: 76947