| |
|
| java.lang.Object java.lang.Enum net.infonode.tabbedpanel.TabbedPanelHoverPolicy
TabbedPanelHoverPolicy | public class TabbedPanelHoverPolicy extends Enum (Code) | | TabbedPanelHoverPolicy defines the hover policy, i.e. when a tabbed panel should consider itself
hovered by the mouse and the HoverListener should be called. This policy affects the tabbed panel,
the tab area, the tab area components area and the content area (if the tabbed panel has a content
area).
author: johan version: $Revision: 1.6 $ See Also: net.infonode.gui.hover.HoverListener since: ITP 1.3.0 |
ALWAYS | final public static TabbedPanelHoverPolicy ALWAYS(Code) | | Always hover policy. This means that the tabbed panel will always consider itself hovered
when the mouse is over the tabbed panel.
|
ALWAYS_AND_EXCLUDE | final public static TabbedPanelHoverPolicy ALWAYS_AND_EXCLUDE(Code) | | Always and exclude hover policy. This means that the tabbed panel will always consider itself hovered
when the mouse is over the tabbed panel but it will be excluded by other tabbed panels when their hover policies
are evaluated.
since: ITP 1.4.0 |
NEVER | final public static TabbedPanelHoverPolicy NEVER(Code) | | Never hover policy. This means that the tabbed panel will nerver be considered hovered
|
NO_HOVERED_CHILD | final public static TabbedPanelHoverPolicy NO_HOVERED_CHILD(Code) | | No hovered child hover policy. This means that the tabbed panel will consider itself hovered when
the mouse is over the tabbed panel and the content area doesn't contain any hovered tabbed panel.
|
ONLY_WHEN_DEEPEST | final public static TabbedPanelHoverPolicy ONLY_WHEN_DEEPEST(Code) | | Only when deepest hover policy. This means that the tabbed panel will consider itself hovered when
the mouse is over the tabbed panel and there is no other tabbed panel in the tabbed panel's content area.
|
|
|
|