add export visibility macros across libardour
[ardour.git] / libs / ardour / ardour / event_type_map.h
1 /*
2     Copyright (C) 2000-2007 Paul Davis
3     Author: David Robillard
4
5     This program is free software; you can redistribute it and/or modify
6     it under the terms of the GNU General Public License as published by
7     the Free Software Foundation; either version 2 of the License, or
8     (at your option) any later version.
9
10     This program is distributed in the hope that it will be useful,
11     but WITHOUT ANY WARRANTY; without even the implied warranty of
12     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13     GNU General Public License for more details.
14
15     You should have received a copy of the GNU General Public License
16     along with this program; if not, write to the Free Software
17     Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
18
19 */
20
21 #ifndef __ardour_event_type_map_h__
22 #define __ardour_event_type_map_h__
23
24 #include <string>
25 #include "evoral/TypeMap.hpp"
26 #include "evoral/ControlList.hpp"
27
28 #include "ardour/libardour_visibility.h"
29
30 namespace ARDOUR {
31
32 /** This is the interface Ardour provides to Evoral about what
33  * parameter and event types/ranges/names etc. to use.
34  */
35 class LIBARDOUR_API EventTypeMap : public Evoral::TypeMap {
36 public:
37         bool     type_is_midi(uint32_t type) const;
38         uint8_t  parameter_midi_type(const Evoral::Parameter& param) const;
39         uint32_t midi_event_type(uint8_t status) const;
40         Evoral::ControlList::InterpolationStyle interpolation_of(const Evoral::Parameter& param);
41
42         bool                 is_integer(const Evoral::Parameter& param) const;
43         Evoral::Parameter    new_parameter(uint32_t type, uint8_t channel=0, uint32_t id=0) const;
44         Evoral::Parameter    new_parameter(const std::string& str) const;
45         std::string          to_symbol(const Evoral::Parameter& param) const;
46
47         bool                 is_midi_parameter(const Evoral::Parameter& param);
48
49         static EventTypeMap& instance() { return event_type_map; }
50
51 private:
52         static EventTypeMap event_type_map;
53 };
54
55 } // namespace ARDOUR
56
57 #endif /* __ardour_event_type_map_h__ */
58