aboutsummaryrefslogtreecommitdiffstats
path: root/src/plugins/qmldesigner/components/curveeditor/curveeditormodel.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/plugins/qmldesigner/components/curveeditor/curveeditormodel.h')
-rw-r--r--src/plugins/qmldesigner/components/curveeditor/curveeditormodel.h19
1 files changed, 18 insertions, 1 deletions
diff --git a/src/plugins/qmldesigner/components/curveeditor/curveeditormodel.h b/src/plugins/qmldesigner/components/curveeditor/curveeditormodel.h
index 6e212d4c6a..48d05586a2 100644
--- a/src/plugins/qmldesigner/components/curveeditor/curveeditormodel.h
+++ b/src/plugins/qmldesigner/components/curveeditor/curveeditormodel.h
@@ -48,6 +48,14 @@ class CurveEditorModel : public TreeModel
signals:
void currentFrameChanged(int frame);
+ void startFrameChanged(int frame);
+
+ void endFrameChanged(int frame);
+
+ void updateStartFrame(int frame);
+
+ void updateEndFrame(int frame);
+
void curveChanged(PropertyTreeItem *item);
public:
@@ -58,15 +66,24 @@ public:
virtual CurveEditorStyle style() const = 0;
public:
- CurveEditorModel(QObject *parent = nullptr);
+ CurveEditorModel(double minTime, double maxTime, QObject *parent = nullptr);
~CurveEditorModel() override;
void setCurrentFrame(int frame);
+ void setMinimumTime(double time, bool internal);
+
+ void setMaximumTime(double time, bool internal);
+
void setCurve(unsigned int id, const AnimationCurve &curve);
void reset(const std::vector<TreeItem *> &items);
+
+protected:
+ double m_minTime = 0.;
+
+ double m_maxTime = 0.;
};
} // End namespace DesignTools.