Jskad/source/org/thdl/tib/scanner/AboutDialog.java

146 lines
4.3 KiB
Java
Raw Normal View History

2002-10-03 19:28:09 +00:00
/*
The contents of this file are subject to the AMP Open Community License
Version 1.0 (the "License"); you may not use this file except in compliance
with the License. You may obtain a copy of the License on the AMP web site
(http://www.tibet.iteso.mx/Guatemala/).
Software distributed under the License is distributed on an "AS IS" basis,
WITHOUT WARRANTY OF ANY KIND, either express or implied. See the
License for the specific terms governing rights and limitations under the
License.
The Initial Developer of this software is Andres Montano Pellegrini. Portions
created by Andres Montano Pellegrini are Copyright 2001 Andres Montano
Pellegrini. All Rights Reserved.
Contributor(s): ______________________________________.
*/
package org.thdl.tib.scanner;
import java.awt.*;
import java.awt.event.*;
2003-08-03 06:28:22 +00:00
import org.thdl.util.*;
2002-10-03 19:28:09 +00:00
/** Window that displays copyright stuff.
@author Andrés Montano Pellegrini
@see WindowScannerFilter
*/
2002-11-29 08:08:54 +00:00
public class AboutDialog extends Dialog implements ActionListener, WindowListener
2002-10-03 19:28:09 +00:00
{
2003-08-03 06:28:22 +00:00
public static String windowAboutOption = "thdl.scanner.omit.about.window";
private Checkbox chkOmitNextTime;
public AboutDialog(Frame parent, boolean pocketpc)
2002-10-03 19:28:09 +00:00
{
super(parent, "About...", true);
2003-08-03 06:28:22 +00:00
Panel p = new Panel(new BorderLayout());
chkOmitNextTime = new Checkbox("Don't show this window at startup", ThdlOptions.getBooleanOption(windowAboutOption));
p.add(chkOmitNextTime, BorderLayout.CENTER);
2002-10-03 19:28:09 +00:00
Button close = new Button("Close this window");
2003-08-03 06:28:22 +00:00
p.add(close, BorderLayout.EAST);
add(p, BorderLayout.NORTH);
2002-10-03 19:28:09 +00:00
close.addActionListener(this);
TextArea ta = new TextArea(TibetanScanner.aboutUnicode,0,0,TextArea.SCROLLBARS_VERTICAL_ONLY);
ta.setEditable(false);
addWindowListener(this);
add(ta, BorderLayout.CENTER);
2003-08-03 06:28:22 +00:00
if (pocketpc)
2003-07-25 01:41:30 +00:00
{
Dimension d = Toolkit.getDefaultToolkit().getScreenSize();
setSize(d); // the size ipaq's window.
}
2003-08-03 06:28:22 +00:00
else setSize(480,400);
}
public boolean omitNextTime()
{
return chkOmitNextTime.getState();
2002-10-03 19:28:09 +00:00
}
/* FIXME: what happens if this throws an exception? We'll just
see it on the console--it won't terminate the program. And the
user may not see the console! See ThdlActionListener. -DC */
2002-10-03 19:28:09 +00:00
public void actionPerformed(ActionEvent e)
{
hide();
}
/**
* Cierra la ventana. Invocado unicamente cuando el programa corre
* como aplicacion, para que el programa pare su ejecucion cuando
* el usuario cierre la ventana principal.
*/
public void windowClosing(WindowEvent e)
{
hide();
}
/**
* Sin cuerpo, no hace nada. Esta incluido solo para satisfacer
* la interfase <code>WindowListener</code>, la cual es implementada
* para tener el metodo <code>windowClosing</code>.
*
* @see #windowClosing
*/
public void windowActivated(WindowEvent e)
{
}
/**
* Sin cuerpo, no hace nada. Esta incluido solo para satisfacer
* la interfase <code>WindowListener</code>, la cual es implementada
* para tener el metodo <code>windowClosing</code>.
*
* @see #windowClosing
*/
public void windowClosed(WindowEvent e)
{
}
/**
* Sin cuerpo, no hace nada. Esta incluido solo para satisfacer
* la interfase <code>WindowListener</code>, la cual es implementada
* para tener el metodo <code>windowClosing</code>.
*
* @see #windowClosing
*/
public void windowDeactivated(WindowEvent e)
{
}
/**
* Sin cuerpo, no hace nada. Esta incluido solo para satisfacer
* la interfase <code>WindowListener</code>, la cual es implementada
* para tener el metodo <code>windowClosing</code>.
*
* @see #windowClosing
*/
public void windowDeiconified(WindowEvent e)
{
}
/**
* Sin cuerpo, no hace nada. Esta incluido solo para satisfacer
* la interfase <code>WindowListener</code>, la cual es implementada
* para tener el metodo <code>windowClosing</code>.
*
* @see #windowClosing
*/
public void windowIconified(WindowEvent e)
{
}
/**
* Sin cuerpo, no hace nada. Esta incluido solo para satisfacer
* la interfase <code>WindowListener</code>, la cual es implementada
* para tener el metodo <code>windowClosing</code>.
*
* @see #windowClosing
*/
public void windowOpened(WindowEvent e)
{
}
}