office-gobmx/scripting/workben/installer/Welcome.java
Michael Meeks b6db3e3acc re-base on ALv2 code.
Change-Id: Ice06e639213aeb6f7f23cbf4634947dd25613db1
2012-06-21 13:11:06 +01:00

164 lines
5.3 KiB
Java

/*
* This file is part of the LibreOffice project.
*
* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/.
*
* This file incorporates work covered by the following license notice:
*
* 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 .
*/
package installer;
import java.awt.event.*;
import javax.swing.*;
import java.io.*;
import java.net.*;
import java.util.Properties;
public class Welcome extends javax.swing.JPanel implements ActionListener {
/** Creates new form Welcome */
public Welcome(InstallWizard wizard) {
this.wizard = wizard;
setBorder(new javax.swing.border.EtchedBorder(javax.swing.border.EtchedBorder.RAISED));
initComponents();
}
/** This method is called from within the constructor to
* initialize the form.
* WARNING: Do NOT modify this code. The content of this method is
* always regenerated by the Form Editor.
*/
private void initComponents() {//GEN-BEGIN:initComponents
welcomePanel = new javax.swing.JPanel();
area = new javax.swing.JTextArea();
nextButtonEnable = true;
setLayout(new java.awt.BorderLayout());
welcomePanel.setLayout(new java.awt.BorderLayout());
area.setEditable(false);
area.setLineWrap(true);
String message = "\n\tOffice Scripting Framework Version 0.3" +
"\n\n\n\tPlease ensure that you have exited from Office";
/* String userDir = (String) System.getProperty( "user.dir" );
boolean isValid = validateCurrentUserDir(userDir);
if( !isValid ) {
nextButtonEnable = false;
message = "Please run Installer from the program directory in a valid Office installation";
setUpWelcomePanel(message);
return;
}
int programPosition = userDir.lastIndexOf("program");
String offInstallPth = null;
offInstallPth = userDir.substring( 0, programPosition );
wizard.storeLocation(offInstallPth); */
setUpWelcomePanel(message);
}//GEN-END:initComponents
private void setUpWelcomePanel(String message){
area.setText( message );
welcomePanel.add(area, java.awt.BorderLayout.CENTER);
add(welcomePanel, java.awt.BorderLayout.CENTER);
NavPanel nav = new NavPanel(wizard, false, nextButtonEnable, true, "", InstallWizard.VERSIONS);
nav.setNextListener(this);
add(nav, java.awt.BorderLayout.SOUTH);
//Banner br = new Banner();
//add(br, java.awt.BorderLayout.WEST);
}
private boolean validateCurrentUserDir(String userDir){
Properties props = null;
File fileVersions = null;
try
{
fileVersions = InstUtil.buildSversionLocation();
}
catch(IOException eFnF)
{
System.err.println("Cannot find sversion.ini/.sversionrc");
JOptionPane.showMessageDialog(this, eFnF.getMessage(), "File not Found", JOptionPane.ERROR_MESSAGE);
wizard.exitForm(null);
}
try {
props = InstUtil.getOfficeVersions(fileVersions);
}
catch (IOException eIO) {
//Message about no installed versions found
System.err.println("Failed to parse SVERSION");
JOptionPane.showMessageDialog(this, "There was a problem reading from the Office settings file.", "Parse Error", JOptionPane.ERROR_MESSAGE);
wizard.exitForm(null);
}
boolean versionMatch = false;
for( int i = 0; i < versions.length; i++ ) {
String key = versions[i];
String progPath = ( String )props.getProperty( key );
if ( progPath != null ){
progPath = progPath + File.separator + "program";
File tmpFile = new File(progPath + File.separator + "oostubversion.txt");
try{
tmpFile.createNewFile();
if( new File(userDir + File.separator + "oostubversion.txt").exists())
{
versionMatch = true;
break;
}
}
catch( IOException e)
{
// Fail silently
}
tmpFile.delete();
}
}
return versionMatch;
}
public java.awt.Dimension getPreferredSize() {
return new java.awt.Dimension(InstallWizard.DEFWIDTH, InstallWizard.DEFHEIGHT);
}
public void actionPerformed(ActionEvent ev)
{
//Perform next actions here...
}
// Variables declaration - do not modify//GEN-BEGIN:variables
private javax.swing.JPanel welcomePanel;
private javax.swing.JTextArea area;
private InstallWizard wizard;
//private static final String [] versions = {"OpenOffice.org 643", "StarOffice 6.1"};
private static final String [] versions = { "StarOffice 6.1" };
private boolean nextButtonEnable = true;
// End of variables declaration//GEN-END:variables
}