|
|||||||||||
PREV NEXT | FRAMES NO FRAMES |
Packages that use TabbedPanelProperties | |
net.infonode.docking | Core classes for the docking windows framework. |
net.infonode.docking.properties | Property classes for docking windows. |
net.infonode.tabbedpanel | Core classes for creating and using tabbed panels and tabs |
net.infonode.tabbedpanel.hover | Contains hover actions that make it easy to change properties for hovered tabbed panels and titled tabs. |
net.infonode.tabbedpanel.theme | Themes with different looks for both TabbedPanel and TitledTab |
Uses of TabbedPanelProperties in net.infonode.docking |
Methods in net.infonode.docking that return TabbedPanelProperties | |
TabbedPanelProperties |
TabWindowHoverAction.getTabbedPanelProperties()
Returns this action's tabbed panel properties |
Constructors in net.infonode.docking with parameters of type TabbedPanelProperties | |
TabWindowHoverAction(TabbedPanelProperties tabbedPanelProperties,
TitledTabProperties titledTabProperties,
ViewTitleBarProperties viewTitleBarProperties)
|
Uses of TabbedPanelProperties in net.infonode.docking.properties |
Methods in net.infonode.docking.properties that return TabbedPanelProperties | |
TabbedPanelProperties |
TabWindowProperties.getTabbedPanelProperties()
Returns the property values for the tabbed panel in the tab window. |
Uses of TabbedPanelProperties in net.infonode.tabbedpanel |
Methods in net.infonode.tabbedpanel that return TabbedPanelProperties | |
static TabbedPanelProperties |
TabbedPanelProperties.getDefaultProperties()
Creates a properties object with default properties based on the current look and feel |
TabbedPanelProperties |
TabbedPanelProperties.addSuperObject(TabbedPanelProperties superObject)
Adds a super object from which property values are inherited. |
TabbedPanelProperties |
TabbedPanelProperties.removeSuperObject()
Removes the last added super object. |
TabbedPanelProperties |
TabbedPanelProperties.removeSuperObject(TabbedPanelProperties superObject)
Removes the given super object. |
TabbedPanelProperties |
TabbedPanelProperties.replaceSuperObject(TabbedPanelProperties oldSuperObject,
TabbedPanelProperties newSuperObject)
Replaces the given super objects. |
TabbedPanelProperties |
TabbedPanelProperties.setShadowStrength(float strength)
Sets the shadow strength. 0 means the shadow color is the same as the backgound color and 1 means the shadow color is the same as shadow color. |
TabbedPanelProperties |
TabbedPanelProperties.setShadowBlendAreaSize(int size)
Sets the shadow blend area size, i.e. number of pixels for the shadow color fading. |
TabbedPanelProperties |
TabbedPanelProperties.setShadowSize(int size)
Sets the shadow size, i.e. the width/height of the shadow in pixels. |
TabbedPanelProperties |
TabbedPanelProperties.setShadowColor(Color color)
Sets the shadow color. |
TabbedPanelProperties |
TabbedPanelProperties.setShadowEnabled(boolean value)
Sets shadow enabled |
TabbedPanelProperties |
TabbedPanelProperties.setAutoSelectTab(boolean value)
Sets if automatic selection of a tab is enabled. |
TabbedPanelProperties |
TabbedPanelProperties.setTabDeselectable(boolean value)
Sets if tab is deselectable. |
TabbedPanelProperties |
TabbedPanelProperties.setEnsureSelectedTabVisible(boolean value)
Sets if a tab should be made visible if it is selected, i.e. if scrolling is enabled, a tab will be scrolled into the visible part of the tab area when it becomes selected. |
TabbedPanelProperties |
TabbedPanelProperties.setTabScrollingOffset(int offset)
Sets number of pixels to be shown for the scrolled out tab next to the first visible tab. |
TabbedPanelProperties |
TabbedPanelProperties.setTabReorderEnabled(boolean enabled)
Sets if the tabs can be reordered using the mouse |
TabbedPanelProperties |
TabbedPanelProperties.setHighlightPressedTab(boolean highlightEnabled)
Set to true if the tab pressed with the mouse should be highlighted, otherwise it's not changed. |
TabbedPanelProperties |
TabbedPanelProperties.setAbortDragKey(int keyCode)
Sets the key code for aborting a tab drag or reorder operation. |
TabbedPanelProperties |
TabbedPanelProperties.setTabLayoutPolicy(TabLayoutPolicy policy)
Sets the tab layout policy for the tab area, i.e. how the line of tabs should be laid out |
TabbedPanelProperties |
TabbedPanelProperties.setTabDropDownListVisiblePolicy(TabDropDownListVisiblePolicy policy)
Sets the tab drop down list visible policy, i.e. when a drop down list with the tabs should be visible The drop down list will show an icon for the tab if the tab implements the IconProvider and the text will be retrieved by calling
toString() on the tab.
|
TabbedPanelProperties |
TabbedPanelProperties.setTabSelectTrigger(TabSelectTrigger trigger)
Sets the tab select trigger, i.e. what triggers a tab selection |
TabbedPanelProperties |
TabbedPanelProperties.setTabAreaOrientation(Direction direction)
Sets the tab area orientation, i.e. if the tab area should be placed up, down, left or right of the content area. |
TabbedPanelProperties |
TabbedPanelProperties.setTabSpacing(int value)
Sets the tab spacing, i.e. number of pixels between the tabs in the tab area. |
TabbedPanelProperties |
TabbedPanelProperties.setTabDepthOrderPolicy(TabDepthOrderPolicy policy)
Sets the tab depth order policy to be used when tabs are overlapping i.e. |
TabbedPanelProperties |
TabbedPanelProperties.setPaintTabAreaShadow(boolean paintShadow)
Set to true if a shadow should be painted for the tab area, false if a shadow should be painted for the highlighted tab and the tab area components panel. |
TabbedPanelProperties |
TabbedPanelProperties.setHoverListener(HoverListener listener)
Sets the hover listener that will be triggered when the tabbed panel is hoverd by the mouse. |
TabbedPanelProperties |
TabbedPanelProperties.setHoverPolicy(TabbedPanelHoverPolicy hoverPolicy)
Sets the hover policy. |
TabbedPanelProperties |
TabbedPanel.getProperties()
Gets the TabbedPanelProperties |
Methods in net.infonode.tabbedpanel with parameters of type TabbedPanelProperties | |
TabbedPanelProperties |
TabbedPanelProperties.addSuperObject(TabbedPanelProperties superObject)
Adds a super object from which property values are inherited. |
TabbedPanelProperties |
TabbedPanelProperties.removeSuperObject(TabbedPanelProperties superObject)
Removes the given super object. |
TabbedPanelProperties |
TabbedPanelProperties.replaceSuperObject(TabbedPanelProperties oldSuperObject,
TabbedPanelProperties newSuperObject)
Replaces the given super objects. |
Constructors in net.infonode.tabbedpanel with parameters of type TabbedPanelProperties | |
TabbedPanelProperties(TabbedPanelProperties inheritFrom)
Constructs a TabbedPanelProperties object that inherits its properties from the given TabbedPanelProperties object |
Uses of TabbedPanelProperties in net.infonode.tabbedpanel.hover |
Methods in net.infonode.tabbedpanel.hover that return TabbedPanelProperties | |
TabbedPanelProperties |
TitledTabTabbedPanelHoverAction.getTabbedPanelProperties()
Gets the TabbedPanelProperties object for this action. |
TabbedPanelProperties |
TabbedPanelTitledTabHoverAction.getTabbedPanelProperties()
Gets the TabbedPanelProperties object for this action. |
TabbedPanelProperties |
TabbedPanelHoverAction.getTabbedPanelProperties()
Gets the TabbedPanelProperties object for this action. |
Constructors in net.infonode.tabbedpanel.hover with parameters of type TabbedPanelProperties | |
TitledTabTabbedPanelHoverAction(TitledTabProperties titledTabProperties,
TabbedPanelProperties tabbedPanelProperties)
Creates a TitledTabTabbedPanelHoverAction containing with the given TitledTabProperties object and the given TabbedPanelProperties object. |
|
TitledTabTabbedPanelHoverAction(TitledTabProperties titledTabProperties,
TabbedPanelProperties tabbedPanelProperties,
boolean allTabs)
Creates a TitledTabTabbedPanelHoverAction containing with the given TitledTabProperties object and the given TabbedPanelProperties object. |
|
TabbedPanelTitledTabHoverAction(TabbedPanelProperties tabbedPanelProperties,
TitledTabProperties titledTabProperties)
Creates a TabbedPanelTitledTabHoverAction with the given TabbedPanelProperties object and the given TitledTabProperties object. |
|
TabbedPanelTitledTabHoverAction(TabbedPanelProperties tabbedPanelProperties,
TitledTabProperties titledTabProperties,
boolean allTabs)
Creates a TabbedPanelTitledTabHoverAction with the given TabbedPanelProperties object and the given TitledTabProperties object. |
|
TabbedPanelHoverAction(TabbedPanelProperties props)
Creates a TabbedPanelHoverAction with the given TabbedPanelProperties object. |
Uses of TabbedPanelProperties in net.infonode.tabbedpanel.theme |
Methods in net.infonode.tabbedpanel.theme that return TabbedPanelProperties | |
abstract TabbedPanelProperties |
TabbedPanelTitledTabTheme.getTabbedPanelProperties()
Gets the TabbedPanelProperties for this theme |
TabbedPanelProperties |
SoftBlueIceTheme.getTabbedPanelProperties()
|
TabbedPanelProperties |
SmallFlatTheme.getTabbedPanelProperties()
Gets the TabbedPanelProperties for this theme |
TabbedPanelProperties |
ShapedGradientTheme.getTabbedPanelProperties()
Gets the TabbedPanelProperties for this theme |
TabbedPanelProperties |
LookAndFeelTheme.getTabbedPanelProperties()
Gets the TabbedPanelProperties for this theme |
TabbedPanelProperties |
GradientTheme.getTabbedPanelProperties()
|
TabbedPanelProperties |
DefaultTheme.getTabbedPanelProperties()
Gets the TabbedPanelProperties for this theme |
TabbedPanelProperties |
ClassicTheme.getTabbedPanelProperties()
Gets the TabbedPanelProperties for this theme |
TabbedPanelProperties |
BlueHighlightTheme.getTabbedPanelProperties()
Gets the TabbedPanelProperties for this theme |
|
|||||||||||
PREV NEXT | FRAMES NO FRAMES |