blob: 55a4c6cb209c7467c859b0bee261bb0bef414cf9 [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.
*
*************************************************************/
/*
* InstallationPathDescriptor.java
*
* Created on February 12, 2003
*/
package org.openoffice.netbeans.modules.office.wizard;
import java.awt.Dimension;
import java.awt.Toolkit;
import java.net.URL;
import java.net.MalformedURLException;
import org.openide.TopManager;
import org.openide.WizardDescriptor;
import org.openide.util.NbBundle;
/** A wizard descriptor.
*
* @author tomaso
*/
public class InstallationPathDescriptor extends WizardDescriptor {
private final InstallationPathIterator iterator;
public static final String PROP_INSTALLPATH = "INSTALLPATH";
/** Make a descriptor suited to use InstallationPathIterator.
* Sets up various wizard properties to follow recommended
* style guidelines.
*/
public InstallationPathDescriptor() {
this(new InstallationPathIterator());
}
private InstallationPathDescriptor(InstallationPathIterator iterator) {
super(iterator);
this.iterator = iterator;
// Set title for the dialog:
setTitle(NbBundle.getMessage(InstallationPathDescriptor.class, "TITLE_wizard"));
// Make the left pane appear:
putProperty("WizardPanel_autoWizardStyle", Boolean.TRUE); // NOI18N
// Make the left pane show list of steps etc.:
putProperty("WizardPanel_contentDisplayed", Boolean.TRUE); // NOI18N
// Number the steps.
// putProperty("WizardPanel_contentNumbered", Boolean.TRUE); // NOI18N
/*
// Optional: make nonmodal.
setModal(false);
// (If you make the wizard nonmodal, you will call it differently;
// see InstallationPathAction for instructions.)
// Optional: show a help tab with special info about the pane:
putProperty("WizardPanel_helpDisplayed", Boolean.TRUE); // NOI18N
// Optional: set the size of the left pane explicitly:
putProperty("WizardPanel_leftDimension", new Dimension(100, 400)); // NOI18N
// Optional: if you want a special background image for the left pane:
try {
putProperty("WizardPanel_image", // NOI18N
Toolkit.getDefaultToolkit().getImage
(new URL("nbresloc:/org/openoffice/netbeans/modules/office/wizard/InstallationPathImage.gif"))); // NOI18N
} catch (MalformedURLException mfue) {
throw new IllegalStateException(mfue.toString());
}
*/
}
// Called when user moves forward or backward etc.:
protected void updateState() {
super.updateState();
putProperty("WizardPanel_contentData", iterator.getSteps()); // NOI18N
putProperty("WizardPanel_contentSelectedIndex", new Integer(iterator.getIndex())); // NOI18N
}
}