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

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

Introduction

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

Usage

From source file asquare.gwt.tkdemo.client.ui.behavior.LegacyClickController.java

/**
 * A controller to drive legacy GWT mouse event listeners. 
 */
public class LegacyClickController extends ControllerAdaptor implements SourcesClickEvents {
    private ClickListenerCollection m_listeners;

From source file asquare.gwt.tkdemo.client.ui.ClickWidget.java

/**
 * A widget which supports
 * {@link com.google.gwt.user.client.ui.ClickListener ClickListener}s and
 * prevents selection from repeated clicking.
 * 
 * @see LegacyClickController

From source file cc.alcina.framework.gwt.client.gwittir.widget.PasswordTextBox.java

@SuppressWarnings("deprecation")
/**
 *
 * @author Nick Reddel
 */
public class PasswordTextBox<B> extends AbstractBoundWidget<String>

From source file cc.alcina.framework.gwt.client.gwittir.widget.TextArea.java

@SuppressWarnings("deprecation")
/**
 *
 * @author Nick Reddel
 */
public class TextArea<B> extends AbstractBoundWidget<String>

From source file cc.alcina.framework.gwt.client.gwittir.widget.TextBox.java

/**
 * 
 * @author <a href="mailto:cooper@screaming-penguin.com">Robert "kebernet"
 *         Cooper</a> Modified by Nick to handle some updateonkeypress edgecases
 */
@SuppressWarnings("deprecation")

From source file ch.systemsx.cisd.openbis.generic.client.web.client.application.ui.widget.ClickableFormPanel.java

/**
 * A clickable {@link FormPanel}.
 * 
 * @author Christian Ribeaud
 */
public final class ClickableFormPanel extends FormPanel implements SourcesClickEvents {

From source file com.apress.progwt.client.college.gui.ext.FocusPanelExt.java

/**
 * FocusPanel gives us no good way to see if the ctrl key was down, or do
 * double clicks.
 * 
 * 
 * Stores the ctrl key for before the event goes by and delays clickEvents

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

public class ExternalLink extends FocusWidget implements HasHTML, SourcesClickEvents, SourcesMouseEvents {

    private static native String urlEncode(String str)
    /*-{
    return escape( str );
    }-*/;

From source file com.ics.tcg.web.workflow.client.EditableLabel.java

/**
 * Editable Label class, funcionality displays a Label UI 
 * Element until clicked on, then if element is set to be 
 * editable (default) then an editable area and Buttons are 
 * displayed instead.
 *

From source file com.objetdirect.tatami.client.Button.java

/**
 * This class is a simple wrapper around dojo button.
 * It implements SourcesClickEvents to dispatch the onClick events received
 * from dojo.  
 *  
 * @author rdunklau, vgrassaud