CurveEditor.hpp
1 #pragma once
2 #include <score/model/ObjectEditor.hpp>
3 
4 namespace Curve
5 {
6 
8 {
9  SCORE_CONCRETE("d2b20e55-296f-49cc-a1c5-1ba1a1122d07")
10 
11  bool
12  copy(JSONReader& r, const Selection& s, const score::DocumentContext& ctx) override;
13  bool paste(
14  QPoint pos, QObject* focusedObject, const QMimeData& mime,
15  const score::DocumentContext& ctx) override;
16  bool remove(const Selection& s, const score::DocumentContext& ctx) override;
17 };
18 
19 }
Definition: CurveEditor.hpp:8
Definition: JSONVisitor.hpp:52
Definition: Selection.hpp:12
Utilities and base classes for 1D curves.
Definition: FocusDispatcher.hpp:12
Definition: DocumentContext.hpp:18
Definition: ObjectEditor.hpp:12