diff options
author | Stanislaw Halik <sthalik@misaki.pl> | 2016-05-26 17:16:43 +0200 |
---|---|---|
committer | Stanislaw Halik <sthalik@misaki.pl> | 2016-05-26 17:32:54 +0200 |
commit | 70c9aaa9c297d2b20b7d3b466ceaf5f1def36752 (patch) | |
tree | 4dba0df4a63404fd90f0bc8e8fc58de8eba0d057 /spline-widget/qfunctionconfigurator.h | |
parent | 26de6a0ad9ed082e14de928ef03f4db379e9686f (diff) |
spline-widget: allow using as preview when disabled
Diffstat (limited to 'spline-widget/qfunctionconfigurator.h')
-rw-r--r-- | spline-widget/qfunctionconfigurator.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/spline-widget/qfunctionconfigurator.h b/spline-widget/qfunctionconfigurator.h index ffd1dd78..1700dfca 100644 --- a/spline-widget/qfunctionconfigurator.h +++ b/spline-widget/qfunctionconfigurator.h @@ -19,6 +19,7 @@ class SPLINE_WIDGET_EXPORT QFunctionConfigurator : public QWidget { Q_OBJECT Q_PROPERTY(QColor colorBezier READ colorBezier WRITE setColorBezier) + Q_PROPERTY(bool is_preview_only READ is_preview_only WRITE set_preview_only) public: QFunctionConfigurator(QWidget *parent = 0); @@ -39,6 +40,8 @@ public: _background = QPixmap(); update(); } + void set_preview_only(bool val); + bool is_preview_only() const; void set_snap(int x, int y) { snap_x = x; snap_y = y; } void get_snap(int& x, int& y) const { x = snap_x; y = snap_y; } protected slots: @@ -72,8 +75,8 @@ private: QPixmap _background; QPixmap _function; - bool _draw_function; int snap_x, snap_y; + bool _draw_function, _preview_only; static constexpr int line_length_pixels = 3; static constexpr int point_size = 5; |