Sat, 05 Mar 2022 15:40:43 +0200
the grid now has less lines
#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; };