Many resources are needed to download a project. Please understand that we have to compensate our server costs. Thank you in advance. Project price only 1 $
You can buy this project and download/modify it how often you want.
/*
* IzPack - Copyright 2001-2008 Julien Ponge, All Rights Reserved.
*
* http://izpack.org/
* http://izpack.codehaus.org/
*
* Copyright 2001 Johannes Lehtinen
*
* 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.xinfo;
import java.awt.Font;
import java.awt.GridBagConstraints;
import java.awt.GridBagLayout;
import java.awt.Insets;
import javax.swing.JLabel;
import javax.swing.JScrollPane;
import javax.swing.JTextArea;
import com.izforge.izpack.api.data.Panel;
import com.izforge.izpack.api.resource.Resources;
import com.izforge.izpack.gui.LabelFactory;
import com.izforge.izpack.installer.data.GUIInstallData;
import com.izforge.izpack.installer.gui.InstallerFrame;
import com.izforge.izpack.installer.gui.IzPanel;
import com.izforge.izpack.installer.gui.LayoutHelper;
/**
* The XInfo panel class - shows some adaptative text (ie by parsing for some variables.
*
* @author Julien Ponge
*/
public class XInfoPanel extends IzPanel
{
/**
*
*/
private static final long serialVersionUID = 3257009856274970416L;
/**
* The text area.
*/
private JTextArea textArea;
/**
* The info to display.
*/
private String info;
/**
* The constructor.
*
* @param panel the panel meta-data
* @param parent the parent IzPack installer frame
* @param installData the installation data
* @param resources the resources
*/
public XInfoPanel(Panel panel, InstallerFrame parent, GUIInstallData installData, Resources resources)
{
super(panel, parent, installData, resources);
// We initialize our layout
GridBagLayout layout = new GridBagLayout();
GridBagConstraints gbConstraints = new GridBagConstraints();
setLayout(layout);
// We add the components
JLabel infoLabel = LabelFactory.create(getString("InfoPanel.info"),
parent.getIcons().get("edit"), JLabel.TRAILING);
LayoutHelper.buildConstraints(gbConstraints, 0, 0, 1, 1, 1.0, 0.0);
gbConstraints.insets = new Insets(5, 5, 5, 5);
gbConstraints.fill = GridBagConstraints.BOTH;
gbConstraints.anchor = GridBagConstraints.SOUTHWEST;
layout.addLayoutComponent(infoLabel, gbConstraints);
add(infoLabel);
textArea = new JTextArea();
textArea.setEditable(false);
String textAreaFont = installData.getVariable("XInfoPanel.font");
if (textAreaFont != null && textAreaFont.length() > 0)
{
Font font = Font.decode(textAreaFont);
textArea.setFont(font);
}
JScrollPane scroller = new JScrollPane(textArea);
LayoutHelper.buildConstraints(gbConstraints, 0, 1, 1, 1, 1.0, 0.9);
gbConstraints.anchor = GridBagConstraints.CENTER;
layout.addLayoutComponent(scroller, gbConstraints);
add(scroller);
}
/**
* Loads the info text.
*/
private void loadInfo()
{
info = getResources().getString("XInfoPanel.info", null, "Error : could not load the info text !");
}
/**
* Parses the text for special variables.
*/
private void parseText()
{
// Parses the info text
info = installData.getVariables().replace(info);
}
/**
* Called when the panel becomes active.
*/
public void panelActivate()
{
// Text handling
loadInfo();
parseText();
// UI handling
textArea.setText(info);
textArea.setCaretPosition(0);
}
/**
* Indicates wether the panel has been validated or not.
*
* @return Always true.
*/
public boolean isValidated()
{
return true;
}
}