|
Lines 23-28
Link Here
|
| 23 |
import org.eclipse.hyades.test.ui.TestUIImages; |
23 |
import org.eclipse.hyades.test.ui.TestUIImages; |
| 24 |
import org.eclipse.hyades.test.ui.UiPlugin; |
24 |
import org.eclipse.hyades.test.ui.UiPlugin; |
| 25 |
import org.eclipse.hyades.test.ui.internal.resources.UiPluginResourceBundle; |
25 |
import org.eclipse.hyades.test.ui.internal.resources.UiPluginResourceBundle; |
|
|
26 |
import org.eclipse.hyades.test.ui.internal.util.ContextIds; |
| 26 |
import org.eclipse.jface.preference.IPreferenceStore; |
27 |
import org.eclipse.jface.preference.IPreferenceStore; |
| 27 |
import org.eclipse.jface.resource.ImageDescriptor; |
28 |
import org.eclipse.jface.resource.ImageDescriptor; |
| 28 |
import org.eclipse.jface.wizard.WizardPage; |
29 |
import org.eclipse.jface.wizard.WizardPage; |
|
Lines 43-48
Link Here
|
| 43 |
import org.eclipse.swt.widgets.TableItem; |
44 |
import org.eclipse.swt.widgets.TableItem; |
| 44 |
import org.eclipse.tptp.test.provisional.recorder.ui.wizards.IGenericRecorderWizard; |
45 |
import org.eclipse.tptp.test.provisional.recorder.ui.wizards.IGenericRecorderWizard; |
| 45 |
import org.eclipse.tptp.test.provisional.recorder.ui.wizards.IRecorderPageProvider; |
46 |
import org.eclipse.tptp.test.provisional.recorder.ui.wizards.IRecorderPageProvider; |
|
|
47 |
import org.eclipse.ui.PlatformUI; |
| 46 |
|
48 |
|
| 47 |
/** |
49 |
/** |
| 48 |
* The first page of the Generic Recorder Framework (GRF) wizard. |
50 |
* The first page of the Generic Recorder Framework (GRF) wizard. |
|
Lines 55-61
Link Here
|
| 55 |
* |
57 |
* |
| 56 |
* @author Jeffery Nevicosi |
58 |
* @author Jeffery Nevicosi |
| 57 |
* @author Paul E. Slauenwhite |
59 |
* @author Paul E. Slauenwhite |
| 58 |
* @version March 7, 2008 |
60 |
* @version May 16, 2008 |
| 59 |
* @since September 23, 2005 |
61 |
* @since September 23, 2005 |
| 60 |
*/ |
62 |
*/ |
| 61 |
public class NewRecordingWizardPage extends WizardPage implements |
63 |
public class NewRecordingWizardPage extends WizardPage implements |
|
Lines 106-111
Link Here
|
| 106 |
* @see org.eclipse.jface.dialogs.IDialogPage#createControl(org.eclipse.swt.widgets.Composite) |
108 |
* @see org.eclipse.jface.dialogs.IDialogPage#createControl(org.eclipse.swt.widgets.Composite) |
| 107 |
*/ |
109 |
*/ |
| 108 |
public void createControl(Composite parent) { |
110 |
public void createControl(Composite parent) { |
|
|
111 |
|
| 112 |
//Set the context sensitive help for the wizard page: |
| 113 |
PlatformUI.getWorkbench().getHelpSystem().setHelp(parent, UiPlugin.getID() + ContextIds.REC_WIZ); |
| 114 |
|
| 109 |
setPageComplete(false); |
115 |
setPageComplete(false); |
| 110 |
setDescription(UiPluginResourceBundle.NewRecordingWizardPage_DESCRIPTION); |
116 |
setDescription(UiPluginResourceBundle.NewRecordingWizardPage_DESCRIPTION); |
| 111 |
Composite composite = new Composite(parent, SWT.NULL); |
117 |
Composite composite = new Composite(parent, SWT.NULL); |