summaryrefslogtreecommitdiff
path: root/libs/ardour
diff options
context:
space:
mode:
authorHans Baier <hansfbaier@googlemail.com>2009-01-21 10:20:27 +0000
committerHans Baier <hansfbaier@googlemail.com>2009-01-21 10:20:27 +0000
commit5309c327ec96de33838e45ddb1489a632c2a4c68 (patch)
tree78cbc9083966e2a42cb8d6a15b0053e6681e9572 /libs/ardour
parent33852a0728d081864b83e74e900802be7ab6f2aa (diff)
* make MIDI-specific menu show up on all MIDI lanes
* style guide, comments and a little refactoring (remove duplication) git-svn-id: svn://localhost/ardour2/branches/3.0@4422 d708f5d6-7413-0410-9779-e7cbd77b26cf
Diffstat (limited to 'libs/ardour')
-rw-r--r--libs/ardour/ardour/event_type_map.h12
-rw-r--r--libs/ardour/event_type_map.cc6
2 files changed, 14 insertions, 4 deletions
diff --git a/libs/ardour/ardour/event_type_map.h b/libs/ardour/ardour/event_type_map.h
index dfa11d6408..d6f26aeac7 100644
--- a/libs/ardour/ardour/event_type_map.h
+++ b/libs/ardour/ardour/event_type_map.h
@@ -24,6 +24,8 @@
#include <string>
#include <evoral/TypeMap.hpp>
+class Evoral::Parameter;
+
namespace ARDOUR {
/** This is the interface Ardour provides to Evoral about what
@@ -35,10 +37,12 @@ public:
uint8_t parameter_midi_type(const Evoral::Parameter& param) const;
uint32_t midi_event_type(uint8_t status) const;
- bool is_integer(const Evoral::Parameter& param) const;
- Evoral::Parameter new_parameter(uint32_t type, uint8_t channel=0, uint32_t id=0) const;
- Evoral::Parameter new_parameter(const std::string& str) const;
- std::string to_symbol(const Evoral::Parameter& param) const;
+ bool is_integer(const Evoral::Parameter& param) const;
+ Evoral::Parameter new_parameter(uint32_t type, uint8_t channel=0, uint32_t id=0) const;
+ Evoral::Parameter new_parameter(const std::string& str) const;
+ std::string to_symbol(const Evoral::Parameter& param) const;
+
+ bool is_midi_parameter(const Evoral::Parameter& param);
static EventTypeMap& instance() { return event_type_map; }
diff --git a/libs/ardour/event_type_map.cc b/libs/ardour/event_type_map.cc
index 39c2e3d6eb..a4d8317a42 100644
--- a/libs/ardour/event_type_map.cc
+++ b/libs/ardour/event_type_map.cc
@@ -38,6 +38,12 @@ EventTypeMap::type_is_midi(uint32_t type) const
return (type >= MidiCCAutomation) && (type <= MidiChannelPressureAutomation);
}
+bool
+EventTypeMap::is_midi_parameter(const Evoral::Parameter& param)
+{
+ return type_is_midi(param.type());
+}
+
uint8_t
EventTypeMap::parameter_midi_type(const Evoral::Parameter& param) const
{