blob: a4ca956e747d2dfab775259ae2bcb811b573991c [file] [log] [blame]
/*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you 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 org.netbeans.modules.javafx2.project;
import java.awt.Component;
import javax.swing.JComponent;
import javax.swing.event.ChangeListener;
import org.openide.WizardDescriptor;
import org.openide.WizardValidationException;
import org.openide.util.ChangeSupport;
import org.openide.util.HelpCtx;
/**
* Panel just asking for basic info.
* @author Jesse Glick
*/
final class PanelConfigureProject implements WizardDescriptor.Panel, WizardDescriptor.ValidatingPanel, WizardDescriptor.FinishablePanel {
private WizardDescriptor wizardDescriptor;
private JavaFXProjectWizardIterator.WizardType type;
private PanelConfigureProjectVisual component;
public PanelConfigureProject(JavaFXProjectWizardIterator.WizardType type) {
this.type = type;
}
@Override
public Component getComponent() {
if (component == null) {
component = new PanelConfigureProjectVisual(this, type);
}
return component;
}
@Override
public HelpCtx getHelp() {
switch (type){
case FXML: return new HelpCtx(PanelConfigureProject.class.getName() + "_FXML"); //NOI18N
case PRELOADER: return new HelpCtx(PanelConfigureProject.class.getName() + "_PRELOADER"); //NOI18N
case SWING: return new HelpCtx(PanelConfigureProject.class.getName() + "_SWING"); //NOI18N
default:
case APPLICATION: return new HelpCtx(PanelConfigureProject.class.getName() + "_APPLICATION"); //NOI18N
}
}
@Override
public boolean isValid() {
getComponent();
return component.valid(wizardDescriptor);
}
private final ChangeSupport changeSupport = new ChangeSupport(this);
@Override
public final void addChangeListener(ChangeListener l) {
changeSupport.addChangeListener(l);
}
@Override
public final void removeChangeListener(ChangeListener l) {
changeSupport.removeChangeListener(l);
}
protected final void fireChangeEvent() {
changeSupport.fireChange();
}
@Override
public void readSettings(Object settings) {
wizardDescriptor = (WizardDescriptor) settings;
component.read(wizardDescriptor);
// XXX hack, TemplateWizard in final setTemplateImpl() forces new wizard's title
// this name is used in NewProjectWizard to modify the title
Object substitute = ((JComponent) component).getClientProperty("NewProjectWizard_Title"); // NOI18N
if (substitute != null) {
wizardDescriptor.putProperty("NewProjectWizard_Title", substitute); // NOI18N
}
}
@Override
public void storeSettings(Object settings) {
WizardDescriptor d = (WizardDescriptor) settings;
component.store(d);
d.putProperty("NewProjectWizard_Title", null); // NOI18N
}
@Override
public boolean isFinishPanel() {
return true;
}
@Override
public void validate() throws WizardValidationException {
getComponent();
component.validate(wizardDescriptor);
}
}