src/tools/selecttool.h

Tue, 27 Jul 2021 09:56:06 +0300

author
Teemu Piippo <teemu@hecknology.net>
date
Tue, 27 Jul 2021 09:56:06 +0300
changeset 114
4e03b0e2a29f
parent 111
1f42c03fafca
child 121
000781318c36
permissions
-rw-r--r--

added build-time test for line length

#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*) override;
};

mercurial