| java.lang.Object com.salmonllc.html.HtmlComponent com.salmonllc.html.HtmlContainer com.salmonllc.html.HtmlPopup
HtmlPopup | public class HtmlPopup extends HtmlContainer (Code) | | HtmlPopup is a class which gives a developer a way to generate a div/layer component of a HTML page that can be used as a popup.
|
Constructor Summary | |
public | HtmlPopup(String name, int x, int y, int width, int xvisibleoffset, int yvisibleoffset, HtmlPage p, boolean fixed) HtmlPopup constructor comment. | public | HtmlPopup(String name, int x, int y, int width, HtmlPage p) HtmlPopup constructor comment. | public | HtmlPopup(String name, int x, int y, int width, HtmlPage p, boolean fixed) HtmlPopup constructor comment. | public | HtmlPopup(String name, int width, HtmlPage p) HtmlPopup constructor comment. | public | HtmlPopup(String name, HtmlComponent comp, int width, HtmlPage p) HtmlPopup constructor comment. | public | HtmlPopup(String name, HtmlComponent comp, int width, boolean offsetByWidth, boolean offsetByHeight, HtmlPage p) HtmlPopup constructor comment. | public | HtmlPopup(String name, HtmlComponent comp, int width, boolean offsetByWidth, boolean offsetByHeight, boolean offsetByParent, HtmlPage p) HtmlPopup constructor comment. |
_cellpadding | int _cellpadding(Code) | | |
_fixedLocation | boolean _fixedLocation(Code) | | |
_offsetByHeight | boolean _offsetByHeight(Code) | | |
_offsetByParent | boolean _offsetByParent(Code) | | |
_offsetByWidth | boolean _offsetByWidth(Code) | | |
_xanchoroffset | int _xanchoroffset(Code) | | |
_xvisibleoffset | int _xvisibleoffset(Code) | | |
_yanchoroffset | int _yanchoroffset(Code) | | |
_yvisibleoffset | int _yvisibleoffset(Code) | | |
HtmlPopup | public HtmlPopup(String name, int x, int y, int width, int xvisibleoffset, int yvisibleoffset, HtmlPage p, boolean fixed)(Code) | | HtmlPopup constructor comment.
Parameters: name - java.lang.String Name of the div/layer tag generated. Parameters: comp - com.salmonllc.html.HtmlComponent The component which the div/layer is linked to. Parameters: x - int The x coordinate of the popup. Parameters: y - int The y coordinate of the popup. Parameters: width - int The width of the div/layer in pixels. Parameters: xvisibleoffset - int The number of horizontal pixels allowed to be away from the Popup in order for it to stay visible. Parameters: yvisibleoffset - int The number of vertical pixels allowed to be away from the Popup in order for it to stay visible. Parameters: p - com.salmonllc.html.HtmlPage The page that this popup is part of. Parameters: fixed - boolean A boolean indicating whether the popup is to have a fixed location. |
HtmlPopup | public HtmlPopup(String name, int x, int y, int width, HtmlPage p)(Code) | | HtmlPopup constructor comment.
Parameters: name - java.lang.String Name of the div/layer tag generated. Parameters: comp - com.salmonllc.html.HtmlComponent The component which the div/layer is linked to. Parameters: x - int The x coordinate of the popup. Parameters: y - int The y coordinate of the popup. Parameters: width - int The width of the div/layer in pixels. Parameters: p - com.salmonllc.html.HtmlPage The page that this popup is part of. |
HtmlPopup | public HtmlPopup(String name, int x, int y, int width, HtmlPage p, boolean fixed)(Code) | | HtmlPopup constructor comment.
Parameters: name - java.lang.String Name of the div/layer tag generated. Parameters: comp - com.salmonllc.html.HtmlComponent The component which the div/layer is linked to. Parameters: x - int The x coordinate of the popup. Parameters: y - int The y coordinate of the popup. Parameters: width - int The width of the div/layer in pixels. Parameters: p - com.salmonllc.html.HtmlPage The page that this popup is part of. Parameters: fixed - boolean A boolean indicating whether the popup is to have a fixed location. |
HtmlPopup | public HtmlPopup(String name, int width, HtmlPage p)(Code) | | HtmlPopup constructor comment.
Parameters: name - java.lang.String Name of the div/layer tag generated. Parameters: width - int The width of the div/layer in pixels. Parameters: p - com.salmonllc.html.HtmlPage The page that this popup is part of. |
HtmlPopup | public HtmlPopup(String name, HtmlComponent comp, int width, HtmlPage p)(Code) | | HtmlPopup constructor comment.
Parameters: name - java.lang.String Name of the div/layer tag generated. Parameters: comp - com.salmonllc.html.HtmlComponent The component which the div/layer is linked to. Parameters: width - int The width of the div/layer in pixels. Parameters: p - com.salmonllc.html.HtmlPage The page that this popup is part of. |
HtmlPopup | public HtmlPopup(String name, HtmlComponent comp, int width, boolean offsetByWidth, boolean offsetByHeight, HtmlPage p)(Code) | | HtmlPopup constructor comment.
Parameters: name - java.lang.String Name of the div/layer tag generated. Parameters: comp - com.salmonllc.html.HtmlComponent The component which the div/layer is linked to. Parameters: width - int The width of the div/layer in pixels. Parameters: offsetByWidth - boolean A flag to indicate to display the Popup to the right of comp. Parameters: offsetByHeight - boolean A flag to indicate to display the Popup below comp. Parameters: p - com.salmonllc.html.HtmlPage The page that this popup is part of. |
HtmlPopup | public HtmlPopup(String name, HtmlComponent comp, int width, boolean offsetByWidth, boolean offsetByHeight, boolean offsetByParent, HtmlPage p)(Code) | | HtmlPopup constructor comment.
Parameters: name - java.lang.String Name of the div/layer tag generated. Parameters: comp - com.salmonllc.html.HtmlComponent The component which the div/layer is linked to. Parameters: width - int The width of the div/layer in pixels. Parameters: offsetByWidth - boolean A flag to indicate to display the Popup to the right of comp. Parameters: offsetByHeight - boolean A flag to indicate to display the Popup below comp. Parameters: offsetByParent - boolean A flag to indicate to display the Popup relative to comp parent component. Parameters: p - com.salmonllc.html.HtmlPage The page that this popup is part of. |
add | public void add(HtmlComponent comp)(Code) | | Adds a new html component to the popup
Parameters: comp - com.salmonllc.html.HtmlComponent |
getCellPadding | public int getCellPadding()(Code) | | Returns the cell padding specified by the developer. This is usually the cell padding of a table the popup appears within
Creation date: (3/27/01 1:56:08 PM)
int The cellpadding specified with setCellPadding. |
getComponents | public Enumeration getComponents()(Code) | | This method will return a list of all components in the container.
Enumeration An enumeration of the components within the popup. |
getFixedLocation | public boolean getFixedLocation()(Code) | | Returns whether the popup displays in a fixed location.
Creation date: (3/27/01 1:56:08 PM)
boolean Indicates whether the popup displays in a fixed location or not. |
getHideCondition | public String getHideCondition()(Code) | | Returns the Javascript condition under which the Popup hides.
Creation date: (3/27/01 1:56:08 PM)
String The Javascript representing the Condition under which the popup hides. |
getHideScript | public String getHideScript()(Code) | | Returns the Javascript used after hiding the Popup. Specified by user using setHideScript
Creation date: (3/27/01 1:56:08 PM)
String The Javascript used after hiding the popup. |
getPopupScript | public String getPopupScript()(Code) | | Returns the Javascript call to be made in javascript to decide to leaveup/hide popup.
Creation date: (3/27/01 11:14:44 AM)
java.lang.String The Javascript call used to leaveup/hide the popup. |
getPopupShowScript | public String getPopupShowScript()(Code) | | Returns the Javascript call to be made in javascript to show popup.
Creation date: (3/27/01 11:14:44 AM)
java.lang.String The Javascript call used to show the popup. |
getVisibleScript | public String getVisibleScript()(Code) | | Returns the Javascript used after showing the Popup. Specified by user with setVisibleScript.
Creation date: (3/27/01 1:56:08 PM)
String The Javascript used to show the popup. |
setCellPadding | public void setCellPadding(int iCellPadding)(Code) | | Sets the cellpadding used in generating the scripts representing the cell padding of the table containing the popup.
Creation date: (3/27/01 1:56:08 PM)
Parameters: iCellPadding - The cellpadding of the table containing the popup. |
setFixedLocation | public void setFixedLocation(boolean bFixed)(Code) | | Sets whether the popup is in a fixed location or not.
Creation date: (3/27/01 1:56:08 PM)
Parameters: bFixed - boolean Indicates whether the popup is in a fixed location or not. |
setHideCondition | public void setHideCondition(String sHideConditon)(Code) | | Specifies the javascript condition to use to hide the popup.
Creation date: (3/27/01 1:56:08 PM)
Parameters: sHideCondition - string The condition used to hide the popup. |
setHideScript | public void setHideScript(String sHideScript)(Code) | | Specifies the javascript to be executed after hiding the popup.
Creation date: (3/27/01 1:56:08 PM)
Parameters: sHideCondition - string The javascipt to be executed after hiding popup. |
setVisibleScript | public void setVisibleScript(String sVisibleScript)(Code) | | Specifies the javascript to be executed after showing the popup.
Creation date: (3/27/01 1:56:08 PM)
Parameters: sHideCondition - string The javascipt to be executed after showing popup. |
|
|