src/tools/drawtool.cpp

changeset 96
165777a20dc7
child 102
9f435f66bd0c
child 103
94719518e310
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/src/tools/drawtool.cpp	Sun Jan 10 15:28:44 2021 +0200
@@ -0,0 +1,16 @@
+#include "drawtool.h"
+
+DrawTool::DrawTool(QObject* parent) :
+	BaseTool{parent} {}
+
+QString DrawTool::name() const
+{
+	static const QString result = tr("Draw");
+	return result;
+}
+
+QString DrawTool::toolTip() const
+{
+	static const QString result = tr("Draw new elements into the model.");
+	return result;
+}

mercurial