diff -r 3dbdc243f053 -r d355d4c52d51 src/tools/transformtool.h --- a/src/tools/transformtool.h Wed May 25 13:49:45 2022 +0300 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,22 +0,0 @@ -#pragma once -#include -#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 &newSelection) override; - QWidget *toolWidget() override; - QString iconName() const override; -private: - Q_SLOT void applyButtonClicked(); - MatrixEditor* matrixEditor; - QPushButton* button; - QWidget* widget; - QSet selection; -};