extend strict-i/o to include route outputs.
[ardour.git] / gtk2_ardour / automation_controller.h
1 /*
2     Copyright (C) 2007 Paul Davis
3     Author: David Robillard
4
5     This program is free software; you can redistribute it and/or modify
6     it under the terms of the GNU General Public License as published by
7     the Free Software Foundation; either version 2 of the License, or
8     (at your option) any later version.
9
10     This program is distributed in the hope that it will be useful,
11     but WITHOUT ANY WARRANTY; without even the implied warranty of
12     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13     GNU General Public License for more details.
14
15     You should have received a copy of the GNU General Public License
16     along with this program; if not, write to the Free Software
17     Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
18
19 */
20
21 #ifndef __ardour_gtk_automation_controller_h__
22 #define __ardour_gtk_automation_controller_h__
23
24 #ifdef YES
25 #undef YES
26 #endif
27 #ifdef NO
28 #undef NO
29 #endif
30
31 #include <boost/shared_ptr.hpp>
32 #include <gtkmm.h>
33
34 #include "gtkmm2ext/barcontroller.h"
35 #include "pbd/signals.h"
36 #include "evoral/Parameter.hpp"
37
38 namespace ARDOUR {
39         class Session;
40         class AutomationList;
41         class AutomationControl;
42         class Automatable;
43 }
44
45 class AutomationBarController : public Gtkmm2ext::BarController {
46 public:
47         AutomationBarController(boost::shared_ptr<ARDOUR::Automatable>       printer,
48                                 boost::shared_ptr<ARDOUR::AutomationControl> ac,
49                                 Gtk::Adjustment*                             adj);
50         ~AutomationBarController();
51 private:
52         std::string get_label (double&);
53         boost::shared_ptr<ARDOUR::Automatable>       _printer;
54         boost::shared_ptr<ARDOUR::AutomationControl> _controllable;
55 };
56
57 /** A BarController which displays the value and allows control of an AutomationControl */
58 class AutomationController : public Gtk::Alignment {
59 public:
60         static boost::shared_ptr<AutomationController> create(
61                 boost::shared_ptr<ARDOUR::Automatable>       parent,
62                 const Evoral::Parameter&                     param,
63                 const ARDOUR::ParameterDescriptor&           desc,
64                 boost::shared_ptr<ARDOUR::AutomationControl> ac);
65
66         ~AutomationController();
67
68         boost::shared_ptr<ARDOUR::AutomationControl> controllable() { return _controllable; }
69
70         void disable_vertical_scroll();
71
72         Gtk::Adjustment* adjustment() { return _adjustment; }
73         Gtk::Widget*     widget()     { return _widget; }
74
75         void display_effective_value();
76         void value_adjusted();
77
78         void stop_updating ();
79
80 private:
81         AutomationController (boost::shared_ptr<ARDOUR::Automatable>       printer,
82                               boost::shared_ptr<ARDOUR::AutomationControl> ac,
83                               Gtk::Adjustment*                             adj);
84
85         void start_touch();
86         void end_touch();
87         void toggled();
88
89         void run_note_select_dialog();
90         void set_ratio(double ratio);
91         void set_freq_beats(double beats);
92         bool on_button_release(GdkEventButton* ev);
93
94         void value_changed();
95
96         Gtk::Widget*                                 _widget;
97         boost::shared_ptr<ARDOUR::Automatable>       _printer;
98         boost::shared_ptr<ARDOUR::AutomationControl> _controllable;
99         Gtk::Adjustment*                             _adjustment;
100         sigc::connection                             _screen_update_connection;
101         PBD::ScopedConnection                        _changed_connection;
102         bool                                         _ignore_change;
103 };
104
105
106 #endif /* __ardour_gtk_automation_controller_h__ */