com.izforge.izpack.panels.htmllicence.HTMLLicencePanel Maven / Gradle / Ivy
/*
* IzPack - Copyright 2001-2008 Julien Ponge, All Rights Reserved.
*
* http://izpack.org/
* http://izpack.codehaus.org/
*
* 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.izforge.izpack.panels.htmllicence;
import com.izforge.izpack.api.GuiId;
import com.izforge.izpack.api.data.Panel;
import com.izforge.izpack.api.resource.Resources;
import com.izforge.izpack.gui.IzPanelLayout;
import com.izforge.izpack.gui.LabelFactory;
import com.izforge.izpack.gui.log.Log;
import com.izforge.izpack.installer.data.GUIInstallData;
import com.izforge.izpack.installer.gui.InstallerFrame;
import com.izforge.izpack.panels.licence.AbstractLicencePanel;
import javax.swing.*;
import javax.swing.event.HyperlinkEvent;
import javax.swing.event.HyperlinkListener;
import javax.swing.text.Document;
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;
import java.awt.event.KeyEvent;
/**
* The IzPack HTML license panel.
*
* @author Julien Ponge
*/
public class HTMLLicencePanel extends AbstractLicencePanel implements HyperlinkListener, ActionListener
{
private static final long serialVersionUID = 3256728385458746416L;
/**
* The text area.
*/
private JEditorPane textArea;
/**
* The radio buttons.
*/
private final JRadioButton yesRadio;
private final JRadioButton noRadio;
/**
* Constructs an HTMLLicencePanel.
*
* @param panel the panel
* @param parent the parent window
* @param installData the installation data
* @param resources the resources
* @param log the log
*/
public HTMLLicencePanel(Panel panel, final InstallerFrame parent, GUIInstallData installData, Resources resources,
Log log)
{
super(panel, parent, installData, new IzPanelLayout(log), resources);
// We put our components
add(LabelFactory.create(getString(titleMessageKey), parent.getIcons().get("history"), LEADING), NEXT_LINE);
try
{
textArea = new JEditorPane();
textArea.setEditable(false);
textArea.getDocument().putProperty(Document.StreamDescriptionProperty, null);
textArea.addHyperlinkListener(this);
JScrollPane scroller = new JScrollPane(textArea);
textArea.setPage(loadLicence());
// register a listener to trigger the default button if enter is pressed whilst the text area has the focus
ActionListener fireDefault = new ActionListener()
{
@Override
public void actionPerformed(ActionEvent e)
{
JButton defaultButton = parent.getRootPane().getDefaultButton();
if (defaultButton != null && defaultButton.isEnabled())
{
defaultButton.doClick();
}
}
};
textArea.registerKeyboardAction(fireDefault, null, KeyStroke.getKeyStroke(KeyEvent.VK_ENTER, 0),
JComponent.WHEN_FOCUSED);
add(scroller, NEXT_LINE);
}
catch (Exception err)
{
err.printStackTrace();
}
ButtonGroup group = new ButtonGroup();
yesRadio = new JRadioButton(getString("LicencePanel.agree"), false);
yesRadio.setName(GuiId.LICENCE_YES_RADIO.id);
group.add(yesRadio);
add(yesRadio, NEXT_LINE);
yesRadio.addActionListener(this);
noRadio = new JRadioButton(getString("LicencePanel.notagree"), true);
noRadio.setName(GuiId.LICENCE_NO_RADIO.id);
group.add(noRadio);
add(noRadio, NEXT_LINE);
noRadio.addActionListener(this);
setInitialFocus(textArea);
getLayoutHelper().completeLayout();
}
/**
* Actions-handling method (here it launches the installation).
*
* @param e The event.
*/
public void actionPerformed(ActionEvent e)
{
if (yesRadio.isSelected())
{
parent.unlockNextButton();
}
else
{
parent.lockNextButton();
}
}
/**
* Indicates wether the panel has been validated or not.
*
* @return true if the user agrees with the license, false otherwise.
*/
public boolean isValidated()
{
if (noRadio.isSelected())
{
parent.exit();
return false;
}
return (yesRadio.isSelected());
}
/**
* Hyperlink events handler.
*
* @param e The event.
*/
public void hyperlinkUpdate(HyperlinkEvent e)
{
try
{
if (e.getEventType() == HyperlinkEvent.EventType.ACTIVATED)
{
textArea.setPage(e.getURL());
}
}
catch (Exception err)
{
// TODO: Extend exception handling.
}
}
/**
* Called when the panel becomes active.
*/
public void panelActivate()
{
if (!yesRadio.isSelected())
{
parent.lockNextButton();
}
}
}