fix commentary
[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
33 #include <gtkmm/alignment.h>
34
35 #include "pbd/signals.h"
36 #include "evoral/Parameter.hpp"
37 #include "widgets/barcontroller.h"
38
39 namespace ARDOUR {
40         class Session;
41         class AutomationList;
42         class AutomationControl;
43 }
44
45 namespace Gtk {
46         class Adjustment;
47         class Widget;
48 }
49
50 class AutomationBarController : public ArdourWidgets::BarController {
51 public:
52         AutomationBarController(boost::shared_ptr<ARDOUR::AutomationControl> ac,
53                                 Gtk::Adjustment*                             adj);
54         ~AutomationBarController();
55 private:
56         std::string get_label (double&);
57         boost::shared_ptr<ARDOUR::AutomationControl> _controllable;
58 };
59
60 /** A BarController which displays the value and allows control of an AutomationControl */
61 class AutomationController : public Gtk::Alignment {
62 public:
63         static boost::shared_ptr<AutomationController> create (
64                 const Evoral::Parameter&                     param,
65                 const ARDOUR::ParameterDescriptor&           desc,
66                 boost::shared_ptr<ARDOUR::AutomationControl> ac,
67                 bool                                         use_knob = false);
68
69         ~AutomationController();
70
71         boost::shared_ptr<ARDOUR::AutomationControl> controllable() { return _controllable; }
72
73         void disable_vertical_scroll();
74
75         Gtk::Adjustment* adjustment() { return _adjustment; }
76         Gtk::Widget*     widget()     { return _widget; }
77
78         void display_effective_value ();
79         void automation_state_changed ();
80         void value_adjusted();
81
82         void stop_updating ();
83
84 private:
85         AutomationController (boost::shared_ptr<ARDOUR::AutomationControl> ac,
86                               Gtk::Adjustment*                             adj,
87                               bool                                         use_knob);
88
89         void start_touch();
90         void end_touch();
91         bool button_press(GdkEventButton*);
92         bool button_release(GdkEventButton*);
93
94         void run_note_select_dialog();
95         void set_ratio(double ratio);
96         void set_freq_beats(double beats);
97         bool on_button_release(GdkEventButton* ev);
98
99         Gtk::Widget*                                 _widget;
100         boost::shared_ptr<ARDOUR::AutomationControl> _controllable;
101         Gtk::Adjustment*                             _adjustment;
102         sigc::connection                             _screen_update_connection;
103         PBD::ScopedConnectionList                    _changed_connections;
104         bool                                         _ignore_change;
105         bool                                         _grabbed;
106 };
107
108
109 #endif /* __ardour_gtk_automation_controller_h__ */