com.smartgwt.client.widgets.events
Interface HasMouseStillDownHandlers

All Superinterfaces:
HasHandlers
All Known Implementing Classes:
ActiveXControl, Applet, BrowserPlugin, Button, Calendar, Canvas, ColorPicker, ColumnTree, CubeGrid, DateChooser, DetailViewer, Dialog, DynamicForm, EdgedCanvas, FacetChart, FilterBuilder, FilterClause, Flashlet, FlowLayout, GridRenderer, HeaderControl, HLayout, HStack, HTMLFlow, HTMLPane, IButton, IMenuButton, Img, ImgButton, ImgSectionHeader, ImgSplitbar, ImgTab, Label, Layout, LayoutSpacer, ListGrid, Menu, MenuBar, MenuButton, MultiFilePicker, NavigationBar, PortalLayout, Portlet, PrintCanvas, PrintWindow, Progressbar, PropertySheet, RichTextEditor, Scrollbar, SearchForm, SectionHeader, SectionStack, Slider, Snapbar, Splitbar, SplitPane, StatefulCanvas, StretchImg, StretchImgButton, SVG, TableView, TabSet, TileGrid, TileLayout, Toolbar, ToolStrip, ToolStripButton, ToolStripMenuButton, ToolStripResizer, ToolStripSeparator, TransferImgButton, TreeGrid, ViewLoader, VLayout, VStack, WidgetCanvas, Window

public interface HasMouseStillDownHandlers
extends HasHandlers


Method Summary
 HandlerRegistration addMouseStillDownHandler(MouseStillDownHandler handler)
          Executed repeatedly (every mouseStillDownDelay by default) when the system is idle - i.e.
 
Methods inherited from interface com.google.gwt.event.shared.HasHandlers
fireEvent
 

Method Detail

addMouseStillDownHandler

HandlerRegistration addMouseStillDownHandler(MouseStillDownHandler handler)
Executed repeatedly (every mouseStillDownDelay by default) when the system is idle - i.e. not busy running other scripts - and the left mouse button is held down after having been pressed in the object. This event is not native to JavaScript, but is provided by the ISC system.

Note: The event handling system waits mouseStillDownInitialDelay before calling mouseStillDown for the first time on the widget. Subsequently the method is called every mouseStillDownDelay. Both attributes are configurable per widget instance.

This method is called only when the left mouse is held down.

Parameters:
handler - the mouseStillDown handler
Returns:
HandlerRegistration used to remove this handler