All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.google.gwt.user.client.ui.ResetButton Maven / Gradle / Ivy

There is a newer version: 2.10.0
Show newest version
/*
 * Copyright 2009 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.user.client.ui;

import com.google.gwt.dom.client.ButtonElement;
import com.google.gwt.dom.client.Document;
import com.google.gwt.event.dom.client.ClickHandler;
import com.google.gwt.safehtml.shared.SafeHtml;
import com.google.gwt.safehtml.shared.annotations.IsSafeHtml;

/**
 * A standard push-button widget which will automatically reset its enclosing
 * {@link FormPanel} if any.
 * 
 * 

CSS Style Rules

*
*
.gwt-ResetButton
*
the outer element
*
*/ public class ResetButton extends Button { /** * Creates a ResetButton widget that wraps an existing <button> element. * * This element must already be attached to the document. If the element is * removed from the document, you must call * {@link RootPanel#detachNow(Widget)}. * * @param element the element to be wrapped */ public static Button wrap(com.google.gwt.dom.client.Element element) { // Assert that the element is attached. assert Document.get().getBody().isOrHasChild(element); ResetButton button = new ResetButton(element); // Mark it attached and remember it for cleanup. button.onAttach(); RootPanel.detachOnWindowClose(button); return button; } /** * Creates a button with no caption. */ public ResetButton() { super(Document.get().createResetButtonElement()); setStyleName("gwt-ResetButton"); } /** * Creates a button with the given HTML caption. * * @param html the HTML caption */ public ResetButton(SafeHtml html) { this(html.asString()); } /** * Creates a button with the given HTML caption. * * @param html the HTML caption */ public ResetButton(@IsSafeHtml String html) { this(); setHTML(html); } /** * Creates a button with the given HTML caption and click listener. * * @param html the HTML caption * @param handler the click handler */ public ResetButton(SafeHtml html, ClickHandler handler) { this(html.asString(), handler); } /** * Creates a button with the given HTML caption and click listener. * * @param html the HTML caption * @param handler the click handler */ public ResetButton(@IsSafeHtml String html, ClickHandler handler) { this(html); addClickHandler(handler); } /** * This constructor may be used by subclasses to explicitly use an existing * element. This element must be a <button> element with type reset. * * @param element the element to be used */ protected ResetButton(com.google.gwt.dom.client.Element element) { super(element); assert "reset".equalsIgnoreCase(element. cast().getType()); } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy