score
Home
Classes
Namespaces
Files
MidiNoteEditor.hpp
1
#pragma once
2
3
#include <score/model/ObjectEditor.hpp>
4
5
namespace
Midi
6
{
7
class
NoteEditor
:
public
score::ObjectEditor
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
}
JSONReader
Definition:
JSONVisitor.hpp:52
Midi::NoteEditor
Definition:
MidiNoteEditor.hpp:8
Selection
Definition:
Selection.hpp:12
score::DocumentContext
Definition:
DocumentContext.hpp:18
score::ObjectEditor
Definition:
ObjectEditor.hpp:12