src/tools/pathtool.h

Tue, 24 May 2022 16:11:10 +0300

author
Teemu Piippo <teemu@hecknology.net>
date
Tue, 24 May 2022 16:11:10 +0300
changeset 188
64ea7282611e
parent 185
a38a0eb007b0
permissions
-rw-r--r--

more work on circle tool + cleanup

#pragma once
#include "drawtool.h"

class PathTool : public AbstractDrawTool
{
	Q_OBJECT

public:
	Q_INVOKABLE PathTool(Document* document);
	QString name() const override;
	QString toolTip() const override;
	void overpaint(Canvas*canvas, QPainter*painter) const override;
	QString iconName() const override;
	void closeShape() override;
};

mercurial