src/tools/drawtool.cpp

changeset 96
165777a20dc7
child 102
9f435f66bd0c
child 103
94719518e310
equal deleted inserted replaced
95:06a1aef170aa 96:165777a20dc7
1 #include "drawtool.h"
2
3 DrawTool::DrawTool(QObject* parent) :
4 BaseTool{parent} {}
5
6 QString DrawTool::name() const
7 {
8 static const QString result = tr("Draw");
9 return result;
10 }
11
12 QString DrawTool::toolTip() const
13 {
14 static const QString result = tr("Draw new elements into the model.");
15 return result;
16 }

mercurial