src/tools/selecttool.h

Fri, 27 Aug 2021 00:55:32 +0300

author
Teemu Piippo <teemu@hecknology.net>
date
Fri, 27 Aug 2021 00:55:32 +0300
changeset 122
b54b350dff5d
parent 121
000781318c36
child 126
a7c720aff97c
permissions
-rw-r--r--

Show concave polygons as red while drawing

#pragma once
#include "basetool.h"

class SelectTool : public BaseTool
{
	Q_OBJECT

public:
	Q_INVOKABLE SelectTool(QObject* parent = nullptr);

	QString name() const override;
	QString toolTip() const override;
	bool mouseClick(Document*, Canvas*, QMouseEvent*) override;
};

mercurial