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 com.italianasoftware.echoes.client.NativeButton.java

public class NativeButton extends Button {
    public NativeButton(String text) {
        super(text);
        //setStyleName( "" );
    }
}

From source file com.risevision.ui.client.presentation.common.RevisionsMenuWidget.java

public class RevisionsMenuWidget extends Button {
    private final PresentationServiceAsync presentationService = OAuth2ServiceWrapper.getPresentationService();
    private StatusBoxWidget statusBox = StatusBoxWidget.getInstance();

    private PopupPanel menuPanel = new PopupPanel(true, false);
    private PresentationInfo presentation;

From source file com.risevision.viewer.client.widgets.oem.DisplayRegisterButtonWidget.java

public class DisplayRegisterButtonWidget extends Button {

    public DisplayRegisterButtonWidget(String html) {
        super(html);

        setStyleName("btn btn-primary display-register-button");

From source file com.sciencegadgets.client.algebra.OptionsHandler.java

class EquationButton extends Button {
    public EquationButton(final AlgebraActivity algebraActivity, final EquationTree eqTree) {
        super(JSNICalls.elementToString(eqTree.reloadDisplay(true, true).getElement()));

        addStyleName(CSS.EQUATION_SELECTION);
        addClickHandler(new ClickHandler() {

From source file com.sciencegadgets.client.ui.KeyPadNumerical.java

class NumberButton extends Button {
    public NumberButton(String string) {
        super(string);
        addStyleName(CSS.SMALLEST_BUTTON);
    }
}

From source file com.smartgwt.client.widgets.IconButton.java

/**
 * A Button subclass that displays an icon, title and optional menuIcon and is capable of  horizontal and vertical
 * orientation.
 */
public class IconButton extends Button {

From source file com.smartgwt.client.widgets.Label.java

/**
 * Labels display a small amount of {@link com.smartgwt.client.widgets.Label#getAlign alignable} {@link
 * com.smartgwt.client.widgets.Label#getContents text} with optional {@link com.smartgwt.client.widgets.Label#getIcon icon}
 * and {@link com.smartgwt.client.widgets.Label#getAutoFit autoFit}. <P> For a general-purpose container for HTML content,
 * use {@link com.smartgwt.client.widgets.HTMLFlow} or {@link com.smartgwt.client.widgets.HTMLPane} instead.
 */

From source file com.smartgwt.client.widgets.menu.MenuButton.java

/**
 * Simple subclass of button associated with a menu widget (gets shown below the button).
 */
public class MenuButton extends Button {

    public static MenuButton getOrCreateRef(JavaScriptObject jsObj) {

From source file com.square.composants.graphiques.lib.client.popups.minimizable.DeskItem.java

/**
 * Item de la deskbar reprsentant une popup minimise.
 * @author Anthony GUILLEMETTE (anthony.guillemette@scub.net) - SCUB
 */
public class DeskItem extends Button {

From source file com.totsp.gwittir.client.ui.SoftButton.java

/**
 * This is a button widget implemented entirely without the native
 * button widget. This avoids Z-index overlay problems, and provides
 * enhanced functionality.
 *
 * <p>Base CSS class: gwittir-SoftButton</p>