Uses of Class
com.google.gwt.user.client.Event

Packages that use Event
com.google.gwt.user.client   
com.google.gwt.user.client.impl   
com.google.gwt.user.client.ui   
 

Uses of Event in com.google.gwt.user.client
 

Methods in com.google.gwt.user.client with parameters of type Event
 boolean EventPreview.onEventPreview(Event event)
          Called when a browser event occurs and this event preview is on top of the preview stack.
 void EventListener.onBrowserEvent(Event event)
          Fired whenever a browser event is received.
static void DOM.eventCancelBubble(Event evt, boolean cancel)
          Cancels bubbling for the given event.
static boolean DOM.eventGetAltKey(Event evt)
          Gets whether the ALT key was depressed when the given event occurred.
static int DOM.eventGetButton(Event evt)
          Gets the mouse buttons that were depressed when the given event occurred.
static int DOM.eventGetClientX(Event evt)
          Gets the mouse x-position within the browser window's client area.
static int DOM.eventGetClientY(Event evt)
          Gets the mouse y-position within the browser window's client area.
static boolean DOM.eventGetCtrlKey(Event evt)
          Gets whether the CTRL key was depressed when the given event occurred.
static Element DOM.eventGetFromElement(Event evt)
          Gets the element from which the mouse pointer was moved (only valid for ONMOUSEOVER).
static char DOM.eventGetKeyCode(Event evt)
          Gets the key code associated with this event.
static boolean DOM.eventGetRepeat(Event evt)
          Gets the key-repeat state of this event.
static int DOM.eventGetScreenX(Event evt)
          Gets the mouse x-position on the user's display.
static int DOM.eventGetScreenY(Event evt)
          Gets the mouse y-position on the user's display.
static boolean DOM.eventGetShiftKey(Event evt)
          Gets whether the shift key was depressed when the given event occurred.
static Element DOM.eventGetTarget(Event evt)
          Returns the element that was the actual target of the given event.
static Element DOM.eventGetToElement(Event evt)
          Gets the element to which the mouse pointer was moved (only valid for ONMOUSEOUT).
static int DOM.eventGetType(Event evt)
          Gets the enumerated type of this event (as defined in Event).
static String DOM.eventGetTypeString(Event evt)
          Gets the type of the given event as a string.
static void DOM.eventPreventDefault(Event evt)
          Prevents the browser from taking its default action for the given event.
static void DOM.eventSetKeyCode(Event evt, char key)
          Sets the key code associated with the given keyboard event.
static String DOM.eventToString(Event evt)
          Returns a stringized version of the event.
 

Uses of Event in com.google.gwt.user.client.impl
 

Methods in com.google.gwt.user.client.impl with parameters of type Event
 void DOMImpl.eventCancelBubble(Event evt, boolean cancel)
           
 boolean DOMImpl.eventGetAltKey(Event evt)
           
 int DOMImpl.eventGetButton(Event evt)
           
 int DOMImpl.eventGetClientX(Event evt)
           
 int DOMImpl.eventGetClientY(Event evt)
           
 boolean DOMImpl.eventGetCtrlKey(Event evt)
           
 Element DOMImpl.eventGetFromElement(Event evt)
           
 char DOMImpl.eventGetKeyCode(Event evt)
           
 boolean DOMImpl.eventGetRepeat(Event evt)
           
 int DOMImpl.eventGetScreenX(Event evt)
           
 int DOMImpl.eventGetScreenY(Event evt)
           
 boolean DOMImpl.eventGetShiftKey(Event evt)
           
abstract  Element DOMImpl.eventGetTarget(Event evt)
           
 Element DOMImpl.eventGetToElement(Event evt)
           
 String DOMImpl.eventGetType(Event evt)
           
 int DOMImpl.eventGetTypeInt(Event evt)
           
abstract  void DOMImpl.eventPreventDefault(Event evt)
           
 void DOMImpl.eventSetKeyCode(Event evt, char key)
           
abstract  String DOMImpl.eventToString(Event evt)
           
 

Uses of Event in com.google.gwt.user.client.ui
 

Methods in com.google.gwt.user.client.ui with parameters of type Event
 void Widget.onBrowserEvent(Event event)
           
 void Tree.onBrowserEvent(Event event)
           
 void TextBoxBase.onBrowserEvent(Event event)
           
 void StackPanel.onBrowserEvent(Event event)
           
 boolean PopupPanel.onEventPreview(Event event)
           
 void MouseListenerCollection.fireMouseEvent(Widget sender, Event event)
          A helper for widgets that source mouse events.
 void MenuBar.onBrowserEvent(Event event)
           
 void ListBox.onBrowserEvent(Event event)
           
 void Label.onBrowserEvent(Event event)
           
static int KeyboardListenerCollection.getKeyboardModifiers(Event event)
          Gets the keyboard modifiers associated with a DOMEvent.
 void KeyboardListenerCollection.fireKeyboardEvent(Widget sender, Event event)
          Automatically fires the appropriate keyboard event to all listeners.
 void Image.onBrowserEvent(Event event)
           
 void Hyperlink.onBrowserEvent(Event event)
           
 void HTMLTable.onBrowserEvent(Event event)
           
 void FocusWidget.onBrowserEvent(Event event)
           
 void FocusPanel.onBrowserEvent(Event event)
           
 void FocusListenerCollection.fireFocusEvent(Widget sender, Event event)
          A helper for widgets that source focus events.
 



This javadoc distribution was not produced by Google. The official documentation is here.