diff options
Diffstat (limited to 'spline-widget/functionconfig.h')
-rw-r--r-- | spline-widget/functionconfig.h | 18 |
1 files changed, 5 insertions, 13 deletions
diff --git a/spline-widget/functionconfig.h b/spline-widget/functionconfig.h index cac3c65c..4db24b84 100644 --- a/spline-widget/functionconfig.h +++ b/spline-widget/functionconfig.h @@ -44,29 +44,21 @@ private: volatile bool activep; State cur, saved; public: - double maxInput() const { return max_x; } - double maxOutput() const { return max_y; } + double maxInput() const; + double maxOutput() const; Map(); Map(double maxx, double maxy); float getValue(float x); bool getLastPoint(QPointF& point); void removePoint(int i); - void removeAllPoints() { - QMutexLocker foo(&_mutex); - cur.input.clear(); - reload(); - } + void removeAllPoints(); void addPoint(QPointF pt); void movePoint(int idx, QPointF pt); const QList<QPointF> getPoints(); - void setMaxInput(double MaxInput) { - max_x = MaxInput; - } - void setMaxOutput(double MaxOutput) { - max_y = MaxOutput; - } + void setMaxInput(double MaxInput); + void setMaxOutput(double MaxOutput); void saveSettings(QSettings& settings, const QString& title); void loadSettings(QSettings& settings, const QString& title); |