diff options
author | Stanislaw Halik <sthalik@misaki.pl> | 2021-07-29 15:55:09 +0200 |
---|---|---|
committer | Stanislaw Halik <sthalik@misaki.pl> | 2021-07-29 15:55:09 +0200 |
commit | eded65bbcabd8e2267ef3a1d7df467ab403b27e0 (patch) | |
tree | e8352bd3fdaa3ae582880945938d6eef21ffc480 /spline/spline.hpp | |
parent | 2112db0a98a2cd14b25828a5bc84bddc423712bf (diff) |
to rebasefeature/qt6
Diffstat (limited to 'spline/spline.hpp')
-rw-r--r-- | spline/spline.hpp | 13 |
1 files changed, 11 insertions, 2 deletions
diff --git a/spline/spline.hpp b/spline/spline.hpp index e4f64069..4aeaec2f 100644 --- a/spline/spline.hpp +++ b/spline/spline.hpp @@ -11,7 +11,6 @@ #include "options/options.hpp" #include "axis-opts.hpp" #include "export.hpp" -#include "compat/mutex.hpp" #include <cstddef> #include <vector> @@ -21,6 +20,7 @@ #include <QObject> #include <QPointF> #include <QString> +#include <QRecursiveMutex> #include <QMetaObject> namespace spline_detail { @@ -103,6 +103,15 @@ struct OTR_SPLINE_EXPORT base_spline : base_spline_, spline_modify_mixin, spline ~base_spline() override; }; +struct mutex +{ + mutable QRecursiveMutex inner; + auto* operator*() { return &inner; } + auto* operator->() { return &inner; } + mutex() = default; + mutex(const mutex&) {} +}; + class OTR_SPLINE_EXPORT spline : public base_spline { using f = float; @@ -118,12 +127,12 @@ class OTR_SPLINE_EXPORT spline : public base_spline void disconnect_signals(); void invalidate_settings_(); - mutex mtx { mutex::Recursive }; std::shared_ptr<settings> s; QMetaObject::Connection conn_points, conn_maxx, conn_maxy; std::shared_ptr<QObject> ctx { std::make_shared<QObject>() }; + mutable mutex mtx; mutable QPointF last_input_value{-1, -1}; mutable std::vector<float> data = std::vector<float>(value_count, magic_fill_value); mutable points_t points; |