All Packages  Class Hierarchy  This Package  Previous  Next  Index

Class semper.tinguin2.ConfirmHTML

java.lang.Object
   |
   +----netscape.application.View
           |
           +----netscape.application.InternalWindow
                   |
                   +----semper.tinguin2.ButtonWindow
                           |
                           +----semper.tinguin2.ConfirmHTML

public class ConfirmHTML
extends ButtonWindow
implements DragDestination
Creates a Confirm Dialog within an InternalWindow. This dialog has a textfield and 1 button.

Version:
0.1
Author:
Christian Haag

Variable Index

 o OK_BUTTON
Constant for the text of the button

Constructor Index

 o ConfirmHTML(String)
Confirm Dialog with the HTML-Text message.
 o ConfirmHTML(String, String)
Confirm Dialog with the HTML-Text message.
 o ConfirmHTML(String, String, String)
Confirm Dialog with the HTML-Text message.
 o ConfirmHTML(String, String, String, int, int, int, int)
Confirm Dialog with the HTML-Text message.

Method Index

 o acceptsDrag(DragSession, int, int)
You should never call this method.
 o dragDropped(DragSession)
Implementation of the DragDestination Interface.
 o dragEntered(DragSession)
Implementation of the DragDestination Interface.
 o dragExited(DragSession)
Implementation of the DragDestination Interface.
 o dragMoved(DragSession)
Implementation of the DragDestination Interface.

Variables

 o OK_BUTTON
 public static String OK_BUTTON
Constant for the text of the button

Constructors

 o ConfirmHTML
 public ConfirmHTML(String message)
Confirm Dialog with the HTML-Text message. The button is labeled "OK".

Parameters:
message - The HTML-Text
 o ConfirmHTML
 public ConfirmHTML(String message,
                    String ok)
Confirm Dialog with the HTML-Text message. The button is labeled ok.

Parameters:
message - The HTML-Text
ok - The text for the button
 o ConfirmHTML
 public ConfirmHTML(String message,
                    String ok,
                    String title)
Confirm Dialog with the HTML-Text message. The button is labeled ok. The title of the window is title.

Parameters:
message - The HTML-Text
ok - The text for the button
title - The title for the InternalWindow
 o ConfirmHTML
 public ConfirmHTML(String message,
                    String ok,
                    String title,
                    int x,
                    int y,
                    int w,
                    int h)
Confirm Dialog with the HTML-Text message. The button is labeled ok. The window is shown at the position x,y with width w and height h.

Parameters:
message - The HTML-Text
ok - The text for the button
title - The title for the InternalWindow
x - The X-Position of the InternalWindow
y - The Y-Position of the InternalWindow
w - The width of the InternalWindow
h - The height of the InternalWindow

Methods

 o acceptsDrag
 public DragDestination acceptsDrag(DragSession dragSession,
                                    int x,
                                    int y)
You should never call this method.

Overrides:
acceptsDrag in class View
 o dragDropped
 public boolean dragDropped(DragSession dragSession)
Implementation of the DragDestination Interface. You should never call this method.

 o dragEntered
 public boolean dragEntered(DragSession dragSession)
Implementation of the DragDestination Interface. You should never call this method.

 o dragExited
 public void dragExited(DragSession dragSession)
Implementation of the DragDestination Interface. You should never call this method.

 o dragMoved
 public boolean dragMoved(DragSession dragSession)
Implementation of the DragDestination Interface. You should never call this method.


All Packages  Class Hierarchy  This Package  Previous  Next  Index