| |
|
| java.lang.Object net.infonode.properties.propertymap.PropertyMapContainer net.infonode.docking.properties.FloatingWindowProperties
FloatingWindowProperties | public class FloatingWindowProperties extends PropertyMapContainer (Code) | | Properties and property values for floating windows.
author: $Author: jesper $ since: IDW 1.4.0 |
PROPERTIES | final public static PropertyMapGroup PROPERTIES(Code) | | Property group containing all floating window properties.
|
USE_FRAME | final public static BooleanProperty USE_FRAME(Code) | | If true the floating window will be created as a JFrame, otherwise a JDialog will be created.
Note that the value of this property only takes effect when the FloatingWindow is created, it doesn't affect
existing FloatingWindows (but this might change in future versions).
since: IDW 1.5.0 |
FloatingWindowProperties | public FloatingWindowProperties()(Code) | | Creates an empty property object.
|
FloatingWindowProperties | public FloatingWindowProperties(PropertyMap map)(Code) | | Creates a property map containing the map.
Parameters: map - the property map |
FloatingWindowProperties | public FloatingWindowProperties(FloatingWindowProperties inheritFrom)(Code) | | Creates a property object that inherit values from another property object.
Parameters: inheritFrom - the object from which to inherit property values |
getAutoCloseEnabled | public boolean getAutoCloseEnabled()(Code) | | Returns true if the floating window should be automatically closed when it doesn't
contain any child window.
true if auto close is enabled, otherwise false |
getComponentProperties | public ComponentProperties getComponentProperties()(Code) | | Gets the component properties
component properties |
getShapedPanelProperties | public ShapedPanelProperties getShapedPanelProperties()(Code) | | Gets the shaped panel properties
shaped panel properties |
getUseFrame | public boolean getUseFrame()(Code) | | Returns true if the floating window should be created as a JFrame, otherwise a JDialog is used.
true if a JFrame should be used since: IDW 1.5.0 |
setAutoCloseEnabled | public FloatingWindowProperties setAutoCloseEnabled(boolean enabled)(Code) | | Enables/disables if the floating window should be automatically closed when it doesn't contain
any child window.
Parameters: enabled - true for auto close, otherwise disabled this |
setUseFrame | public FloatingWindowProperties setUseFrame(boolean enabled)(Code) | | Set to true if the floating window should be created as a JFrame, otherwise a JDialog is used.
Note that the value of this property only takes effect when the FloatingWindow is created, it doesn't affect
existing FloatingWindows (but this might change in future versions).
Parameters: enabled - true if a JFrame should be used this since: IDW 1.5.0 |
|
|
|