Java Code Examples for com.intellij.ide.util.projectWizard.SettingsStep#addSettingsComponent()
The following examples show how to use
com.intellij.ide.util.projectWizard.SettingsStep#addSettingsComponent() .
You can vote up the ones you like or vote down the ones you don't like,
and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example 1
Source File: FlutterCreateAdditionalSettingsFields.java From flutter-intellij with BSD 3-Clause "New" or "Revised" License | 6 votes |
public void addSettingsFields(@NotNull SettingsStep settingsStep) { settingsStep.addSettingsField(FlutterBundle.message("flutter.module.create.settings.description.label"), descriptionField); settingsStep.addSettingsField(FlutterBundle.message("flutter.module.create.settings.type.label"), projectTypeForm.getComponent()); settingsStep.addSettingsField(FlutterBundle.message("flutter.module.create.settings.radios.org.label"), orgField); settingsStep.addSettingsField(FlutterBundle.message("flutter.module.create.settings.radios.android.label"), androidLanguageRadios.getComponent()); settingsStep.addSettingsField(FlutterBundle.message("flutter.module.create.settings.radios.ios.label"), iosLanguageRadios.getComponent()); // WebStorm has a smaller area for the wizard UI. if (!PlatformUtils.isWebStorm()) { settingsStep.addSettingsComponent(new SettingsHelpForm().getComponent()); } settingsStep.addSettingsComponent(createParams.setInitialValues().getComponent()); }
Example 2
Source File: FlutterCreateAdditionalSettingsFields.java From flutter-intellij with BSD 3-Clause "New" or "Revised" License | 6 votes |
public void addSettingsFields(@NotNull SettingsStep settingsStep) { settingsStep.addSettingsField(FlutterBundle.message("flutter.module.create.settings.description.label"), descriptionField); settingsStep.addSettingsField(FlutterBundle.message("flutter.module.create.settings.type.label"), projectTypeForm.getComponent()); settingsStep.addSettingsField(FlutterBundle.message("flutter.module.create.settings.radios.org.label"), orgField); settingsStep.addSettingsField(FlutterBundle.message("flutter.module.create.settings.radios.android.label"), androidLanguageRadios.getComponent()); settingsStep.addSettingsField(FlutterBundle.message("flutter.module.create.settings.radios.ios.label"), iosLanguageRadios.getComponent()); // WebStorm has a smaller area for the wizard UI. if (!PlatformUtils.isWebStorm()) { settingsStep.addSettingsComponent(new SettingsHelpForm().getComponent()); } settingsStep.addSettingsComponent(createParams.setInitialValues().getComponent()); }
Example 3
Source File: VueGeneratorPeer.java From vue-for-idea with BSD 3-Clause "New" or "Revised" License | 4 votes |
@Override public void buildUI(@NotNull SettingsStep settingsStep) { settingsStep.addExpertField(VueBundle.message("vue.sdk.path"),vuePathTextWithBrowse); settingsStep.addExpertField(VueBundle.message("node.path"),nodePathTextWithBrowse); settingsStep.addSettingsComponent(myTemplatesPanel); }
Example 4
Source File: ShopwareInstallerGeneratorPeer.java From idea-php-shopware-plugin with MIT License | 4 votes |
@Override public void buildUI(@NotNull SettingsStep settingsStep) { settingsStep.addSettingsComponent(symfonyInstallerForm.getContentPane()); }
Example 5
Source File: SymfonyInstallerGeneratorPeer.java From idea-php-symfony2-plugin with MIT License | 4 votes |
@Override public void buildUI(@NotNull SettingsStep settingsStep) { settingsStep.addSettingsComponent(symfonyInstallerForm.getContentPane()); }