* @brief "select" operation * * This is geometrical selection of objects. Selection can be * either by a box or by a point. In the latter case, a degenerated * box must be provided which is a single-point box. * An empty box equals "all". * The return value is basically used by the point selection mode * to determine the first editable that gets the selection. *
| 249 | * @return Should return true if anything was selected, in particular in point mode |
| 250 | */ |
| 251 | virtual bool select (const db::DBox & /*box*/, SelectionMode /*mode*/) |
| 252 | { |
| 253 | return false; |
| 254 | } |
| 255 | |
| 256 | /** |
| 257 | * @brief Start a "move" operation |
no outgoing calls
no test coverage detected