Examples of SelectionButtonDialogField


Examples of org.eclipse.jdt.internal.ui.wizards.dialogfields.SelectionButtonDialogField

    private String fPreviousExternalLocation;

    private static final String DIALOGSTORE_LAST_EXTERNAL_LOC = JavaUI.ID_PLUGIN + ".last.external.project"; //$NON-NLS-1$

    public LocationGroup() {
      fUseDefaults = new SelectionButtonDialogField(SWT.CHECK);
      fUseDefaults.setDialogFieldListener(this);
      fUseDefaults.setLabelText(NewWizardMessages.NewJavaProjectWizardPageOne_LocationGroup_location_desc);

      fLocation = new StringButtonDialogField(this);
      fLocation.setDialogFieldListener(this);
View Full Code Here

Examples of org.eclipse.jdt.internal.ui.wizards.dialogfields.SelectionButtonDialogField

      public void dialogFieldChanged(DialogField field) {
        enableProjectSpecificSettings(((SelectionButtonDialogField) field).isSelected());
      }
    };

    useProjectSettingsButton = new SelectionButtonDialogField(SWT.CHECK);
    useProjectSettingsButton.setDialogFieldListener(listener);
    useProjectSettingsButton.setLabelText(NewSpringProjectWizardMessages.NewProjectPage_enableProjectSettings);
    useProjectSettingsButton.doFillIntoGrid(namespacesGroup, 1);
    LayoutUtil.setHorizontalGrabbing(useProjectSettingsButton.getSelectionButton(null));
View Full Code Here

Examples of org.eclipse.jdt.internal.ui.wizards.dialogfields.SelectionButtonDialogField

    private String fPreviousExternalLocation;

    private static final String DIALOGSTORE_LAST_EXTERNAL_LOC = JavaUI.ID_PLUGIN + ".last.external.project"; //$NON-NLS-1$

    public LocationGroup() {
      fWorkspaceRadio = new SelectionButtonDialogField(SWT.RADIO);
      fWorkspaceRadio.setDialogFieldListener(this);
      fWorkspaceRadio.setLabelText("Use &default location");

      fExternalRadio = new SelectionButtonDialogField(SWT.RADIO);
      fExternalRadio.setLabelText("Use &external location");

      fLocation = new StringButtonDialogField(this);
      fLocation.setDialogFieldListener(this);
      fLocation.setLabelText(NewWizardMessages.NewJavaProjectWizardPageOne_LocationGroup_locationLabel_desc);
View Full Code Here

Examples of org.eclipse.jdt.internal.ui.wizards.dialogfields.SelectionButtonDialogField

          enableProjectSpecificSettings(((SelectionButtonDialogField) field)
              .isSelected());
        }
      };

      fUseProjectSettings = new SelectionButtonDialogField(SWT.CHECK);
      fUseProjectSettings.setDialogFieldListener(listener);
      fUseProjectSettings
          .setLabelText("Enable pr&oject specific settings");
      fUseProjectSettings.doFillIntoGrid(composite, 1);
      LayoutUtil.setHorizontalGrabbing(fUseProjectSettings
View Full Code Here

Examples of org.eclipse.php.internal.ui.wizards.fields.SelectionButtonDialogField

          enableProjectSpecificSettings(((SelectionButtonDialogField) field)
              .isSelected());
        }
      };

      fUseProjectSettings = new SelectionButtonDialogField(SWT.CHECK);
      fUseProjectSettings.setDialogFieldListener(listener);
      fUseProjectSettings
          .setLabelText(PHPUIMessages.PropertyAndPreferencePage_useprojectsettings_label);
      fUseProjectSettings.doFillIntoGrid(composite, 1);
      LayoutUtil.setHorizontalGrabbing(fUseProjectSettings
View Full Code Here

Examples of org.eclipse.wb.internal.core.utils.dialogfields.SelectionButtonDialogField

      DialogFieldUtils.fillControls(this, m_packageField, COLUMNS, 60);
    }
    // entry point
    {
      new Label(this, SWT.NONE); // filler
      m_createEntryPointField = new SelectionButtonDialogField(SWT.CHECK);
      m_createEntryPointField.setLabelText("Create EntryPoint and public resources");
      m_createEntryPointField.setSelection(true);
      m_createEntryPointField.doFillIntoGrid(this, COLUMNS - 1);
      // use MVP
      {
        new Label(this, SWT.NONE); // filler
        m_createEntryPointMVPField = new SelectionButtonDialogField(SWT.CHECK);
        m_createEntryPointMVPField.setLabelText("Use MVP framework");
        m_createEntryPointMVPField.setSelection(false);
        //m_createEntryPointMVPField.doFillIntoGrid(this, COLUMNS - 1);
        GridDataFactory.create(m_createEntryPointMVPField.getSelectionButton(this)).spanH(
            COLUMNS - 1).grab().fill().indentH(10);
View Full Code Here

Examples of org.eclipse.wb.internal.core.utils.dialogfields.SelectionButtonDialogField

      DialogFieldUtils.fillControls(this, m_packageField, columns, 60);
    }
    // HTML package
    {
      new Label(this, SWT.NONE); // filler
      m_createHTMLField = new SelectionButtonDialogField(SWT.CHECK);
      m_createHTMLField.setLabelText("Create HTML file to allow visual design");
      m_createHTMLField.setSelection(true);
      m_createHTMLField.doFillIntoGrid(this, columns - 1);
    }
    // "server" package
    {
      new Label(this, SWT.NONE); // filler
      m_createServerPackageField = new SelectionButtonDialogField(SWT.CHECK);
      m_createServerPackageField.setLabelText("Create \"server\" package for RemoteService's");
      m_createServerPackageField.setSelection(true);
      m_createServerPackageField.doFillIntoGrid(this, columns - 1);
    }
    // description
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.