Example usage for com.google.gwt.user.client.ui Button subclass-usage

List of usage examples for com.google.gwt.user.client.ui Button subclass-usage

Introduction

In this page you can find the example usage for com.google.gwt.user.client.ui Button subclass-usage.

Usage

From source file org.jrydberg.ui.client.Button.java

/**
 * @author jrydberg
 *
 */
public class Button extends com.google.gwt.user.client.ui.Button {

From source file org.jrydberg.ui.client.MenuButton.java

/**
 * @author jrydberg
 * 
 */
public class MenuButton extends Button implements ClickHandler, CloseHandler<PopupPanel> {

From source file org.jrydberg.ui.client.PopupButton.java

/**
 * @author jrydberg
 * 
 */
public class PopupButton extends Button {

From source file org.jrydberg.ui.client.ToggleButton.java

/**
 * @author jrydberg
 *
 */
public class ToggleButton extends Button implements HasValue<Boolean> {

From source file org.kaaproject.kaa.server.admin.client.mvp.view.widget.ImageTextButton.java

@SuppressWarnings("deprecation")
public class ImageTextButton extends Button {
    private String text;

    public ImageTextButton(ImageResource imageResource, String text) {
        this(imageResource, text, null);

From source file org.kie.guvnor.testscenario.client.AddExecuteButton.java

public class AddExecuteButton extends Button {

    public AddExecuteButton(final Scenario scenario, final ScenarioParentWidget parent) {
        super(TestScenarioConstants.INSTANCE.MoreDotDot());

        setTitle(TestScenarioConstants.INSTANCE.AddAnotherSectionOfDataAndExpectations());

From source file org.onesocialweb.gwt.client.ui.widget.StyledButton.java

public class StyledButton extends Button {

    public StyledButton(String classname, String text) {
        if (classname != null && classname.length() > 0)
            addStyleName(classname);
        setText(text);

From source file org.opendatakit.aggregate.client.widgets.AggregateButton.java

public class AggregateButton extends Button implements ClickHandler {

    private final AggregateBaseHandlers handlers;

    public AggregateButton(String buttonText, String tooltipText) {
        this(buttonText, tooltipText, null);

From source file org.overlord.commons.gwt.client.local.widgets.AsyncActionButton.java

/**
 * A GWT button that supports the concept of an async action.  When
 * the async action is started, the button changes its state to 
 * show a progress icon (animated) and also alters its text.  When
 * the action completes, the icon is removed and the text reverts
 * back.

From source file org.pepstock.jem.gwt.client.commons.ImageAndTextButton.java

/**
 * Builds a button with both image and a text 
 * @author Marco "Fuzzo" Cuccato
 *
 */
public final class ImageAndTextButton extends Button {