Add missing include guards in libardour header files
[ardour.git] / libs / ardour / ardour / automation_watch.h
1 /*
2     Copyright (C) 2012 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 #ifndef __ardour_automation_watch_h__
20 #define __ardour_automation_watch_h__
21
22 #include <set>
23 #include <boost/shared_ptr.hpp>
24 #include <glibmm/threads.h>
25 #include <sigc++/signal.h>
26
27 #include "pbd/signals.h"
28
29 #include "ardour/session_handle.h"
30
31 namespace ARDOUR {
32
33 class AutomationControl;
34
35 class LIBARDOUR_API AutomationWatch : public sigc::trackable, public ARDOUR::SessionHandlePtr, public PBD::ScopedConnectionList {
36   public:
37     static AutomationWatch& instance();
38
39     void add_automation_watch (boost::shared_ptr<ARDOUR::AutomationControl>);
40     void remove_automation_watch (boost::shared_ptr<ARDOUR::AutomationControl>);
41     void set_session (ARDOUR::Session*);
42
43     gint timer ();
44
45   private:
46     typedef std::set<boost::shared_ptr<ARDOUR::AutomationControl> > AutomationWatches;
47
48     AutomationWatch ();
49     ~AutomationWatch();
50
51     static AutomationWatch* _instance;
52     Glib::Threads::Thread*  _thread;
53     framepos_t              _last_time;
54     bool                    _run_thread;
55     AutomationWatches        automation_watches;
56     Glib::Threads::Mutex     automation_watch_lock;
57     PBD::ScopedConnection    transport_connection;
58
59     void transport_state_change ();
60     void remove_weak_automation_watch (boost::weak_ptr<ARDOUR::AutomationControl>);
61     void thread ();
62 };
63
64 }
65
66 #endif // __ardour_automation_watch_h__