Example usage for com.google.gwt.event.dom.client HasKeyUpHandlers interface-usage

List of usage examples for com.google.gwt.event.dom.client HasKeyUpHandlers interface-usage

Introduction

In this page you can find the example usage for com.google.gwt.event.dom.client HasKeyUpHandlers interface-usage.

Usage

From source file client.ui.components.MaterialSearch.java

/**
 * Search box.
 */
public class MaterialSearch extends Composite implements HasText, HasKeyUpHandlers {

    public interface MaterialSearchUiBinder extends UiBinder<Widget, MaterialSearch> {

From source file com.bramosystems.oss.player.core.client.AbstractMediaPlayer.java

/**
 * Abstract implementation of a media player.  It implements the handling
 * of MediaStateListeners.
 *
 * @author Sikiru Braheem
 */

From source file com.edgenius.wiki.gwt.client.editor.TinyMCE.java

/**
 * TinyMCE wrapper class
 * @author Dapeng.Ni
 */
class TinyMCE extends SimplePanel implements HasFocusHandlers, HasBlurHandlers, HasChangeHandlers,
        HasKeyDownHandlers, HasKeyPressHandlers, HasKeyUpHandlers {

From source file com.fullmetalgalaxy.client.game.tabmenu.WgtIntBox.java

/**
 * @author Vincent
 * 
 * a simple widget that can be used to enter integer value.
 */
public class WgtIntBox extends Composite

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

/**
 * A common method of presenting a user with a window without creating an
 * entirely new activity. Prompts are particularly useful for inquiring for a
 * specification on an action requiring user input.<br/>
 * <b>Do not launch with a
 * {@link com.google.gwt.event.dom.client.TouchStartHandler} because some

From source file com.seanchenxi.gwt.serenity.client.widget.NavigationBar.java

public class NavigationBar extends Composite
        implements ClickHandler, HasSelectionHandlers<NavigationItem>, HasKeyUpHandlers {

    public interface Resources extends ClientBundle {

        public interface Style extends CssResource {

From source file com.seanchenxi.serenity.client.widget.NavigationBar.java

public class NavigationBar extends Composite
        implements ClickHandler, HasSelectionHandlers<NavigationItem>, HasKeyUpHandlers {

    public interface Resources extends ClientBundle {

        public interface Style extends CssResource {

From source file de.knightsoftnet.validators.client.decorators.AbstractDecorator.java

/**
 * This abstract class combines some methods which are used by decorators.
 *
 * @param <T> the type of data being edited
 */
public abstract class AbstractDecorator<T> extends Composite

From source file fr.putnami.pwt.plugin.code.client.input.CodeInput.java

public interface CodeInput extends HasText, HasPlaceholder, IsWidget, HasLiveValueChangeHandlers,
        HasKeyDownHandlers, HasKeyUpHandlers, HasValueChangeHandlers<String>, HasAllFocusHandlers, Focusable {

    int getCursorPosition();

    void setCursorPosition(int cursorPosition);

From source file gwt.material.design.addins.client.ui.MaterialAutoComplete.java

/**
 * Use GWT Autocomplete to search for matches from local or remote data sources.
 * We used MultiWordSuggestOracle to populate the list to be added on the
 * autocomplete values.
 *
 * <h3>UiBinder Usage:</h3>