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:
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user