Change the feedback alert to a flashing button; works
[ardour.git] / libs / ardour / ardour / event_type_map.h
index b0ccdc8efddd1f782f8154c53af6bc5b13fbfee5..5068029db71eb3c185b5faac059047a90f794bb9 100644 (file)
@@ -1,6 +1,6 @@
 /*
     Copyright (C) 2000-2007 Paul Davis
-    Author: Dave Robillard
+    Author: David Robillard
 
     This program is free software; you can redistribute it and/or modify
     it under the terms of the GNU General Public License as published by
@@ -22,9 +22,8 @@
 #define __ardour_event_type_map_h__
 
 #include <string>
-#include <evoral/TypeMap.hpp>
-
-namespace Evoral { class Parameter; }
+#include "evoral/TypeMap.hpp"
+#include "evoral/ControlList.hpp"
 
 namespace ARDOUR {
 
@@ -36,12 +35,13 @@ public:
        bool     type_is_midi(uint32_t type) const;
        uint8_t  parameter_midi_type(const Evoral::Parameter& param) const;
        uint32_t midi_event_type(uint8_t status) const;
+       Evoral::ControlList::InterpolationStyle interpolation_of(const Evoral::Parameter& param);
 
        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; }