List of usage examples for com.google.gwt.event.dom.client MouseUpHandler interface-usage
From source file ch.sebastienzurfluh.swissmuseum.core.client.view.tilemenu.ModeSwapButton.java
public class ModeSwapButton extends FocusPanel implements MouseUpHandler { public enum State { DETAILED, ICON_ONLY; } private State currentState;
From source file co.fxl.gui.gwt.GWTTextField.java
class GWTTextField extends GWTTextInput<TextBox, ITextField> implements ITextField, ChangeHandler, DropHandler, KeyUpHandler, MouseUpHandler { private List<IUpdateListener<String>> updateListeners = new LinkedList<IUpdateListener<String>>(); private String lastNotifiedValue = null;
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.allen_sauer.gwt.dnd.client.MouseDragHandler.java
/** * Implementation helper class which handles mouse events for all draggable widgets for a given * {@link DragController}. */ class MouseDragHandler implements MouseMoveHandler, MouseDownHandler, MouseUpHandler, TouchStartHandler, TouchMoveHandler, TouchEndHandler, TouchCancelHandler {
From source file com.appkit.interactions.client.dnd.MouseDragHandler.java
/** * Implementation helper class which handles mouse events for all draggable widgets for a given * {@link com.appkit.interactions.client.dnd.DragController}. */ class MouseDragHandler implements MouseMoveHandler, MouseDownHandler, MouseUpHandler, TouchStartHandler, TouchMoveHandler, TouchEndHandler, TouchCancelHandler {
From source file com.bramosystems.oss.player.core.client.skin.MediaSeekBar.java
/**
* Abstract base class for seek bar implementations.
*
* <p>Provides means of controlling <b>loading</b> and <b>playing</b> progress
* indicators during media loading and playback respectively.
*
From source file com.bramosystems.oss.player.core.client.skin.VolumeControl.java
/**
* Widget to control the volume of a player. The control is placed on a player
* as an icon which when clicked upon, opens a popup panel containing the
* slider widget for the volume.
*
* <p>{@code VolumeChangeHandler}s are notified whenever the slider is adjusted.
From source file com.edgenius.wiki.gwt.client.widgets.DialogBox.java
/**
*
* This class override code from gwt.DialogBox to lightbox style DialogBox when calling showbox()/hidebox() method.
*
* Another reason don't extends from gwt DialogBox directly is Caption need more complex element. This box support
* Icon, Text and Close Button.
From source file com.fullmetalgalaxy.client.game.board.WgtBoardBase.java
/** * @author Vincent Legendre * */ public abstract class WgtBoardBase extends FocusPanel implements ScrollListener, MouseDownHandler, MouseUpHandler, MouseOverHandler, MouseMoveHandler,
From source file com.fullmetalgalaxy.client.game.context.WgtContextMinimap.java
/** * @author Vincent Legendre * */ public class WgtContextMinimap extends Composite implements MouseUpHandler {