Fri, 01 Jul 2022 16:46:43 +0300
Fix right click to delete not really working properly
Instead of removing the point that had been added, it would remove
the point that is being drawn, which would cause it to overwrite the
previous point using the new point, causing a bit of a delay
233 | 1 | #pragma once |
2 | #include <QWidget> | |
264
76a025db4948
Convert all includes to be relative to project root directory. Files that cannot be found in this manner use angle brackets.
Teemu Piippo <teemu.s.piippo@gmail.com>
parents:
233
diff
changeset
|
3 | #include <ui_circletool.h> |
76a025db4948
Convert all includes to be relative to project root directory. Files that cannot be found in this manner use angle brackets.
Teemu Piippo <teemu.s.piippo@gmail.com>
parents:
233
diff
changeset
|
4 | #include "src/model.h" |
233 | 5 | |
6 | class CircleToolOptionsWidget : public QWidget | |
7 | { | |
8 | Q_OBJECT | |
9 | Ui_CircleToolOptions ui; | |
10 | public: | |
11 | CircleToolOptionsWidget(QWidget* parent); | |
12 | virtual ~CircleToolOptionsWidget(); | |
13 | unsigned int segments() const; | |
14 | unsigned int divisions() const; | |
15 | CircularPrimitive::Type type() const; | |
16 | Q_SIGNALS: | |
17 | void optionsChanged(const CircleToolOptions& options); | |
18 | private: | |
19 | Q_SLOT void handleInputChange(); | |
20 | }; |