mouseUpTools property

List<Tool> get mouseUpTools

This read-only property returns the list of Tools that might be started upon a mouse or finger up event. When the ToolManager handles a mouse-up or touch-up event in #doMouseUp, it searches this list in order, starting the first tool for which Tool#canStart returns true.

This list may be modified, but it must not be modified while any tool is handling events.

#initializeStandardTools installs the following tools, in order:

  • #contextMenuTool, a ContextMenuTool
  • #textEditingTool, a TextEditingTool
  • #clickCreatingTool, a ClickCreatingTool
  • #clickSelectingTool, a ClickSelectingTool

Implementation

_i3.List<_i3.Tool> get mouseUpTools => _i4.getProperty(
      this,
      'mouseUpTools',
    );
set mouseUpTools (List<Tool> value)

Implementation

set mouseUpTools(_i3.List<_i3.Tool> value) {
  _i4.setProperty(
    this,
    'mouseUpTools',
    value,
  );
}