src/tools/selecttool.h

Sat, 05 Mar 2022 17:18:44 +0200

author
Teemu Piippo <teemu@hecknology.net>
date
Sat, 05 Mar 2022 17:18:44 +0200
changeset 169
6da096930534
parent 163
36ea1a8aee33
child 185
a38a0eb007b0
permissions
-rw-r--r--

Added the delete action

#pragma once
#include "basetool.h"
#include "ui/objecteditor.h"

class SelectTool : public BaseTool
{
	Q_OBJECT

public:
	Q_INVOKABLE SelectTool(Document *document);
	QString name() const override;
	QString toolTip() const override;
	bool mouseClick(Document*, Canvas*, QMouseEvent*) override;
	QWidget* toolWidget() override;
	void selectionChanged(const QSet<ldraw::id_t> &newSelection) override;
	QString iconName() const override;
	ObjectEditor* objectEditor;
};

mercurial