ardour
Control.hpp
Go to the documentation of this file.
1 /* This file is part of Evoral.
2  * Copyright (C) 2008 David Robillard <http://drobilla.net>
3  * Copyright (C) 2000-2008 Paul Davis
4  *
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.
9  *
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.
13  *
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
17  */
18 
19 #ifndef EVORAL_CONTROL_HPP
20 #define EVORAL_CONTROL_HPP
21 
22 #include <set>
23 #include <map>
24 #include <boost/shared_ptr.hpp>
25 #include "pbd/signals.h"
26 
27 #include "evoral/visibility.h"
28 #include "evoral/Parameter.hpp"
30 
31 namespace Evoral {
32 
33 class ControlList;
34 class ParameterDescriptor;
35 class Transport;
36 class TypeMap;
37 
45 {
46 public:
47  Control(const Parameter& parameter,
48  const ParameterDescriptor& desc,
50 
51  virtual ~Control() {}
52 
53  virtual void set_double (double val, double frame=0, bool to_list=false);
54  virtual double get_double (bool from_list=false, double frame=0) const;
55 
62  double user_double() const { return _user_value; }
63 
64  void set_list(boost::shared_ptr<ControlList>);
65 
67  boost::shared_ptr<const ControlList> list() const { return _list; }
68 
69  inline const Parameter& parameter() const { return _parameter; }
70 
72  PBD::Signal0<void> ListMarkedDirty;
73 
74 protected:
77  double _user_value;
79 
80 private:
81  void list_marked_dirty ();
82 };
83 
84 } // namespace Evoral
85 
86 #endif // EVORAL_CONTROL_HPP
double user_double() const
Definition: Control.hpp:62
double _user_value
Definition: Control.hpp:77
#define LIBEVORAL_API
Definition: visibility.h:45
PBD::ScopedConnection _list_marked_dirty_connection
Definition: Control.hpp:78
boost::shared_ptr< const ControlList > list() const
Definition: Control.hpp:67
LIBARDOUR_API uint64_t Transport
Definition: debug.cc:41
const Parameter & parameter() const
Definition: Control.hpp:69
PBD::Signal0< void > ListMarkedDirty
Definition: Control.hpp:72
LIBEVORAL_API uint64_t ControlList
Definition: debug.cpp:5
boost::shared_ptr< ControlList > list()
Definition: Control.hpp:66
virtual ~Control()
Definition: Control.hpp:51
Parameter _parameter
Definition: Control.hpp:75
boost::shared_ptr< ControlList > _list
Definition: Control.hpp:76