List of usage examples for com.google.gwt.event.dom.client FocusHandler interface-usage
From source file asquare.gwt.tk.client.ui.behavior.impl.TabFocusControllerStandard.java
public class TabFocusControllerStandard extends EventController implements TabFocusController, FocusHandler, BlurHandler, FocusModelHandler, FocusListener { private final Map<Focusable, RegistrationEntry> m_registrations = new HashMap<Focusable, RegistrationEntry>(); private FocusModel m_focusModel = null; private Focusable m_currentlyFocused = null;
From source file asquare.gwt.tk.client.ui.UrlLocation.java
/** * A URL text box similar to that of a browser location bar. * * <p><em>This widget is a work in progress and therefore is subject to change. </em></p> */ public class UrlLocation extends TextBox implements FocusHandler, KeyDownHandler {
From source file cc.alcina.framework.gwt.client.widget.SelectWithSearch.java
@SuppressWarnings({ "unchecked", "deprecation" }) /** * * @author Nick Reddel */ public class SelectWithSearch<G, T>
From source file com.conx.logistics.kernel.ui.common.gwt.client.ui.VConXQuickLaunchBox.java
/** * Client side implementation of the Select component. * * TODO needs major refactoring (to be extensible etc) */ @SuppressWarnings("deprecation")
From source file com.conx.logistics.kernel.ui.vaadin.common.gwt.client.ui.VConXQuickLaunchBox.java
/** * Client side implementation of the Select component. * * TODO needs major refactoring (to be extensible etc) */ @SuppressWarnings("deprecation")
From source file com.edgenius.wiki.gwt.client.KeyCaptureListener.java
/** * All text box in View Model (or any other model which require single keyCode as shortcut) need * implements this method, so that single keyCode will pass into textbox rather than treat as shortcut. * @author Dapeng.Ni */ public class KeyCaptureListener implements FocusHandler, BlurHandler {
From source file com.edgenius.wiki.gwt.client.page.widgets.TagsPanel.java
/** * @author Dapeng.Ni */ public class TagsPanel extends Composite implements ClickHandler, FocusHandler, BlurHandler, NativePreviewHandler, AsyncCallback<TagListModel> { protected static final int TAG_TEXT = 0;
From source file com.edgenius.wiki.gwt.client.widgets.HintTextArea.java
/** * @author Dapeng.Ni */ public class HintTextArea extends TextArea implements FocusHandler, BlurHandler { private String hintText;
From source file com.edgenius.wiki.gwt.client.widgets.HintTextBox.java
/** * @author Dapeng.Ni */ public class HintTextBox extends TextBox implements FocusHandler, BlurHandler { private String hintText;
From source file com.eternach.client.RichOptionGroupWidget.java
public class RichOptionGroupWidget extends VOptionGroupBase implements FocusHandler, BlurHandler { public static final String CLASSNAME = "v-select-optiongroup"; /** For internal use only. May be removed or replaced in the future. */ public final Panel panel;