various fixes to MidiRegionView selection handling, key handling, drawing of ghost...
[ardour2.git] / libs / evoral / evoral / Control.hpp
blob5c45823184a24d2a51cf6de932a325cd1a98d524
1 /* This file is part of Evoral.
2 * Copyright (C) 2008 David Robillard <http://drobilla.net>
3 * Copyright (C) 2000-2008 Paul Davis
5 * Evoral is free software; you can redistribute it and/or modify it under the
6 * terms of the GNU General Public License as published by the Free Software
7 * Foundation; either version 2 of the License, or (at your option) any later
8 * version.
10 * Evoral is distributed in the hope that it will be useful, but WITHOUT ANY
11 * WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
12 * FOR A PARTICULAR PURPOSE. See the GNU General Public License for details.
14 * You should have received a copy of the GNU General Public License along
15 * with this program; if not, write to the Free Software Foundation, Inc.,
16 * 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
19 #ifndef EVORAL_CONTROL_HPP
20 #define EVORAL_CONTROL_HPP
22 #include <set>
23 #include <map>
24 #include <boost/shared_ptr.hpp>
25 #include "pbd/signals.h"
26 #include "evoral/types.hpp"
27 #include "evoral/Parameter.hpp"
29 namespace Evoral {
31 class ControlList;
32 class Transport;
34 class Control
36 public:
37 Control(const Parameter& parameter, boost::shared_ptr<ControlList>);
38 virtual ~Control() {}
40 virtual void set_double(double val, bool to_list=false, double frame=0);
41 virtual double get_double(bool from_list=false, double frame=0) const;
43 /** Get the latest user-set value
44 * (which may not equal get_value() when automation is playing back).
46 * Automation write/touch works by periodically sampling this value
47 * and adding it to the ControlList.
49 double user_double() const { return _user_value; }
51 void set_list(boost::shared_ptr<ControlList>);
53 boost::shared_ptr<ControlList> list() { return _list; }
54 boost::shared_ptr<const ControlList> list() const { return _list; }
56 inline const Parameter& parameter() const { return _parameter; }
58 /** Emitted when the our ControlList is marked dirty */
59 PBD::Signal0<void> ListMarkedDirty;
61 protected:
62 Parameter _parameter;
63 boost::shared_ptr<ControlList> _list;
64 double _user_value;
65 PBD::ScopedConnection _list_marked_dirty_connection;
67 private:
68 void list_marked_dirty ();
71 } // namespace Evoral
73 #endif // EVORAL_CONTROL_HPP