summaryrefslogtreecommitdiff
path: root/libs/ardour/ardour/midi_model.h
diff options
context:
space:
mode:
authorPaul Davis <paul@linuxaudiosystems.com>2009-09-07 13:38:06 +0000
committerPaul Davis <paul@linuxaudiosystems.com>2009-09-07 13:38:06 +0000
commit79dc191d6bcd61a81765ce2563a9c325b97c4ed8 (patch)
tree3393ee104c69c9e83aaf9e4e9508e6adb4393c14 /libs/ardour/ardour/midi_model.h
parent837bfc9af44c5b6c1eeb14e7af8d9ec62c59aac6 (diff)
add anonymous union to DiffCommand to allow uint8t_t and time-based arguments; use DiffCommand for note trimming
git-svn-id: svn://localhost/ardour2/branches/3.0@5638 d708f5d6-7413-0410-9779-e7cbd77b26cf
Diffstat (limited to 'libs/ardour/ardour/midi_model.h')
-rw-r--r--libs/ardour/ardour/midi_model.h12
1 files changed, 10 insertions, 2 deletions
diff --git a/libs/ardour/ardour/midi_model.h b/libs/ardour/ardour/midi_model.h
index 46d4cf794c..460e790323 100644
--- a/libs/ardour/ardour/midi_model.h
+++ b/libs/ardour/ardour/midi_model.h
@@ -119,6 +119,8 @@ public:
void change (const boost::shared_ptr<Evoral::Note<TimeType> > note,
Property prop, uint8_t new_value);
+ void change (const boost::shared_ptr<Evoral::Note<TimeType> > note,
+ Property prop, TimeType new_time);
private:
boost::shared_ptr<MidiModel> _model;
@@ -127,8 +129,14 @@ public:
struct NotePropertyChange {
DiffCommand::Property property;
boost::shared_ptr<Evoral::Note<TimeType> > note;
- uint8_t old_value;
- uint8_t new_value;
+ union {
+ uint8_t old_value;
+ TimeType old_time;
+ };
+ union {
+ uint8_t new_value;
+ TimeType new_time;
+ };
};
typedef std::list<NotePropertyChange> ChangeList;