com.gwtext.client.widgets
Interface FocusPanelListener

All Superinterfaces:
BoxComponentListener, ComponentListener, ContainerListener, PanelListener
All Known Implementing Classes:
FocusPanelListenerAdapter

public interface FocusPanelListener
extends PanelListener


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 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
 

Method Detail

onFocus

void onFocus(FocusPanel panel,
             EventObject e)
Listener for when the panel gets focused

Parameters:
panel - the FocusPanel where the event took place
e - the event object

onBlur

void onBlur(FocusPanel panel,
            EventObject e)
Listener for when the panel gets out of focus

Parameters:
panel - the FocusPanel where the event took place
e - the event object

onClick

void onClick(FocusPanel panel,
             EventObject e)
Listener for when the panel gets clicked

Parameters:
panel - the FocusPanel where the event took place
e - the event object

onDblClick

void onDblClick(FocusPanel panel,
                EventObject e)
Listener for when the panel gets double clicked

Parameters:
panel - the FocusPanel where the event took place
e - the event object

onMouseDown

void onMouseDown(FocusPanel panel,
                 EventObject e)
Listener for when the panel gets a mouse down event

Parameters:
panel - the FocusPanel where the event took place
e - the event object

onMouseUp

void onMouseUp(FocusPanel panel,
               EventObject e)
Listener for when the panel gets a mouse up event

Parameters:
panel - the FocusPanel where the event took place
e - the event object

onKeyPress

void onKeyPress(FocusPanel panel,
                EventObject e)
Listener for when the panel gets a key press event

Parameters:
panel - the FocusPanel where the event took place
e - the event object

onKeyDown

void onKeyDown(FocusPanel panel,
               EventObject e)
Listener for when the panel gets a key down event

Parameters:
panel - the FocusPanel where the event took place
e - the event object

onKeyUp

void onKeyUp(FocusPanel panel,
             EventObject e)
Listener for when the panel gets a key up event

Parameters:
panel - the FocusPanel where the event took place
e - the event object