src/tools/transformtool.h

Mon, 16 May 2022 01:40:49 +0300

author
Teemu Piippo <teemu@hecknology.net>
date
Mon, 16 May 2022 01:40:49 +0300
changeset 187
30204975694a
parent 163
36ea1a8aee33
permissions
-rw-r--r--

work on circle tool

#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