]> git.tdb.fi Git - r2c2.git/blob - source/designer/objectselecttool.h
Avoid arriving too early if there's an unexpected stop on the last route
[r2c2.git] / source / designer / objectselecttool.h
1 #ifndef OBJECTSELECTTOOL_H_
2 #define OBJECTSELECTTOOL_H_
3
4 #include "tool.h"
5
6 class ObjectSelectTool: public Tool
7 {
8 private:
9         Selection &selection;
10
11 public:
12         ObjectSelectTool(Designer &, Msp::Input::Keyboard &, Msp::Input::Mouse &, Selection &);
13
14 private:
15         virtual void key_press(unsigned);
16         virtual void button_press(unsigned);
17
18         void update_status();
19 };
20
21 #endif