Interface HasDoubleClickHandlers
- All Superinterfaces:
HasHandlers
- All Known Implementing Classes:
DrawBlockConnector
,DrawCurve
,DrawDiamond
,DrawGroup
,DrawImage
,DrawItem
,DrawLabel
,DrawLine
,DrawLinePath
,DrawOval
,DrawPath
,DrawPolygon
,DrawRect
,DrawSector
,DrawShape
,DrawTriangle
-
Method Summary
Modifier and TypeMethodDescriptionaddDoubleClickHandler
(DoubleClickHandler handler) Notification fired when the user clicks on this DrawItem twice in rapid succession (within theDrawPane
'sdoubleClickDelay
by default) in this object.Methods inherited from interface com.google.gwt.event.shared.HasHandlers
fireEvent
-
Method Details
-
addDoubleClickHandler
Notification fired when the user clicks on this DrawItem twice in rapid succession (within theDrawPane
'sdoubleClickDelay
by default) in this object.Note that if this item is part of a
DrawGroup
, then the group'suseGroupRect
setting affects whether this item receives the notification. If useGroupRect is true, then this item will not receive the notification. Otherwise, the item receives the notification and notification bubbles up to the group.- Parameters:
handler
- the doubleClick handler- Returns:
HandlerRegistration
used to remove this handler
-