GWT Tk 0.2.3

asquare.gwt.tk.client.ui.behavior.impl
Class GlassPanelControllerIE6

java.lang.Object
  extended by asquare.gwt.tk.client.ui.behavior.impl.GlassPanelControllerIE6
All Implemented Interfaces:
Controller, EventDelegate, GlassPanelController

public class GlassPanelControllerIE6
extends Object
implements GlassPanelController


Constructor Summary
GlassPanelControllerIE6()
           
 
Method Summary
protected  GlassPanelController createImpl()
           
 int getEventBits()
          Get a bitmask representing events this delegate is interested in processing.
 Class getId()
          Get the id of this controller.
 void onBrowserEvent(Widget widget, Event event)
          Call this from your widget's onBrowserEvent() method to to delegate events.
 void plugIn(Widget widget)
          Called when the widget is attached to the DOM.
 void unplug(Widget widget)
          Called when the widget is detached from the DOM.
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

GlassPanelControllerIE6

public GlassPanelControllerIE6()
Method Detail

createImpl

protected GlassPanelController createImpl()

getEventBits

public int getEventBits()
Description copied from interface: EventDelegate
Get a bitmask representing events this delegate is interested in processing.

Specified by:
getEventBits in interface EventDelegate
Returns:
a bitmask of the events to process
See Also:
Event

getId

public Class getId()
Description copied from interface: Controller
Get the id of this controller. Used for looking up a controller in a collection. Controllers with a single implementation will return the class of the controller. Controllers with multiple implementations will return the class of the interface or base class.

Specified by:
getId in interface Controller

onBrowserEvent

public void onBrowserEvent(Widget widget,
                           Event event)
Description copied from interface: EventDelegate
Call this from your widget's onBrowserEvent() method to to delegate events.

Example:

 public void onBrowserEvent(Event event)
 {
   super.onBrowserEvent(event);
   delegate.onBrowserEvent(this, event);
 }
 

Specified by:
onBrowserEvent in interface EventDelegate
Parameters:
widget - the wiget that originated the event
event - the event

plugIn

public void plugIn(Widget widget)
Description copied from interface: Controller
Called when the widget is attached to the DOM. Use to initialize widget, install special hooks and attach listeners.

Specified by:
plugIn in interface Controller
Parameters:
widget - the view to control

unplug

public void unplug(Widget widget)
Description copied from interface: Controller
Called when the widget is detached from the DOM. Use to remove listeners and null out any references set on the DOM.

Specified by:
unplug in interface Controller

GWT Tk 0.2.3

© 2007 Mat Gessel