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

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

Introduction

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

Usage

From source file at.ait.dme.yuma.client.image.annotation.ImageAnnotationTreeNode.java

/**
 * composite that represents an annotation within the annotation tree
 * 
 * @author Christian Sadilek
 * @author Rainer Simon
 */

From source file ch.unifr.pai.twice.dragndrop.client.intf.Draggable.java

/**
 * An interface to be implemented by widgets which shall be draggable
 * 
 * @author Oliver Schmid
 * 
 */

From source file ch.unifr.pai.twice.layout.client.eclipseLayout.MiceLayoutTabPanel.java

/**
 * The {@link MiceLayoutTabPanel} is a panel which provides tabs that can contain multiple widget components. The labels of the tab are draggable and can be *
 * rearranged as it is known from the eclipse user interface. Additionally, the screen can be split if a tab is dragged to a border of the tab panel.
 * 
 * @author Oliver Schmid
 * 

From source file com.alkacon.acacia.client.ui.AttributeChoiceWidget.java

/**
 * The attribute choice widget.<p>
 */
public class AttributeChoiceWidget extends Composite implements HasMouseOverHandlers, HasMouseOutHandlers {

    /**

From source file com.alkacon.acacia.client.ui.AttributeValueView.java

/**
 * UI object holding an attribute value.<p>
 */
public class AttributeValueView extends Composite
        implements I_Draggable, I_HasResizeOnShow, HasMouseOverHandlers, HasMouseOutHandlers, HasMouseDownHandlers {

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

/**
 * A {@link com.google.gwt.user.client.ui.FlowPanel} implementation toggles the {@link com.alkacon.geranium.client.ui.css.I_LayoutBundle.I_StateCss#cmsHovering()} CSS class on mouse over.<p>
 */
public class HoverPanel extends FlowPanel implements HasMouseOutHandlers, HasMouseOverHandlers {

    /**

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

/**
 * A HTML Panel implementation toggles the I_CmsStateCss.cmsHovering CSS class on mouse over.<p>
 */
public class HTMLHoverPanel extends HTMLPanel implements HasMouseOutHandlers, HasMouseOverHandlers {

    /**

From source file com.edgenius.wiki.gwt.client.widgets.ClickLink.java

/**
 * @author Dapeng.Ni
 */
public class ClickLink extends Widget
        implements HasHTML, HasClickHandlers, HasMouseOverHandlers, HasMouseOutHandlers, HasMouseMoveHandlers {
    private Element anchorElem;

From source file com.edgenius.wiki.gwt.client.widgets.ContextMenuItem.java

/**
 * @author Dapeng.Ni
 */
public class ContextMenuItem extends Composite implements MouseOverHandler, ClickHandler, MouseOutHandler,
        HasMouseOutHandlers, HasMouseOverHandlers, HasClickHandlers {

From source file com.edgenius.wiki.gwt.client.widgets.Popup.java

/**
 * This popup extends following functionality:
 * 1. Allow user uses "ESC" key type to close.
 * 2. Allow mouse move in/out to automatic show/hide popup
 * 3. Only one popup is allowed in current web browser page.
 *