All Packages Class Hierarchy This Package Previous Next Index
Class cynosurex.awt.AboutDialog
java.lang.Object
|
+----java.awt.Component
|
+----java.awt.Container
|
+----java.awt.Window
|
+----java.awt.Dialog
|
+----cynosurex.awt.AboutDialog
- public class AboutDialog
- extends Dialog
- implements ActionListener, CommonInterface, FocusListener, WindowListener
Displays a modal-less About dialog, with or without an icon, on the screen.
-
button
-
-
icon
-
-
label
-
-
AboutDialog(Frame, String, String)
- Constructor to create the About dialog without an icon.
-
AboutDialog(Frame, String, String, String)
- Constructor to create the About dialog with an icon.
-
actionPerformed(ActionEvent)
-
-
focusGained(FocusEvent)
-
-
focusLost(FocusEvent)
-
-
windowActivated(WindowEvent)
-
-
windowClosed(WindowEvent)
-
-
windowClosing(WindowEvent)
-
-
windowDeactivated(WindowEvent)
-
-
windowDeiconified(WindowEvent)
-
-
windowIconified(WindowEvent)
-
-
windowOpened(WindowEvent)
-
button
protected Button button
label
protected MultiLineLabel label
icon
protected DisplayImage icon
AboutDialog
public AboutDialog(Frame parent,
String title,
String message,
String iconfilename)
- Constructor to create the About dialog with an icon.
- Parameters:
- parent - - the parent frame.
- title - - a String to be displayed on the title bar.
- message - - a multi-line message to be dispayed in the dialog box. It is tokenized by the line-feed character, '\n'.
- iconfilename - - the file name of the icon in either GIF or JPG format.
AboutDialog
public AboutDialog(Frame parent,
String title,
String message)
- Constructor to create the About dialog without an icon.
- Parameters:
- parent - - the parent frame.
- title - - a String to be displayed on the title bar.
- message - - a multi-line message to be dispayed in the dialog box. It is tokenized by the line-feed character, '\n'.
actionPerformed
public void actionPerformed(ActionEvent e)
windowActivated
public void windowActivated(WindowEvent evt)
windowClosed
public void windowClosed(WindowEvent evt)
windowClosing
public void windowClosing(WindowEvent evt)
windowDeactivated
public void windowDeactivated(WindowEvent evt)
windowDeiconified
public void windowDeiconified(WindowEvent evt)
windowIconified
public void windowIconified(WindowEvent evt)
windowOpened
public void windowOpened(WindowEvent evt)
focusGained
public void focusGained(FocusEvent e)
focusLost
public void focusLost(FocusEvent e)
All Packages Class Hierarchy This Package Previous Next Index