src/tools/selecttool.cpp

Tue, 27 Jul 2021 09:56:06 +0300

author
Teemu Piippo <teemu@hecknology.net>
date
Tue, 27 Jul 2021 09:56:06 +0300
changeset 114
4e03b0e2a29f
parent 111
1f42c03fafca
child 121
000781318c36
permissions
-rw-r--r--

added build-time test for line length

#include "selecttool.h"

SelectTool::SelectTool(QObject* parent) :
	BaseTool{parent} {}

QString SelectTool::name() const
{
	static const QString result = tr("Select");
	return result;
}

QString SelectTool::toolTip() const
{
	static const QString result = tr("Select elements from the model.");
	return result;
}

bool SelectTool::mouseClick(Document* document, Canvas* canvas)
{
	static_cast<void>(document);
	const ldraw::id_t highlighted = canvas->getHighlightedObject();
	canvas->clearSelection();
	if (highlighted != ldraw::NULL_ID)
	{
		canvas->addToSelection(highlighted);
	}
	return true;
}

mercurial