Tue, 20 Jul 2021 01:22:01 +0300
work on draw preview
96 | 1 | #pragma once |
2 | #include "basetool.h" | |
3 | ||
4 | class SelectTool : public BaseTool | |
5 | { | |
6 | Q_OBJECT | |
7 | ||
8 | public: | |
9 | Q_INVOKABLE SelectTool(QObject* parent = nullptr); | |
10 | ||
11 | QString name() const; | |
12 | QString toolTip() const; | |
13 | }; |