Wed, 25 May 2022 13:49:45 +0300
add missing file
| 185 | 1 | #pragma once |
| 2 | #include "drawtool.h" | |
| 3 | ||
| 4 | class PathTool : public AbstractDrawTool | |
| 5 | { | |
| 6 | Q_OBJECT | |
| 7 | ||
| 8 | public: | |
| 9 | Q_INVOKABLE PathTool(Document* document); | |
| 10 | QString name() const override; | |
| 11 | QString toolTip() const override; | |
| 12 | void overpaint(Canvas*canvas, QPainter*painter) const override; | |
| 13 | QString iconName() const override; | |
| 14 | void closeShape() override; | |
| 15 | }; |