Package com.google.gwt.user.client
Class Window.ScrollEvent
java.lang.Object
com.google.web.bindery.event.shared.Event<H>
com.google.gwt.event.shared.GwtEvent<Window.ScrollHandler>
com.google.gwt.user.client.Window.ScrollEvent
- Enclosing class:
- Window
Fired when the browser window is scrolled.
-
Nested Class Summary
Nested classes/interfaces inherited from class com.google.gwt.event.shared.GwtEvent
GwtEvent.Type<H> -
Field Summary
FieldsModifier and TypeFieldDescription(package private) static final GwtEvent.Type<Window.ScrollHandler>The event type. -
Method Summary
Modifier and TypeMethodDescriptionprotected voiddispatch(Window.ScrollHandler handler) Should only be called byHandlerManager.Returns theEvent.Typeused to register this event, allowing anEventBusto find handlers of the appropriate class.intGets the window's scroll left.intGet the window's scroll top.(package private) static GwtEvent.Type<Window.ScrollHandler>getType()Methods inherited from class com.google.gwt.event.shared.GwtEvent
assertLive, getSource, isLive, kill, reviveMethods inherited from class com.google.web.bindery.event.shared.Event
setSource, toDebugString, toString
-
Field Details
-
TYPE
The event type.
-
-
Method Details
-
getType
-
getAssociatedType
Description copied from class:EventReturns theEvent.Typeused to register this event, allowing anEventBusto find handlers of the appropriate class.- Specified by:
getAssociatedTypein classGwtEvent<Window.ScrollHandler>- Returns:
- the type
-
getScrollLeft
public int getScrollLeft()Gets the window's scroll left.- Returns:
- window's scroll left
-
getScrollTop
public int getScrollTop()Get the window's scroll top.- Returns:
- the window's scroll top
-
dispatch
Description copied from class:GwtEventShould only be called byHandlerManager. In other words, do not use or call.- Specified by:
dispatchin classGwtEvent<Window.ScrollHandler>- Parameters:
handler- handler- See Also:
-