src/tools/transformtool.h

Sat, 05 Mar 2022 16:57:28 +0200

author
Teemu Piippo <teemu@hecknology.net>
date
Sat, 05 Mar 2022 16:57:28 +0200
changeset 168
24590af32ad6
parent 163
36ea1a8aee33
permissions
-rw-r--r--

Draw tool now renders the winding of the new polygon

#pragma once
#include <QPushButton>
#include "basetool.h"
#include "widgets/matrixeditor.h"

class TransformTool : public BaseTool
{
	Q_OBJECT
public:
	Q_INVOKABLE TransformTool(Document *document);
	virtual QString name() const override;
	virtual QString toolTip() const override;
	void selectionChanged(const QSet<ldraw::id_t> &newSelection) override;
	QWidget *toolWidget() override;
	QString iconName() const override;
private:
	Q_SLOT void applyButtonClicked();
	MatrixEditor* matrixEditor;
	QPushButton* button;
	QWidget* widget;
	QSet<ldraw::id_t> selection;
};

mercurial