score
Home
Classes
Namespaces
Files
CurveEditor.hpp
1
#pragma once
2
#include <score/model/ObjectEditor.hpp>
3
4
namespace
Curve
5
{
6
7
class
CurveEditor
:
public
score::ObjectEditor
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
}
Curve::CurveEditor
Definition:
CurveEditor.hpp:8
JSONReader
Definition:
JSONVisitor.hpp:52
Selection
Definition:
Selection.hpp:12
Curve
Utilities and base classes for 1D curves.
Definition:
FocusDispatcher.hpp:12
score::DocumentContext
Definition:
DocumentContext.hpp:18
score::ObjectEditor
Definition:
ObjectEditor.hpp:12