| /* |
| * Copyright 2008 Google Inc. |
| * |
| * Licensed under the Apache License, Version 2.0 (the "License"); you may not |
| * use this file except in compliance with the License. You may obtain a copy of |
| * the License at |
| * |
| * http://www.apache.org/licenses/LICENSE-2.0 |
| * |
| * Unless required by applicable law or agreed to in writing, software |
| * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT |
| * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the |
| * License for the specific language governing permissions and limitations under |
| * the License. |
| */ |
| package com.google.gwt.dom.client; |
| |
| /** |
| * A Document is the root of the HTML hierarchy and holds the entire content. |
| * Besides providing access to the hierarchy, it also provides some convenience |
| * methods for accessing certain sets of information from the document. |
| */ |
| public class Document extends Node { |
| |
| /** |
| * Gets the default document. This is the document in which the module is |
| * running. |
| * |
| * @return the default document |
| */ |
| public static native Document get() /*-{ |
| return $doc; |
| }-*/; |
| |
| protected Document() { |
| } |
| |
| /** |
| * Creates an <a> element. |
| * |
| * @return the newly created element |
| */ |
| public final AnchorElement createAnchorElement() { |
| return (AnchorElement) DOMImpl.impl.createElement(AnchorElement.TAG); |
| } |
| |
| /** |
| * Creates an <area> element. |
| * |
| * @return the newly created element |
| */ |
| public final AreaElement createAreaElement() { |
| return (AreaElement) DOMImpl.impl.createElement(AreaElement.TAG); |
| } |
| |
| /** |
| * Creates a <base> element. |
| * |
| * @return the newly created element |
| */ |
| public final BaseElement createBaseElement() { |
| return (BaseElement) DOMImpl.impl.createElement(BaseElement.TAG); |
| } |
| |
| /** |
| * Creates a <blockquote> element. |
| * |
| * @return the newly created element |
| */ |
| public final QuoteElement createBlockQuoteElement() { |
| return (QuoteElement) DOMImpl.impl.createElement(QuoteElement.TAG_BLOCKQUOTE); |
| } |
| |
| /** |
| * Creates a 'blur' event. |
| */ |
| public final NativeEvent createBlurEvent() { |
| return createHtmlEvent("blur", false, false); |
| } |
| |
| /** |
| * Creates a <br> element. |
| * |
| * @return the newly created element |
| */ |
| public final BRElement createBRElement() { |
| return (BRElement) DOMImpl.impl.createElement(BRElement.TAG); |
| } |
| |
| /** |
| * Creates a <button> element. |
| * |
| * @return the newly created element |
| */ |
| public final ButtonElement createButtonElement() { |
| return (ButtonElement) DOMImpl.impl.createElement(ButtonElement.TAG); |
| } |
| |
| /** |
| * Creates a <caption> element. |
| * |
| * @return the newly created element |
| */ |
| public final TableCaptionElement createCaptionElement() { |
| return (TableCaptionElement) DOMImpl.impl.createElement(TableCaptionElement.TAG); |
| } |
| |
| /** |
| * Creates a 'change' event. |
| */ |
| public final NativeEvent createChangeEvent() { |
| return createHtmlEvent("change", false, true); |
| } |
| |
| /** |
| * Creates an <input type='checkbox'> element. |
| * |
| * @return the newly created element |
| */ |
| public final InputElement createCheckInputElement() { |
| return DOMImpl.impl.createInputElement("checkbox"); |
| } |
| |
| /** |
| * Creates a 'click' event. |
| * |
| * <p> |
| * Note that this method does not allow the event's 'button' field to be |
| * specified, because not all browsers support it reliably for click events. |
| * </p> |
| * |
| * @param detail the event's detail property |
| * @param screenX the event's screen-relative x-position |
| * @param screenY the event's screen-relative y-position |
| * @param clientX the event's client-relative x-position |
| * @param clientY the event's client-relative y-position |
| * @param ctrlKey <code>true</code> if the ctrl key is depressed |
| * @param altKey <code>true</code> if the alt key is depressed |
| * @param shiftKey <code>true</code> if the shift key is depressed |
| * @param metaKey <code>true</code> if the meta key is depressed |
| * @return the event object |
| */ |
| public final NativeEvent createClickEvent(int detail, int screenX, int screenY, |
| int clientX, int clientY, boolean ctrlKey, boolean altKey, |
| boolean shiftKey, boolean metaKey) { |
| // We disallow setting the button here, because IE doesn't provide the |
| // button property for click events. |
| return createMouseEvent("click", true, true, detail, screenX, screenY, |
| clientX, clientY, ctrlKey, altKey, shiftKey, metaKey, |
| NativeEvent.BUTTON_LEFT, null); |
| } |
| |
| /** |
| * Creates a <col> element. |
| * |
| * @return the newly created element |
| */ |
| public final TableColElement createColElement() { |
| return (TableColElement) DOMImpl.impl.createElement(TableColElement.TAG_COL); |
| } |
| |
| /** |
| * Creates a <colgroup> element. |
| * |
| * @return the newly created element |
| */ |
| public final TableColElement createColGroupElement() { |
| return (TableColElement) DOMImpl.impl.createElement(TableColElement.TAG_COLGROUP); |
| } |
| |
| /** |
| * Creates a 'contextmenu' event. |
| * |
| * Note: Contextmenu events will not dispatch properly on Firefox 2 and |
| * earlier. |
| * |
| * @return the event object |
| */ |
| public final NativeEvent createContextMenuEvent() { |
| return createHtmlEvent("contextmenu", true, true); |
| } |
| |
| /** |
| * Creates a 'dblclick' event. |
| * |
| * <p> |
| * Note that this method does not allow the event's 'button' field to be |
| * specified, because not all browsers support it reliably for click events. |
| * </p> |
| * |
| * <p> |
| * Note that on some browsers, this may cause 'click' events to be synthesized |
| * as well. |
| * </p> |
| * |
| * @param detail the event's detail property |
| * @param screenX the event's screen-relative x-position |
| * @param screenY the event's screen-relative y-position |
| * @param clientX the event's client-relative x-position |
| * @param clientY the event's client-relative y-position |
| * @param ctrlKey <code>true</code> if the ctrl key is depressed |
| * @param altKey <code>true</code> if the alt key is depressed |
| * @param shiftKey <code>true</code> if the shift key is depressed |
| * @param metaKey <code>true</code> if the meta key is depressed |
| * @return the event object |
| */ |
| public final NativeEvent createDblClickEvent(int detail, int screenX, int screenY, |
| int clientX, int clientY, boolean ctrlKey, boolean altKey, |
| boolean shiftKey, boolean metaKey) { |
| // We disallow setting the button here, because IE doesn't provide the |
| // button property for click events. |
| return createMouseEvent("dblclick", true, true, detail, screenX, screenY, |
| clientX, clientY, ctrlKey, altKey, shiftKey, metaKey, |
| NativeEvent.BUTTON_LEFT, null); |
| } |
| |
| /** |
| * Creates a <del> element. |
| * |
| * @return the newly created element |
| */ |
| public final ModElement createDelElement() { |
| return (ModElement) DOMImpl.impl.createElement(ModElement.TAG_DEL); |
| } |
| |
| /** |
| * Creates a <div> element. |
| * |
| * @return the newly created element |
| */ |
| public final DivElement createDivElement() { |
| return (DivElement) DOMImpl.impl.createElement(DivElement.TAG); |
| } |
| |
| /** |
| * Creates a <dl> element. |
| * |
| * @return the newly created element |
| */ |
| public final DListElement createDLElement() { |
| return (DListElement) DOMImpl.impl.createElement(DListElement.TAG); |
| } |
| |
| /** |
| * Creates a new element. |
| * |
| * @param tagName the tag name of the element to be created |
| * @return the newly created element |
| */ |
| public final Element createElement(String tagName) { |
| return DOMImpl.impl.createElement(tagName); |
| } |
| |
| /** |
| * Creates an 'error' event. |
| * |
| * @return the event object |
| */ |
| public final NativeEvent createErrorEvent() { |
| return createHtmlEvent("error", false, false); |
| } |
| |
| /** |
| * Creates a <fieldset> element. |
| * |
| * @return the newly created element |
| */ |
| public final FieldSetElement createFieldSetElement() { |
| return (FieldSetElement) DOMImpl.impl.createElement(FieldSetElement.TAG); |
| } |
| |
| /** |
| * Creates an <input type='file'> element. |
| * |
| * @return the newly created element |
| */ |
| public final InputElement createFileInputElement() { |
| return DOMImpl.impl.createInputElement("file"); |
| } |
| |
| /** |
| * Creates a 'focus' event. |
| * |
| * @return the event object |
| */ |
| public final NativeEvent createFocusEvent() { |
| return createHtmlEvent("focus", false, false); |
| } |
| |
| /** |
| * Creates a <form> element. |
| * |
| * @return the newly created element |
| */ |
| public final FormElement createFormElement() { |
| return (FormElement) DOMImpl.impl.createElement(FormElement.TAG); |
| } |
| |
| /** |
| * Creates a <frame> element. |
| * |
| * @return the newly created element |
| */ |
| public final FrameElement createFrameElement() { |
| return (FrameElement) DOMImpl.impl.createElement(FrameElement.TAG); |
| } |
| |
| /** |
| * Creates a <frameset> element. |
| * |
| * @return the newly created element |
| */ |
| public final FrameSetElement createFrameSetElement() { |
| return (FrameSetElement) DOMImpl.impl.createElement(FrameSetElement.TAG); |
| } |
| |
| /** |
| * Creates a <head> element. |
| * |
| * @return the newly created element |
| */ |
| public final HeadElement createHeadElement() { |
| return (HeadElement) DOMImpl.impl.createElement(HeadElement.TAG); |
| } |
| |
| /** |
| * Creates an <h(n)> element. |
| * |
| * @param n the type of heading, from 1 to 6 inclusive |
| * @return the newly created element |
| */ |
| public final HeadingElement createHElement(int n) { |
| assert (n >= 1) && (n <= 6); |
| return (HeadingElement) DOMImpl.impl.createElement("h" + n); |
| } |
| |
| /** |
| * Creates an <input type='hidden'> element. |
| * |
| * @return the newly created element |
| */ |
| public final InputElement createHiddenInputElement() { |
| return DOMImpl.impl.createInputElement("hidden"); |
| } |
| |
| /** |
| * Creates an <hr> element. |
| * |
| * @return the newly created element |
| */ |
| public final HRElement createHRElement() { |
| return (HRElement) DOMImpl.impl.createElement(HRElement.TAG); |
| } |
| |
| /** |
| * Creates an event. |
| * |
| * <p> |
| * While this method may be used to create events directly, it is generally |
| * preferable to use existing helper methods such as |
| * {@link #createFocusEvent()}. |
| * </p> |
| * |
| * <p> |
| * Also, note that on Internet Explorer the 'canBubble' and 'cancelable' |
| * arguments will be ignored (the event's behavior is inferred by the browser |
| * based upon its type). |
| * </p> |
| * |
| * @param type the type of event (e.g., "focus", "load", etc) |
| * @param canBubble <code>true</code> if the event should bubble |
| * @param cancelable <code>true</code> if the event should be cancelable |
| * @return the event object |
| */ |
| public final NativeEvent createHtmlEvent(String type, boolean canBubble, |
| boolean cancelable) { |
| return DOMImpl.impl.createHtmlEvent(this, type, canBubble, cancelable); |
| } |
| |
| /** |
| * Creates an <iframe> element. |
| * |
| * @return the newly created element |
| */ |
| public final IFrameElement createIFrameElement() { |
| return (IFrameElement) DOMImpl.impl.createElement(IFrameElement.TAG); |
| } |
| |
| /** |
| * Creates an <img> element. |
| * |
| * @return the newly created element |
| */ |
| public final ImageElement createImageElement() { |
| return (ImageElement) DOMImpl.impl.createElement(ImageElement.TAG); |
| } |
| |
| /** |
| * Creates an <input type='image'> element. |
| * |
| * @return the newly created element |
| */ |
| public final InputElement createImageInputElement() { |
| return DOMImpl.impl.createInputElement("image"); |
| } |
| |
| /** |
| * Creates an <ins> element. |
| * |
| * @return the newly created element |
| */ |
| public final ModElement createInsElement() { |
| return (ModElement) DOMImpl.impl.createElement(ModElement.TAG_INS); |
| } |
| |
| /** |
| * Creates a 'keydown' event. |
| * |
| * @param ctrlKey <code>true</code> if the ctrl key is depressed |
| * @param altKey <code>true</code> if the alt key is depressed |
| * @param shiftKey <code>true</code> if the shift key is depressed |
| * @param metaKey <code>true</code> if the meta key is depressed |
| * @param keyCode the key-code to be set on the event |
| * @param charCode the char-code to be set on the event |
| * @return the event object |
| */ |
| public final NativeEvent createKeyDownEvent(boolean ctrlKey, boolean altKey, |
| boolean shiftKey, boolean metaKey, int keyCode, int charCode) { |
| return createKeyEvent("keydown", true, true, ctrlKey, altKey, shiftKey, |
| metaKey, keyCode, charCode); |
| } |
| |
| /** |
| * Creates a key event. |
| * |
| * <p> |
| * While this method may be used to create events directly, it is generally |
| * preferable to use existing helper methods such as |
| * {@link #createKeyPressEvent(boolean, boolean, boolean, boolean, int, int)} |
| * . |
| * </p> |
| * |
| * <p> |
| * Also, note that on Internet Explorer the 'canBubble' and 'cancelable' |
| * arguments will be ignored (the event's behavior is inferred by the browser |
| * based upon its type). |
| * </p> |
| * |
| * @param type the type of event (e.g., "focus", "load", etc) |
| * @param canBubble <code>true</code> if the event should bubble |
| * @param cancelable <code>true</code> if the event should be cancelable |
| * @param ctrlKey <code>true</code> if the ctrl key is depressed |
| * @param altKey <code>true</code> if the alt key is depressed |
| * @param shiftKey <code>true</code> if the shift key is depressed |
| * @param metaKey <code>true</code> if the meta key is depressed |
| * @param keyCode the key-code to be set on the event |
| * @param charCode the char-code to be set on the event |
| * @return the event object |
| */ |
| public final NativeEvent createKeyEvent(String type, boolean canBubble, |
| boolean cancelable, boolean ctrlKey, boolean altKey, boolean shiftKey, |
| boolean metaKey, int keyCode, int charCode) { |
| return DOMImpl.impl.createKeyEvent(this, type, canBubble, cancelable, |
| ctrlKey, altKey, shiftKey, metaKey, keyCode, charCode); |
| } |
| |
| /** |
| * Creates a 'keypress' event. |
| * |
| * @param ctrlKey <code>true</code> if the ctrl key is depressed |
| * @param altKey <code>true</code> if the alt key is depressed |
| * @param shiftKey <code>true</code> if the shift key is depressed |
| * @param metaKey <code>true</code> if the meta key is depressed |
| * @param keyCode the key-code to be set on the event |
| * @param charCode the char-code to be set on the event |
| * @return the event object |
| */ |
| public final NativeEvent createKeyPressEvent(boolean ctrlKey, boolean altKey, |
| boolean shiftKey, boolean metaKey, int keyCode, int charCode) { |
| return createKeyEvent("keypress", true, true, ctrlKey, altKey, shiftKey, |
| metaKey, keyCode, charCode); |
| } |
| |
| /** |
| * Creates a 'keyup' event. |
| * |
| * @param ctrlKey <code>true</code> if the ctrl key is depressed |
| * @param altKey <code>true</code> if the alt key is depressed |
| * @param shiftKey <code>true</code> if the shift key is depressed |
| * @param metaKey <code>true</code> if the meta key is depressed |
| * @param keyCode the key-code to be set on the event |
| * @param charCode the char-code to be set on the event |
| * @return the event object |
| */ |
| public final NativeEvent createKeyUpEvent(boolean ctrlKey, boolean altKey, |
| boolean shiftKey, boolean metaKey, int keyCode, int charCode) { |
| return createKeyEvent("keyup", true, true, ctrlKey, altKey, shiftKey, |
| metaKey, keyCode, charCode); |
| } |
| |
| /** |
| * Creates a <label> element. |
| * |
| * @return the newly created element |
| */ |
| public final LabelElement createLabelElement() { |
| return (LabelElement) DOMImpl.impl.createElement(LabelElement.TAG); |
| } |
| |
| /** |
| * Creates a <legend> element. |
| * |
| * @return the newly created element |
| */ |
| public final LegendElement createLegendElement() { |
| return (LegendElement) DOMImpl.impl.createElement(LegendElement.TAG); |
| } |
| |
| /** |
| * Creates a <li> element. |
| * |
| * @return the newly created element |
| */ |
| public final LIElement createLIElement() { |
| return (LIElement) DOMImpl.impl.createElement(LIElement.TAG); |
| } |
| |
| /** |
| * Creates a <link> element. |
| * |
| * @return the newly created element |
| */ |
| public final LinkElement createLinkElement() { |
| return (LinkElement) DOMImpl.impl.createElement(LinkElement.TAG); |
| } |
| |
| /** |
| * Creates a 'load' event. |
| * |
| * @return the event object |
| */ |
| public final NativeEvent createLoadEvent() { |
| return createHtmlEvent("load", false, false); |
| } |
| |
| /** |
| * Creates a <map> element. |
| * |
| * @return the newly created element |
| */ |
| public final MapElement createMapElement() { |
| return (MapElement) DOMImpl.impl.createElement(MapElement.TAG); |
| } |
| |
| /** |
| * Creates a <meta> element. |
| * |
| * @return the newly created element |
| */ |
| public final MetaElement createMetaElement() { |
| return (MetaElement) DOMImpl.impl.createElement(MetaElement.TAG); |
| } |
| |
| /** |
| * Creates a 'mousedown' event. |
| * |
| * @param detail the event's detail property |
| * @param screenX the event's screen-relative x-position |
| * @param screenY the event's screen-relative y-position |
| * @param clientX the event's client-relative x-position |
| * @param clientY the event's client-relative y-position |
| * @param ctrlKey <code>true</code> if the ctrl key is depressed |
| * @param altKey <code>true</code> if the alt key is depressed |
| * @param shiftKey <code>true</code> if the shift key is depressed |
| * @param metaKey <code>true</code> if the meta key is depressed |
| * @param button the event's button property (values from |
| * {@link Event#BUTTON_LEFT} et al) |
| * @return the event object |
| */ |
| public final NativeEvent createMouseDownEvent(int detail, int screenX, int screenY, |
| int clientX, int clientY, boolean ctrlKey, boolean altKey, |
| boolean shiftKey, boolean metaKey, int button) { |
| return createMouseEvent("mousedown", true, true, detail, screenX, screenY, |
| clientX, clientY, ctrlKey, altKey, shiftKey, metaKey, button, null); |
| } |
| |
| /** |
| * Creates an mouse event. |
| * |
| * <p> |
| * While this method may be used to create events directly, it is generally |
| * preferable to use existing helper methods such as |
| * {@link #createClickEvent(int, int, int, int, int, boolean, boolean, boolean, boolean)} |
| * . |
| * </p> |
| * |
| * <p> |
| * Also, note that on Internet Explorer the 'canBubble' and 'cancelable' |
| * arguments will be ignored (the event's behavior is inferred by the browser |
| * based upon its type). |
| * </p> |
| * |
| * @param type the type of event (e.g., "focus", "load", etc) |
| * @param canBubble <code>true</code> if the event should bubble |
| * @param cancelable <code>true</code> if the event should be cancelable |
| * @param detail the event's detail property |
| * @param screenX the event's screen-relative x-position |
| * @param screenY the event's screen-relative y-position |
| * @param clientX the event's client-relative x-position |
| * @param clientY the event's client-relative y-position |
| * @param ctrlKey <code>true</code> if the ctrl key is depressed |
| * @param altKey <code>true</code> if the alt key is depressed |
| * @param shiftKey <code>true</code> if the shift key is depressed |
| * @param metaKey <code>true</code> if the meta key is depressed |
| * @param button the event's button property (values from |
| * {@link Event#BUTTON_LEFT} et al) |
| * @param relatedTarget the event's related target (only relevant for |
| * mouseover and mouseout events) |
| * @return the event object |
| */ |
| public final NativeEvent createMouseEvent(String type, boolean canBubble, |
| boolean cancelable, int detail, int screenX, int screenY, int clientX, |
| int clientY, boolean ctrlKey, boolean altKey, boolean shiftKey, |
| boolean metaKey, int button, Element relatedTarget) { |
| return DOMImpl.impl.createMouseEvent(this, type, canBubble, cancelable, |
| detail, screenX, screenY, clientX, clientY, ctrlKey, altKey, shiftKey, |
| metaKey, button, relatedTarget); |
| } |
| |
| /** |
| * Creates a 'mousemove' event. |
| * |
| * @param detail the event's detail property |
| * @param screenX the event's screen-relative x-position |
| * @param screenY the event's screen-relative y-position |
| * @param clientX the event's client-relative x-position |
| * @param clientY the event's client-relative y-position |
| * @param ctrlKey <code>true</code> if the ctrl key is depressed |
| * @param altKey <code>true</code> if the alt key is depressed |
| * @param shiftKey <code>true</code> if the shift key is depressed |
| * @param metaKey <code>true</code> if the meta key is depressed |
| * @param button the event's button property (values from |
| * {@link Event#BUTTON_LEFT} et al) |
| * @return the event object |
| */ |
| public final NativeEvent createMouseMoveEvent(int detail, int screenX, int screenY, |
| int clientX, int clientY, boolean ctrlKey, boolean altKey, |
| boolean shiftKey, boolean metaKey, int button) { |
| return createMouseEvent("mousemove", true, true, detail, screenX, screenY, |
| clientX, clientY, ctrlKey, altKey, shiftKey, metaKey, button, null); |
| } |
| |
| /** |
| * Creates a 'mouseout' event. |
| * |
| * Note: The 'relatedTarget' parameter will be ignored on Firefox 2 and |
| * earlier. |
| * |
| * @param detail the event's detail property |
| * @param screenX the event's screen-relative x-position |
| * @param screenY the event's screen-relative y-position |
| * @param clientX the event's client-relative x-position |
| * @param clientY the event's client-relative y-position |
| * @param ctrlKey <code>true</code> if the ctrl key is depressed |
| * @param altKey <code>true</code> if the alt key is depressed |
| * @param shiftKey <code>true</code> if the shift key is depressed |
| * @param metaKey <code>true</code> if the meta key is depressed |
| * @param button the event's button property (values from |
| * {@link Event#BUTTON_LEFT} et al) |
| * @param relatedTarget the event's related target |
| * @return the event object |
| */ |
| public final NativeEvent createMouseOutEvent(int detail, int screenX, int screenY, |
| int clientX, int clientY, boolean ctrlKey, boolean altKey, |
| boolean shiftKey, boolean metaKey, int button, Element relatedTarget) { |
| return createMouseEvent("mouseout", true, true, detail, screenX, screenY, |
| clientX, clientY, ctrlKey, altKey, shiftKey, metaKey, button, |
| relatedTarget); |
| } |
| |
| /** |
| * Creates a 'mouseover' event. |
| * |
| * Note: The 'relatedTarget' parameter will be ignored on Firefox 2 and |
| * earlier. |
| * |
| * @param detail the event's detail property |
| * @param screenX the event's screen-relative x-position |
| * @param screenY the event's screen-relative y-position |
| * @param clientX the event's client-relative x-position |
| * @param clientY the event's client-relative y-position |
| * @param ctrlKey <code>true</code> if the ctrl key is depressed |
| * @param altKey <code>true</code> if the alt key is depressed |
| * @param shiftKey <code>true</code> if the shift key is depressed |
| * @param metaKey <code>true</code> if the meta key is depressed |
| * @param button the event's button property (values from |
| * {@link Event#BUTTON_LEFT} et al) |
| * @param relatedTarget the event's related target |
| * @return the event object |
| */ |
| public final NativeEvent createMouseOverEvent(int detail, int screenX, int screenY, |
| int clientX, int clientY, boolean ctrlKey, boolean altKey, |
| boolean shiftKey, boolean metaKey, int button, Element relatedTarget) { |
| return createMouseEvent("mouseover", true, true, detail, screenX, screenY, |
| clientX, clientY, ctrlKey, altKey, shiftKey, metaKey, button, |
| relatedTarget); |
| } |
| |
| /** |
| * Creates a 'mouseup' event. |
| * |
| * @param detail the event's detail property |
| * @param screenX the event's screen-relative x-position |
| * @param screenY the event's screen-relative y-position |
| * @param clientX the event's client-relative x-position |
| * @param clientY the event's client-relative y-position |
| * @param ctrlKey <code>true</code> if the ctrl key is depressed |
| * @param altKey <code>true</code> if the alt key is depressed |
| * @param shiftKey <code>true</code> if the shift key is depressed |
| * @param metaKey <code>true</code> if the meta key is depressed |
| * @param button the event's button property (values from |
| * {@link Event#BUTTON_LEFT} et al) |
| * @return the event object |
| */ |
| public final NativeEvent createMouseUpEvent(int detail, int screenX, int screenY, |
| int clientX, int clientY, boolean ctrlKey, boolean altKey, |
| boolean shiftKey, boolean metaKey, int button) { |
| return createMouseEvent("mouseup", true, true, detail, screenX, screenY, |
| clientX, clientY, ctrlKey, altKey, shiftKey, metaKey, button, null); |
| } |
| |
| /** |
| * Creates a <object> element. |
| * |
| * @return the newly created element |
| */ |
| public final ObjectElement createObjectElement() { |
| return (ObjectElement) DOMImpl.impl.createElement(ObjectElement.TAG); |
| } |
| |
| /** |
| * Creates an <ol> element. |
| * |
| * @return the newly created element |
| */ |
| public final OListElement createOLElement() { |
| return (OListElement) DOMImpl.impl.createElement(OListElement.TAG); |
| } |
| |
| /** |
| * Creates an <optgroup> element. |
| * |
| * @return the newly created element |
| */ |
| public final OptGroupElement createOptGroupElement() { |
| return (OptGroupElement) DOMImpl.impl.createElement(OptGroupElement.TAG); |
| } |
| |
| /** |
| * Creates an <option> element. |
| * |
| * @return the newly created element |
| */ |
| public final OptionElement createOptionElement() { |
| return (OptionElement) DOMImpl.impl.createElement(OptionElement.TAG); |
| } |
| |
| /** |
| * Creates a <param> element. |
| * |
| * @return the newly created element |
| */ |
| public final ParamElement createParamElement() { |
| return (ParamElement) DOMImpl.impl.createElement(ParamElement.TAG); |
| } |
| |
| /** |
| * Creates an <input type='password'> element. |
| * |
| * @return the newly created element |
| */ |
| public final InputElement createPasswordInputElement() { |
| return DOMImpl.impl.createInputElement("password"); |
| } |
| |
| /** |
| * Creates a <p> element. |
| * |
| * @return the newly created element |
| */ |
| public final ParagraphElement createPElement() { |
| return (ParagraphElement) DOMImpl.impl.createElement(ParagraphElement.TAG); |
| } |
| |
| /** |
| * Creates a <pre> element. |
| * |
| * @return the newly created element |
| */ |
| public final PreElement createPreElement() { |
| return (PreElement) DOMImpl.impl.createElement(PreElement.TAG); |
| } |
| |
| /** |
| * Creates a <q> element. |
| * |
| * @return the newly created element |
| */ |
| public final QuoteElement createQElement() { |
| return (QuoteElement) DOMImpl.impl.createElement(QuoteElement.TAG_Q); |
| } |
| |
| /** |
| * Creates an <input type='radio'> element. |
| * |
| * @param name the name of the radio input (used for grouping) |
| * @return the newly created element |
| */ |
| public final InputElement createRadioInputElement(String name) { |
| return DOMImpl.impl.createInputRadioElement(name); |
| } |
| |
| /** |
| * Creates a <script> element. |
| * |
| * @return the newly created element |
| */ |
| public final ScriptElement createScriptElement() { |
| return (ScriptElement) DOMImpl.impl.createElement(ScriptElement.TAG); |
| } |
| |
| /** |
| * Creates a <script> element. |
| * |
| * @param source the source code to set inside the element |
| * @return the newly created element |
| */ |
| public final ScriptElement createScriptElement(String source) { |
| return DOMImpl.impl.createScriptElement(source); |
| } |
| |
| /** |
| * Creates a 'scroll' event. |
| * |
| * Note: Contextmenu events will not dispatch properly on Firefox 2 and |
| * earlier. |
| * |
| * @return the event object |
| */ |
| public final NativeEvent createScrollEvent() { |
| return createHtmlEvent("scroll", false, false); |
| } |
| |
| /** |
| * Creates a <select> element. |
| * |
| * @return the newly created element |
| */ |
| public final SelectElement createSelectElement() { |
| return DOMImpl.impl.createSelectElement(false); |
| } |
| |
| /** |
| * Creates a <select> element. |
| * |
| * @param multiple <code>true</code> to allow multiple-selection |
| * @return the newly created element |
| */ |
| public final SelectElement createSelectElement(boolean multiple) { |
| return DOMImpl.impl.createSelectElement(multiple); |
| } |
| |
| /** |
| * Creates a <span> element. |
| * |
| * @return the newly created element |
| */ |
| public final SpanElement createSpanElement() { |
| return (SpanElement) DOMImpl.impl.createElement(SpanElement.TAG); |
| } |
| |
| /** |
| * Creates a <style> element. |
| * |
| * @return the newly created element |
| */ |
| public final StyleElement createStyleElement() { |
| return (StyleElement) DOMImpl.impl.createElement(StyleElement.TAG); |
| } |
| |
| /** |
| * Creates a <table> element. |
| * |
| * @return the newly created element |
| */ |
| public final TableElement createTableElement() { |
| return (TableElement) DOMImpl.impl.createElement(TableElement.TAG); |
| } |
| |
| /** |
| * Creates a <tbody> element. |
| * |
| * @return the newly created element |
| */ |
| public final TableSectionElement createTBodyElement() { |
| return (TableSectionElement) DOMImpl.impl.createElement(TableSectionElement.TAG_TBODY); |
| } |
| |
| /** |
| * Creates a <td> element. |
| * |
| * @return the newly created element |
| */ |
| public final TableCellElement createTDElement() { |
| return (TableCellElement) DOMImpl.impl.createElement(TableCellElement.TAG_TD); |
| } |
| |
| /** |
| * Creates a <textarea> element. |
| * |
| * @return the newly created element |
| */ |
| public final TextAreaElement createTextAreaElement() { |
| return (TextAreaElement) DOMImpl.impl.createElement(TextAreaElement.TAG); |
| } |
| |
| /** |
| * Creates an <input type='text'> element. |
| * |
| * @return the newly created element |
| */ |
| public final InputElement createTextInputElement() { |
| return DOMImpl.impl.createInputElement("text"); |
| } |
| |
| /** |
| * Creates a text node. |
| * |
| * @param data the text node's initial text |
| * @return the newly created element |
| */ |
| public final native Text createTextNode(String data) /*-{ |
| return this.createTextNode(data); |
| }-*/; |
| |
| /** |
| * Creates a <tfoot> element. |
| * |
| * @return the newly created element |
| */ |
| public final TableSectionElement createTFootElement() { |
| return (TableSectionElement) DOMImpl.impl.createElement(TableSectionElement.TAG_TFOOT); |
| } |
| |
| /** |
| * Creates a <thead> element. |
| * |
| * @return the newly created element |
| */ |
| public final TableSectionElement createTHeadElement() { |
| return (TableSectionElement) DOMImpl.impl.createElement(TableSectionElement.TAG_THEAD); |
| } |
| |
| /** |
| * Creates a <th> element. |
| * |
| * @return the newly created element |
| */ |
| public final TableCellElement createTHElement() { |
| return (TableCellElement) DOMImpl.impl.createElement(TableCellElement.TAG_TH); |
| } |
| |
| /** |
| * Creates a <title> element. |
| * |
| * @return the newly created element |
| */ |
| public final TitleElement createTitleElement() { |
| return (TitleElement) DOMImpl.impl.createElement(TitleElement.TAG); |
| } |
| |
| /** |
| * Creates a <tr> element. |
| * |
| * @return the newly created element |
| */ |
| public final TableRowElement createTRElement() { |
| return (TableRowElement) DOMImpl.impl.createElement(TableRowElement.TAG); |
| } |
| |
| /** |
| * Creates a <ul> element. |
| * |
| * @return the newly created element |
| */ |
| public final UListElement createULElement() { |
| return (UListElement) DOMImpl.impl.createElement(UListElement.TAG); |
| } |
| |
| /** |
| * Creates an identifier guaranteed to be unique within this document. |
| * |
| * This is useful for allocating element id's. |
| * |
| * @return a unique identifier |
| */ |
| public final native String createUniqueId() /*-{ |
| // In order to force uid's to be document-unique across multiple modules, |
| // we hang a counter from the document. |
| if (!this.gwt_uid) { |
| this.gwt_uid = 1; |
| } |
| |
| return "gwt-uid-" + this.gwt_uid++; |
| }-*/; |
| |
| /** |
| * The element that contains the content for the document. In documents with |
| * BODY contents, returns the BODY element. |
| * |
| * @return the document's body |
| */ |
| public final native BodyElement getBody() /*-{ |
| return this.body; |
| }-*/; |
| |
| /** |
| * Returns the left offset between the absolute coordinate system and the |
| * body's positioning context. This method is useful for positioning children |
| * of the body element in absolute coordinates. |
| * |
| * <p> |
| * For example, to position an element directly under the mouse cursor |
| * (assuming you are handling a mouse event), do the following: |
| * </p> |
| * |
| * <pre> |
| * Event event; |
| * Document doc; |
| * DivElement child; // assume absolutely-positioned child of the body |
| * |
| * // Get the event location in absolute coordinates. |
| * int absX = event.getClientX() + Window.getScrollLeft(); |
| * int absY = event.getClientY() + Window.getScrollTop(); |
| * |
| * // Position the child element, adjusting for the difference between the |
| * // absolute coordinate system and the body's positioning coordinates. |
| * child.getStyle().setPropertyPx("left", absX - doc.getBodyOffsetLeft()); |
| * child.getStyle().setPropertyPx("top", absY - doc.getBodyOffsetTop()); |
| * </pre> |
| * |
| * @return the left offset of the body's positioning coordinate system |
| */ |
| public final int getBodyOffsetLeft() { |
| return DOMImpl.impl.getBodyOffsetLeft(); |
| } |
| |
| /** |
| * Returns the top offset between the absolute coordinate system and the |
| * body's positioning context. This method is useful for positioning children |
| * of the body element in absolute coordinates. |
| * |
| * @return the top offset of the body's positioning coordinate system |
| * @see #getBodyOffsetLeft() |
| */ |
| public final int getBodyOffsetTop() { |
| return DOMImpl.impl.getBodyOffsetTop(); |
| } |
| |
| /** |
| * The domain name of the server that served the document, or null if the |
| * server cannot be identified by a domain name. |
| * |
| * @return the document's domain, or <code>null</code> if none exists |
| */ |
| public final native String getDomain() /*-{ |
| return this.domain; |
| }-*/; |
| |
| /** |
| * Returns the {@link Element} whose id is given by elementId. If no such |
| * element exists, returns null. Behavior is not defined if more than one |
| * element has this id. |
| * |
| * @param elementId the unique id value for an element |
| * @return the matching element |
| */ |
| public final native Element getElementById(String elementId) /*-{ |
| return this.getElementById(elementId); |
| }-*/; |
| |
| /** |
| * Returns a {@link NodeList} of all the {@link Element Elements} with a given |
| * tag name in the order in which they are encountered in a preorder traversal |
| * of the document tree. |
| * |
| * @param tagName the name of the tag to match on (the special value |
| * <code>"*"</code> matches all tags) |
| * @return a list containing all the matched elements |
| */ |
| public final native NodeList<Element> getElementsByTagName(String tagName) /*-{ |
| return this.getElementsByTagName(tagName); |
| }-*/; |
| |
| /** |
| * Returns the URI of the page that linked to this page. The value is an empty |
| * string if the user navigated to the page directly (not through a link, but, |
| * for example, via a bookmark). |
| * |
| * @return the referrer URI |
| */ |
| public final native String getReferrer() /*-{ |
| return this.referrer; |
| }-*/; |
| |
| /** |
| * Gets the title of a document as specified by the TITLE element in the head |
| * of the document. |
| * |
| * @return the document's title |
| */ |
| public final native String getTitle() /*-{ |
| return this.title; |
| }-*/; |
| |
| /** |
| * Gets the absolute URI of this document. |
| * |
| * @return the document URI |
| */ |
| public final native String getURL() /*-{ |
| return this.URL; |
| }-*/; |
| |
| /** |
| * Imports a node from another document to this document. |
| * |
| * The returned node has no parent; ({@link Node#getParentNode()} is null). |
| * The source node is not altered or removed from the original document; this |
| * method creates a new copy of the source node. |
| * |
| * For all nodes, importing a node creates a node object owned by the |
| * importing document, with attribute values identical to the source node's |
| * nodeName and nodeType, plus the attributes related to namespaces (prefix, |
| * localName, and namespaceURI). As in the cloneNode operation on a Node, the |
| * source node is not altered. Additional information is copied as appropriate |
| * to the nodeType, attempting to mirror the behavior expected if a fragment |
| * of XML or HTML source was copied from one document to another, recognizing |
| * that the two documents may have different DTDs in the XML case. |
| * |
| * @param node the node to import |
| * @param deep If <code>true</code>, recursively import the subtree under the |
| * specified node; if <code>false</code>, import only the node |
| * itself, as explained above |
| */ |
| public final native void importNode(Node node, boolean deep) /*-{ |
| this.importNode(node, deep); |
| }-*/; |
| |
| /** |
| * Sets the title of a document as specified by the TITLE element in the head |
| * of the document. |
| * |
| * @param title the document's new title |
| */ |
| public final native void setTitle(String title) /*-{ |
| this.title = title; |
| }-*/; |
| } |