com.gwtext.client.widgets
Class FocusPanelListenerAdapter

java.lang.Object
  extended by com.gwtext.client.widgets.event.ComponentListenerAdapter
      extended by com.gwtext.client.widgets.event.BoxComponentListenerAdapter
          extended by com.gwtext.client.widgets.event.ContainerListenerAdapter
              extended by com.gwtext.client.widgets.event.PanelListenerAdapter
                  extended by com.gwtext.client.widgets.FocusPanelListenerAdapter
All Implemented Interfaces:
BoxComponentListener, ComponentListener, ContainerListener, PanelListener, FocusPanelListener

public class FocusPanelListenerAdapter
extends PanelListenerAdapter
implements FocusPanelListener


Constructor Summary
FocusPanelListenerAdapter()
           
 
Method Summary
 void onBlur(FocusPanel panel, EventObject e)
          Listener for when the panel gets out of focus
 void onClick(FocusPanel panel, EventObject e)
          Listener for when the panel gets clicked
 void onDblClick(FocusPanel panel, EventObject e)
          Listener for when the panel gets double clicked
 void onFocus(FocusPanel panel, EventObject e)
          Listener for when the panel gets focused
 void onKeyDown(FocusPanel panel, EventObject e)
          Listener for when the panel gets a key down event
 void onKeyPress(FocusPanel panel, EventObject e)
          Listener for when the panel gets a key press event
 void onKeyUp(FocusPanel panel, EventObject e)
          Listener for when the panel gets a key up event
 void onMouseDown(FocusPanel panel, EventObject e)
          Listener for when the panel gets a mouse down event
 void onMouseUp(FocusPanel panel, EventObject e)
          Listener for when the panel gets a mouse up event
 
Methods inherited from class com.gwtext.client.widgets.event.PanelListenerAdapter
doBeforeClose, doBeforeCollapse, doBeforeExpand, onActivate, onBodyResize, onClose, onCollapse, onDeactivate, onExpand, onTitleChange
 
Methods inherited from class com.gwtext.client.widgets.event.ContainerListenerAdapter
doBeforeAdd, doBeforeRemove, onAdd, onAfterLayout, onRemove
 
Methods inherited from class com.gwtext.client.widgets.event.BoxComponentListenerAdapter
onMove, onResize
 
Methods inherited from class com.gwtext.client.widgets.event.ComponentListenerAdapter
doBeforeDestroy, doBeforeHide, doBeforeRender, doBeforeShow, doBeforeStateRestore, doBeforeStateSave, onDestroy, onDisable, onEnable, onHide, onRender, onShow, onStateRestore, onStateSave
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 
Methods inherited from interface com.gwtext.client.widgets.event.PanelListener
doBeforeClose, doBeforeCollapse, doBeforeExpand, onActivate, onBodyResize, onClose, onCollapse, onDeactivate, onExpand, onTitleChange
 
Methods inherited from interface com.gwtext.client.widgets.event.ContainerListener
doBeforeAdd, doBeforeRemove, onAdd, onAfterLayout, onRemove
 
Methods inherited from interface com.gwtext.client.widgets.event.BoxComponentListener
onMove, onResize
 
Methods inherited from interface com.gwtext.client.widgets.event.ComponentListener
doBeforeDestroy, doBeforeHide, doBeforeRender, doBeforeShow, doBeforeStateRestore, doBeforeStateSave, onDestroy, onDisable, onEnable, onHide, onRender, onShow, onStateRestore, onStateSave
 

Constructor Detail

FocusPanelListenerAdapter

public FocusPanelListenerAdapter()
Method Detail

onFocus

public void onFocus(FocusPanel panel,
                    EventObject e)
Description copied from interface: FocusPanelListener
Listener for when the panel gets focused

Specified by:
onFocus in interface FocusPanelListener
Parameters:
panel - the FocusPanel where the event took place
e - the event object

onBlur

public void onBlur(FocusPanel panel,
                   EventObject e)
Description copied from interface: FocusPanelListener
Listener for when the panel gets out of focus

Specified by:
onBlur in interface FocusPanelListener
Parameters:
panel - the FocusPanel where the event took place
e - the event object

onClick

public void onClick(FocusPanel panel,
                    EventObject e)
Description copied from interface: FocusPanelListener
Listener for when the panel gets clicked

Specified by:
onClick in interface FocusPanelListener
Parameters:
panel - the FocusPanel where the event took place
e - the event object

onDblClick

public void onDblClick(FocusPanel panel,
                       EventObject e)
Description copied from interface: FocusPanelListener
Listener for when the panel gets double clicked

Specified by:
onDblClick in interface FocusPanelListener
Parameters:
panel - the FocusPanel where the event took place
e - the event object

onKeyDown

public void onKeyDown(FocusPanel panel,
                      EventObject e)
Description copied from interface: FocusPanelListener
Listener for when the panel gets a key down event

Specified by:
onKeyDown in interface FocusPanelListener
Parameters:
panel - the FocusPanel where the event took place
e - the event object

onKeyPress

public void onKeyPress(FocusPanel panel,
                       EventObject e)
Description copied from interface: FocusPanelListener
Listener for when the panel gets a key press event

Specified by:
onKeyPress in interface FocusPanelListener
Parameters:
panel - the FocusPanel where the event took place
e - the event object

onKeyUp

public void onKeyUp(FocusPanel panel,
                    EventObject e)
Description copied from interface: FocusPanelListener
Listener for when the panel gets a key up event

Specified by:
onKeyUp in interface FocusPanelListener
Parameters:
panel - the FocusPanel where the event took place
e - the event object

onMouseDown

public void onMouseDown(FocusPanel panel,
                        EventObject e)
Description copied from interface: FocusPanelListener
Listener for when the panel gets a mouse down event

Specified by:
onMouseDown in interface FocusPanelListener
Parameters:
panel - the FocusPanel where the event took place
e - the event object

onMouseUp

public void onMouseUp(FocusPanel panel,
                      EventObject e)
Description copied from interface: FocusPanelListener
Listener for when the panel gets a mouse up event

Specified by:
onMouseUp in interface FocusPanelListener
Parameters:
panel - the FocusPanel where the event took place
e - the event object