/* * Copyright 2000-2013 JetBrains s.r.o. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.intellij.openapi.externalSystem.service.project.wizard; import com.intellij.ide.util.projectWizard.ModuleWizardStep; import com.intellij.ide.util.projectWizard.WizardContext; import com.intellij.openapi.externalSystem.service.settings.AbstractExternalProjectSettingsControl; import com.intellij.openapi.externalSystem.settings.ExternalProjectSettings; import com.intellij.openapi.externalSystem.util.ExternalSystemUiUtil; import com.intellij.openapi.externalSystem.util.PaintAwarePanel; import com.intellij.openapi.options.ConfigurationException; import com.intellij.openapi.util.Key; import org.jetbrains.annotations.NotNull; import org.jetbrains.annotations.Nullable; import javax.swing.*; /** * @author Denis Zhdanov * @since 6/26/13 1:38 PM */ public class ExternalModuleSettingsStep<S extends ExternalProjectSettings> extends ModuleWizardStep { public static final Key<Boolean> SKIP_STEP_KEY = Key.create("SKIP_STEP_KEY"); @NotNull private final AbstractExternalModuleBuilder<S> myExternalModuleBuilder; @NotNull private final AbstractExternalProjectSettingsControl<S> myControl; @Nullable private final WizardContext myContext; @Nullable private PaintAwarePanel myComponent; public ExternalModuleSettingsStep(@Nullable WizardContext context, @NotNull AbstractExternalModuleBuilder<S> externalModuleBuilder, @NotNull AbstractExternalProjectSettingsControl<S> control) { myExternalModuleBuilder = externalModuleBuilder; myControl = control; myContext = context; } public ExternalModuleSettingsStep(@NotNull AbstractExternalModuleBuilder<S> externalModuleBuilder, @NotNull AbstractExternalProjectSettingsControl<S> control) { this(null, externalModuleBuilder, control); } @Override public JComponent getComponent() { PaintAwarePanel result = myComponent; if (result == null) { result = new PaintAwarePanel(); myControl.fillUi(result, 0); myControl.reset(true); ExternalSystemUiUtil.fillBottom(result); myComponent = result; } return result; } @Override public boolean validate() throws ConfigurationException { if (!super.validate()) { return false; } return myControl.validate(myExternalModuleBuilder.getExternalProjectSettings()); } @Override public void updateDataModel() { myControl.apply(myExternalModuleBuilder.getExternalProjectSettings()); } @Override public void updateStep() { String contentPath = myExternalModuleBuilder.getContentEntryPath(); if (contentPath != null) { myControl.getInitialSettings().setExternalProjectPath(contentPath); } } @Override public void disposeUIResources() { super.disposeUIResources(); myControl.disposeUIResources(); } @Override public boolean isStepVisible() { return myContext == null || !Boolean.TRUE.equals(myContext.getUserData(SKIP_STEP_KEY)); } }