Example usage for com.google.gwt.event.logical.shared HasValueChangeHandlers interface-usage

List of usage examples for com.google.gwt.event.logical.shared HasValueChangeHandlers interface-usage

Introduction

In this page you can find the example usage for com.google.gwt.event.logical.shared HasValueChangeHandlers interface-usage.

Usage

From source file ar.com.kyol.jet.client.JetCheckBoxEdit.java

/**
 * A check box that opens a popup to update more values. It has a little pen to edit the 
 * additional values without unchecking it.
 * 
 * @author klarsk
 *

From source file at.ac.fhcampuswien.atom.client.gui.attributes.components.slider.SliderBar.java

/**
 * A widget that allows the user to select a value within a range of possible
 * values using a sliding bar that responds to mouse events.
 * 
 * <h3>Keyboard Events</h3>
 * <p>

From source file bufferings.ktr.wjr.client.ui.widget.WjrTreeItem.java

/**
 * The tree item composite with JQueryUI theme.
 * 
 * @author bufferings[at]gmail.com
 */
public class WjrTreeItem extends Composite

From source file cc.alcina.framework.gwt.client.widget.complex.SliderBar.java

/**
 * A widget that allows the user to select a value within a range of possible
 * values using a sliding bar that responds to mouse events.
 *
 * <h3>Keyboard Events</h3>
 * <p>

From source file com.ait.toolkit.editors.ckeditor.client.CKEditor.java

/**
 * This class provides a CKEdtior as a Widget
 * 
 * @author Damien Picard <damien.picard@axeiya.com>
 * @author Emmanuel COQUELIN <emmanuel.coquelin@axeiya.com>
 */

From source file com.alkacon.acacia.client.UndoRedoHandler.java

/**
 * Handler for the undo redo function.<p>
 */
public class UndoRedoHandler implements HasValueChangeHandlers<UndoRedoState> {

    /** The change types. */

From source file com.alkacon.acacia.client.ValidationHandler.java

/** 
 * Validation handler.<p>
 */
public final class ValidationHandler
        implements ValueChangeHandler<I_Entity>, HasValueChangeHandlers<ValidationContext> {

From source file com.alkacon.geranium.client.ui.AreaSelectPanel.java

/**
 * Select area widget. Allows the user to select an area inside the widget.<p>
 */
public class AreaSelectPanel extends Composite implements HasWidgets, IndexedPanel,
        HasValueChangeHandlers<PositionBean>, HasMouseDownHandlers, HasMouseUpHandlers, HasClickHandlers,
        HasMouseMoveHandlers, MouseDownHandler, MouseUpHandler, MouseMoveHandler {

From source file com.alkacon.geranium.client.ui.input.A_SelectBox.java

/**
 * Abstract superclass for select box widgets.<p>
 * 
 * @param <OPTION> the widget type of the select options 
 */
public abstract class A_SelectBox<OPTION extends A_SelectCell> extends Composite

From source file com.alkacon.geranium.client.ui.input.CheckBox.java

/**
 * This class represents a labeled checkbox which is not represented as an INPUT element in 
 * the DOM, but is displayed as an image.<p> 
 * 
 * It can be checked/unchecked and enabled/disabled, which means 4 combinations in total.
 * So you need to supply 4 images, one for each of the combinations.<p>