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

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

Introduction

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

Usage

From source file cc.kune.common.client.actions.gwtui.GwtBaseMenuItem.java

/**
 * The Class GwtBaseMenuItem.
 *
 * @author vjrj@ourproject.org (Vicente J. Ruiz Jurado)
 */
public class GwtBaseMenuItem extends MenuItem {

From source file com.bearsoft.gwt.ui.menu.MenuItemImageText.java

/**
 * 
 * @author mg
 */
public class MenuItemImageText extends MenuItem implements HasHandlers, HasShowHandlers, HasHideHandlers {

From source file com.eas.menu.MenuItemImageText.java

/**
 * 
 * @author mg
 */
public class MenuItemImageText extends MenuItem implements HasHandlers, HasShowHandlers, HasHideHandlers {

From source file com.ephesoft.gxt.core.client.ui.widget.CustomMenuItem.java

public class CustomMenuItem extends MenuItem {

    /**
     * Constructs a new menu item that fires a command when it is selected.
     * 
     * @param html the item's html text

From source file com.extjs.gxt.ui.client.widget.menu.CheckMenuItem.java

/**
 * Adds a menu item that contains a checkbox by default, but can also be part of
 * a radio group.
 * 
 * A horizontal row of buttons.
 * 

From source file com.ikon.frontend.client.extension.widget.menu.MenuItemExtension.java

/**
 * MenuItemExtension
 * 
 * @author jllort
 *
 */

From source file com.lushprojects.circuitjs1.client.CheckboxAlignedMenuItem.java

public class CheckboxAlignedMenuItem extends MenuItem {

    public CheckboxAlignedMenuItem(String s, Command cmd) {
        super(SafeHtmlUtils.fromTrustedString(CheckboxMenuItem.checkBoxHtml + "&nbsp;</div>" + s), cmd);
    }

From source file com.lushprojects.circuitjs1.client.CheckboxMenuItem.java

public class CheckboxMenuItem extends MenuItem implements Command {
    private boolean on = false;
    private String name = "";
    private String shortcut = "";
    private Command extcmd = null;
    static String checkBoxHtml = "<div style=\"display:inline-block;width:15px;\">";

From source file com.lushprojects.circuitjs1.client.gui.CheckboxAlignedMenuItem.java

public class CheckboxAlignedMenuItem extends MenuItem {

    public CheckboxAlignedMenuItem(String s, Command cmd) {
        super(SafeHtmlUtils.fromTrustedString(CheckboxMenuItem.checkBoxHtml + "&nbsp;</div>" + s), cmd);
    }

From source file com.lushprojects.circuitjs1.client.gui.CheckboxMenuItem.java

public class CheckboxMenuItem extends MenuItem implements Command {
    private boolean on = false;
    private String name = "";
    private String shortcut = "";
    private Command extcmd = null;
    public static String checkBoxHtml = "<div style=\"display:inline-block;width:15px;\">";