implemented basic animation curve editor widgets

Frontend is largely done, it just needs backend and connecting to other
widgets to function correctly.
This commit is contained in:
itsmattkc
2019-12-28 00:27:13 +11:00
parent 3c9b16555f
commit d82acf9b7e
16 changed files with 215 additions and 31 deletions
+10 -2
View File
@@ -1,11 +1,19 @@
#ifndef CURVEVIEW_H
#define CURVEVIEW_H
#include "widget/timelinewidget/view/timelineviewbase.h"
class CurveView
class CurveView : public TimelineViewBase
{
public:
CurveView();
CurveView(QWidget* parent = nullptr);
protected:
virtual void drawBackground(QPainter* painter, const QRectF& rect) override;
private:
int text_padding_;
};
#endif // CURVEVIEW_H