Remove weird/pointless Automatable::data().
[ardour.git] / libs / ardour / ardour / automation_list.h
1 /*
2     Copyright (C) 2002 Paul Davis
3
4     This program is free software; you can redistribute it and/or modify
5     it under the terms of the GNU General Public License as published by
6     the Free Software Foundation; either version 2 of the License, or
7     (at your option) any later version.
8
9     This program is distributed in the hope that it will be useful,
10     but WITHOUT ANY WARRANTY; without even the implied warranty of
11     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12     GNU General Public License for more details.
13
14     You should have received a copy of the GNU General Public License
15     along with this program; if not, write to the Free Software
16     Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
17
18 */
19
20 #ifndef __ardour_automation_event_h__
21 #define __ardour_automation_event_h__
22
23 #include <stdint.h>
24 #include <list>
25 #include <cmath>
26
27 #include <glibmm/thread.h>
28
29 #include "pbd/undo.h"
30 #include "pbd/xml++.h"
31 #include "pbd/statefuldestructible.h"
32
33 #include "ardour/ardour.h"
34
35 #include "evoral/ControlList.hpp"
36
37 namespace ARDOUR {
38
39 class AutomationList : public PBD::StatefulDestructible, public Evoral::ControlList
40 {
41   public:
42         AutomationList (Evoral::Parameter id);
43         AutomationList (const XMLNode&, Evoral::Parameter id);
44         AutomationList (const AutomationList&);
45         AutomationList (const AutomationList&, double start, double end);
46         ~AutomationList();
47
48         virtual boost::shared_ptr<Evoral::ControlList> create(Evoral::Parameter id);
49
50         AutomationList& operator= (const AutomationList&);
51         bool operator== (const AutomationList&);
52
53         void freeze();
54         void thaw ();
55         void mark_dirty () const;
56
57         void set_automation_state (AutoState);
58         AutoState automation_state() const { return _state; }
59         PBD::Signal0<void> automation_state_changed;
60
61         void set_automation_style (AutoStyle m);
62         AutoStyle automation_style() const { return _style; }
63         PBD::Signal0<void> automation_style_changed;
64
65         bool automation_playback() const {
66                 return (_state & Play) || ((_state & Touch) && !_touching);
67         }
68         bool automation_write () const {
69                 return (_state & Write) || ((_state & Touch) && _touching);
70         }
71
72         PBD::Signal0<void> StateChanged;
73
74         static PBD::Signal1<void,AutomationList*> AutomationListCreated;
75         mutable PBD::Signal0<void> Dirty;
76
77         void start_touch ();
78         void stop_touch ();
79         bool touching() const { return _touching; }
80
81         XMLNode& get_state (); 
82         int set_state (const XMLNode &, int version);
83         XMLNode& state (bool full);
84         XMLNode& serialize_events ();
85
86   private:
87         void create_curve_if_necessary ();
88         int deserialize_events (const XMLNode&);
89
90         void maybe_signal_changed ();
91
92         AutoState _state;
93         AutoStyle _style;
94         bool      _touching;
95 };
96
97 } // namespace
98
99 #endif /* __ardour_automation_event_h__ */