mirror of
https://github.com/UpsilonNumworks/Upsilon.git
synced 2026-01-19 16:57:31 +01:00
21 lines
538 B
C++
21 lines
538 B
C++
#ifndef SEQUENCE_GRAPH_VIEW_H
|
|
#define SEQUENCE_GRAPH_VIEW_H
|
|
|
|
#include "../../shared/function_graph_view.h"
|
|
#include "../sequence_store.h"
|
|
|
|
namespace Sequence {
|
|
|
|
class GraphView : public Shared::FunctionGraphView {
|
|
public:
|
|
GraphView(SequenceStore * sequenceStore, Shared::InteractiveCurveViewRange * graphRange,
|
|
Shared::CurveViewCursor * cursor, Shared::BannerView * bannerView, Shared::CursorView * cursorView);
|
|
void drawRect(KDContext * ctx, KDRect rect) const override;
|
|
private:
|
|
SequenceStore * m_sequenceStore;
|
|
};
|
|
|
|
}
|
|
|
|
#endif
|