DialogFrame
are used to wrap components displayed within floating
windows. These are created automatically when caplin.component.frame.FrameManager#openDialog
is invoked, but may also be created by composite components that embed other components within them.
Attributes | Name and Description |
---|---|
|
caplin.component.frame.DialogFrame()
|
Attributes | Name and Description |
---|---|
|
void
resize(int nWidth, int nHeight)
Resize the dialog window. |
|
void
setClosable(boolean bClosable)
Sets whether the dialog can be closed or not. |
|
void
setHeading(String sHeading)
Sets the heading text for the dialog frame. |
|
void
setSubHeading(String sSubHeading)
Sets the sub heading text for the dialog frame. |
►
caplin.component.frame.DialogFrame()
►
void
resize(int nWidth, int nHeight)
Resize the dialog window.
int | nWidth | The new width of the dialog. |
int | nHeight | The new height of the dialog. |
►
void
setClosable(boolean bClosable)
Sets whether the dialog can be closed or not.
boolean | bClosable | True if the dialog can be closed, false otherwise. |
►
void
setHeading(String sHeading)
Sets the heading text for the dialog frame.
String | sHeading | the text which heading will be set to. |
►
void
setSubHeading(String sSubHeading)
Sets the sub heading text for the dialog frame.
String | sSubHeading | the text which sub-heading will be set to. |