Fri, 07 Feb 2020 01:58:34 +0200
added selection highlighting
47 | 1 | #pragma once |
2 | #include "gl/partrenderer.h" | |
3 | ||
4 | class Canvas : public PartRenderer | |
5 | { | |
6 | Q_OBJECT | |
7 | public: | |
8 | Canvas( | |
9 | Model* model, | |
10 | DocumentManager* documents, | |
11 | const ldraw::ColorTable& colorTable, | |
12 | QWidget* parent = nullptr); | |
13 | protected: | |
14 | void mouseMoveEvent(QMouseEvent* event) override; | |
15 | signals: | |
16 | void newStatusText(const QString& newStatusText); | |
17 | }; |