Example usage for com.google.gwt.user.client.ui MouseListener interface-usage

List of usage examples for com.google.gwt.user.client.ui MouseListener interface-usage

Introduction

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

Usage

From source file asquare.gwt.tk.client.ui.behavior.GWTListenerAdaptor.java

@Deprecated
public class GWTListenerAdaptor extends ControllerSupportDelegate implements ChangeListener, ClickListener,
        FocusListener, KeyboardListener, LoadListener, MouseListener, MouseWheelListener, ScrollListener {
    public GWTListenerAdaptor(Widget w) {
        super(w);
    }

From source file com.apress.progwt.client.college.gui.ViewPanel.java

public abstract class ViewPanel extends AbsolutePanel
        implements MouseListener, SourcesChangeEvents, MouseWheelListener {

    private class RedrawParams {
        public int centerX;
        public int centerY;

From source file com.apress.progwt.client.gui.timeline.TLORangeEdge.java

public class TLORangeEdge extends Composite implements MouseListener {

    private static final DateTimeFormat format = DateTimeFormat.getFormat("MMM, d yyyy");

    private boolean resizing;
    private Image myLabel;

From source file com.chinarewards.gwt.license.client.ui.DialogBox.java

/**
 * A form of popup that has a caption area at the top and can be dragged by the
 * user. Unlike a PopupPanel, calls to {@link #setWidth(String)} and
 * {@link #setHeight(String)} will set the width and height of the dialog box
 * itself, even if a widget has not been added as yet.
 * <p>

From source file com.chinarewards.gwt.license.client.ui.MyDialogBox.java

/**
 * A form of popup that has a caption area at the top and can be dragged by the
 * user. Unlike a PopupPanel, calls to {@link #setWidth(String)} and
 * {@link #setHeight(String)} will set the width and height of the dialog box
 * itself, even if a widget has not been added as yet.
 * <p>

From source file com.dimdim.conference.ui.common.client.common.TimeAndFocusSensitiveModalDialog.java

public class TimeAndFocusSensitiveModalDialog extends ModalDialog implements MouseListener, PopupListener {
    protected FocusPanel pane = new FocusPanel();
    protected Timer timer;
    protected int showTime = 2500;
    //   UserListEntryHoverPopup parentMenu = null;
    private boolean considerMouse = true;

From source file com.dimdim.conference.ui.common.client.list.ListEntryHoverPopupPanel.java

public class ListEntryHoverPopupPanel extends NonModalPopupPanel
        implements MouseListener, FocusListener, ClickListener, PopupListener {
    //   protected   FocusPanel   pane = new FocusPanel();
    protected int showTime = UIGlobals.getHoverInitialShowTime();
    protected Timer timer;
    protected boolean hasFocus = false;

From source file com.dimdim.conference.ui.common.client.list.ListEntryPanel.java

/**
 * The subtext panels are used for mood messges. The fixed message panel is
 * used for messages that need to remain in the user's view at all times,
 * such as 'You are now broadcasting the audio'.
 * 
 * @author Jayant Pandit

From source file com.dimdim.conference.ui.common.client.list.ListEntryPanelMouseListener.java

/**
 * Presence of the flash movie in the hover popup enforces a certain pattern.
 * Basically the movie tag must not be rewritten during the lifetime of the
 * movie, which is determined by the speaker. Hence this listener constructs
 * the popup panel the first time it is required and thereafter refreshes it
 * from the controls and content produced by the list entry manager. This should

From source file com.dimdim.conference.ui.common.client.util.LabelHoverStyler.java

/**
 * @author Jayant Pandit
 * @email Jayant.Pandit@communiva.com
 * 
 * The buttons are being created in the specific class because the 
 */