MidiNoteEditor.hpp
1 #pragma once
2 
3 #include <score/model/ObjectEditor.hpp>
4 
5 namespace Midi
6 {
8 {
9  SCORE_CONCRETE("94325561-b73b-4593-a4ef-46c7e2100078")
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 }
Definition: JSONVisitor.hpp:52
Definition: MidiNoteEditor.hpp:8
Definition: Selection.hpp:12
Definition: DocumentContext.hpp:18
Definition: ObjectEditor.hpp:12