Uses of Interface
net.infonode.gui.hover.HoverListener

Packages that use HoverListener
net.infonode.docking Core classes for the docking windows framework. 
net.infonode.docking.properties Property classes for docking windows. 
net.infonode.gui.hover Mouse hover listeners and hover events 
net.infonode.gui.hover.action Hover action classes 
net.infonode.gui.hover.panel   
net.infonode.properties.types Classes for property types. 
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.titledtab TitledTab is a tab type with support for text, icon and a custom Swing component 
 

Uses of HoverListener in net.infonode.docking
 

Classes in net.infonode.docking that implement HoverListener
 class TabWindowHoverAction
           TabWindowHoverAction is a hover action that makes it easy to change properties for a tab window and the title bar in the view.
 

Uses of HoverListener in net.infonode.docking.properties
 

Methods in net.infonode.docking.properties that return HoverListener
 HoverListener ViewTitleBarProperties.getHoverListener()
          Gets the hover listener that will be triggered when the title bar is hovered by the mouse.
 

Methods in net.infonode.docking.properties with parameters of type HoverListener
 ViewTitleBarProperties ViewTitleBarProperties.setHoverListener(HoverListener listener)
          Sets the hover listener that will be triggered when the title bar is hoverd by the mouse.
 

Uses of HoverListener in net.infonode.gui.hover
 

Classes in net.infonode.gui.hover that implement HoverListener
 class CompoundHoverListener
          CompoundHoverListener takes the two given hover listeners and calls the first hover listener and then the second when the mouse is hovering.
 

Fields in net.infonode.gui.hover declared as HoverListener
private  HoverListener CompoundHoverListener.firstListener
           
private  HoverListener CompoundHoverListener.secondListener
           
 

Methods in net.infonode.gui.hover that return HoverListener
 HoverListener CompoundHoverListener.getFirstListener()
          Gets the first hover listener
 HoverListener CompoundHoverListener.getSecondListener()
          Gets the second hover listener
 

Constructors in net.infonode.gui.hover with parameters of type HoverListener
CompoundHoverListener(HoverListener firstListener, HoverListener secondListener)
          Creates a CompoundHoverListener
 

Uses of HoverListener in net.infonode.gui.hover.action
 

Classes in net.infonode.gui.hover.action that implement HoverListener
 class DelayedHoverExitAction
           
 

Fields in net.infonode.gui.hover.action declared as HoverListener
private  HoverListener DelayedHoverExitAction.action
           
 

Methods in net.infonode.gui.hover.action that return HoverListener
 HoverListener DelayedHoverExitAction.getHoverAction()
           
 

Constructors in net.infonode.gui.hover.action with parameters of type HoverListener
DelayedHoverExitAction(HoverListener action, int delay)
           
 

Uses of HoverListener in net.infonode.gui.hover.panel
 

Fields in net.infonode.gui.hover.panel declared as HoverListener
private  HoverListener HoverableShapedPanel.hoverListener
           
 

Methods in net.infonode.gui.hover.panel that return HoverListener
 HoverListener HoverableShapedPanel.getHoverListener()
           
 

Methods in net.infonode.gui.hover.panel with parameters of type HoverListener
 void HoverableShapedPanel.setHoverListener(HoverListener newHoverListener)
           
 

Constructors in net.infonode.gui.hover.panel with parameters of type HoverListener
HoverableShapedPanel(HoverListener listener)
           
HoverableShapedPanel(java.awt.LayoutManager l, HoverListener listener)
           
HoverableShapedPanel(java.awt.LayoutManager l, HoverListener listener, java.awt.Component hoveredComponent)
           
 

Uses of HoverListener in net.infonode.properties.types
 

Methods in net.infonode.properties.types that return HoverListener
 HoverListener HoverListenerProperty.get(java.lang.Object valueContainer)
          Returns the hover listener value of this property in a value container.
 

Methods in net.infonode.properties.types with parameters of type HoverListener
 void HoverListenerProperty.set(java.lang.Object valueContainer, HoverListener listener)
          Sets the hover listener value of this property in a value container.
 

Uses of HoverListener in net.infonode.tabbedpanel
 

Methods in net.infonode.tabbedpanel that return HoverListener
 HoverListener TabbedPanelProperties.getHoverListener()
          Gets the hover listener that will be triggered when the tabbed panel is hovered by the mouse.
 HoverListener TabbedPanelContentPanelProperties.getHoverListener()
          Gets the hover listener that will be triggered when the content area is hovered by the mouse.
 HoverListener TabAreaProperties.getHoverListener()
          Sets the hover listener that will be triggered when the tab area is hovered by the mouse.
 HoverListener TabAreaComponentsProperties.getHoverListener()
          Gets the hover listener that will be triggered when the tab area components area is hovered by the mouse.
 

Methods in net.infonode.tabbedpanel with parameters of type HoverListener
 TabbedPanelProperties TabbedPanelProperties.setHoverListener(HoverListener listener)
          Sets the hover listener that will be triggered when the tabbed panel is hoverd by the mouse.
 TabbedPanelContentPanelProperties TabbedPanelContentPanelProperties.setHoverListener(HoverListener listener)
          Sets the hover listener that will be triggered when the content area is hoverd by the mouse.
 TabAreaProperties TabAreaProperties.setHoverListener(HoverListener listener)
          Sets the hover listener that will be triggered when the tab area is hoverd by the mouse.
 TabAreaComponentsProperties TabAreaComponentsProperties.setHoverListener(HoverListener listener)
          Sets the hover listener that will be triggered when the tab area components area is hoverd by the mouse.
 

Constructors in net.infonode.tabbedpanel with parameters of type HoverListener
TabbedPanel.HoverablePanel(java.awt.LayoutManager l, HoverListener listener)
           
 

Uses of HoverListener in net.infonode.tabbedpanel.hover
 

Classes in net.infonode.tabbedpanel.hover that implement HoverListener
 class TabbedPanelHoverAction
           TabbedPanelHoverAction is an action that makes it easy to change properties for a hovered TabbedPanel.
 class TabbedPanelTitledTabHoverAction
           TabbedPanelTitledTabHoverAction is an action that makes it easy to change properties for a hovered TabbedPanel containing TitledTabs.
 class TitledTabDelayedMouseExitHoverAction
           TitledTabDelayedMouseExitHoverAction is an action that wraps a HoverListener and delays the mouse exit when a TitledTab is no longer hovered.
 class TitledTabHoverAction
           TitledTabHoverAction is an action that makes it easy to change properties for a hovered TitledTab.
 class TitledTabTabbedPanelHoverAction
           TitledTabTabbedPanelHoverAction is an action that makes it easy to change properties for a hovered TitledTab and the TabbedPanel it is a member of.
 

Fields in net.infonode.tabbedpanel.hover declared as HoverListener
private  HoverListener TitledTabDelayedMouseExitHoverAction.hoverListener
           
 

Methods in net.infonode.tabbedpanel.hover that return HoverListener
 HoverListener TitledTabDelayedMouseExitHoverAction.getHoverListener()
          Gets the hover listener
 

Constructors in net.infonode.tabbedpanel.hover with parameters of type HoverListener
TitledTabDelayedMouseExitHoverAction(int delay, HoverListener hoverListener)
          Creates a TitledTabDelayedMouseExitHoverAction object with the given HoverListener as action
 

Uses of HoverListener in net.infonode.tabbedpanel.titledtab
 

Fields in net.infonode.tabbedpanel.titledtab declared as HoverListener
private  HoverListener TitledTab.hoverListener
           
 

Methods in net.infonode.tabbedpanel.titledtab that return HoverListener
 HoverListener TitledTabProperties.getHoverListener()
          Gets the hover listener that will be triggered when the tab is hovered by the mouse.
 

Methods in net.infonode.tabbedpanel.titledtab with parameters of type HoverListener
 TitledTabProperties TitledTabProperties.setHoverListener(HoverListener listener)
          Sets the hover listener that will be triggered when the tab is hovered by the mouse.
private  void TitledTab.updateHoverListener(HoverListener newHoverListener)