Make faders visually desensitised when their tracks are in automation-play.
[ardour.git] / gtk2_ardour / gain_meter.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_gtk_gain_meter_h__
21 #define __ardour_gtk_gain_meter_h__
22
23 #include <vector>
24 #include <map>
25
26 #include <gtkmm/box.h>
27 #include <gtkmm/adjustment.h>
28 #include <gtkmm/frame.h>
29 #include <gtkmm/eventbox.h>
30 #include <gtkmm/button.h>
31 #include <gtkmm/table.h>
32 #include <gtkmm/drawingarea.h>
33 #include <gdkmm/colormap.h>
34
35 #include "pbd/signals.h"
36
37 #include "ardour/chan_count.h"
38 #include "ardour/types.h"
39 #include "ardour/session_handle.h"
40
41 #include "gtkmm2ext/click_box.h"
42 #include "gtkmm2ext/focus_entry.h"
43 #include "gtkmm2ext/slider_controller.h"
44
45 #include "enums.h"
46 #include "level_meter.h"
47
48 namespace ARDOUR {
49         class IO;
50         class Session;
51         class Route;
52         class RouteGroup;
53         class PeakMeter;
54         class Amp;
55         class Automatable;
56 }
57 namespace Gtkmm2ext {
58         class FastMeter;
59         class BarController;
60 }
61 namespace Gtk {
62         class Menu;
63 }
64
65 class GainMeterBase : virtual public sigc::trackable, ARDOUR::SessionHandlePtr
66 {
67   public:
68         GainMeterBase (ARDOUR::Session*, const Glib::RefPtr<Gdk::Pixbuf>&, const Glib::RefPtr<Gdk::Pixbuf> &,
69                        bool horizontal, int);
70         virtual ~GainMeterBase ();
71
72         virtual void set_controls (boost::shared_ptr<ARDOUR::Route> route,
73                                    boost::shared_ptr<ARDOUR::PeakMeter> meter,
74                                    boost::shared_ptr<ARDOUR::Amp> amp);
75
76         void update_gain_sensitive ();
77         void update_meters ();
78
79         void effective_gain_display ();
80         void set_width (Width, int len=0);
81         void set_meter_strip_name (const char * name);
82         void set_fader_name (const char * name);
83
84         virtual void setup_meters (int len=0);
85
86         boost::shared_ptr<PBD::Controllable> get_controllable();
87
88         LevelMeter& get_level_meter() const { return *level_meter; }
89         Gtkmm2ext::SliderController& get_gain_slider() const { return *gain_slider; }
90
91         /** Emitted in the GUI thread when a button is pressed over the level meter;
92          *  return true if the event is handled.
93          */
94         PBD::Signal1<bool, GdkEventButton *> LevelMeterButtonPress;
95
96   protected:
97
98         friend class MixerStrip;
99         boost::shared_ptr<ARDOUR::Route> _route;
100         boost::shared_ptr<ARDOUR::PeakMeter> _meter;
101         boost::shared_ptr<ARDOUR::Amp> _amp;
102         std::vector<sigc::connection> connections;
103         PBD::ScopedConnectionList model_connections;
104
105         bool ignore_toggle;
106         bool next_release_selects;
107
108         Gtkmm2ext::SliderController *gain_slider;
109         Gtk::Adjustment              gain_adjustment;
110         Gtkmm2ext::FocusEntry        gain_display;
111         Gtk::Button                  peak_display;
112         Gtk::DrawingArea             meter_metric_area;
113         LevelMeter                  *level_meter;
114
115         sigc::connection gain_watching;
116
117         Gtk::Button gain_automation_style_button;
118         Gtk::ToggleButton gain_automation_state_button;
119
120         Gtk::Menu gain_astate_menu;
121         Gtk::Menu gain_astyle_menu;
122
123         gint gain_automation_style_button_event (GdkEventButton *);
124         gint gain_automation_state_button_event (GdkEventButton *);
125         gint pan_automation_style_button_event (GdkEventButton *);
126         gint pan_automation_state_button_event (GdkEventButton *);
127
128         void gain_automation_state_changed();
129         void gain_automation_style_changed();
130
131         void setup_gain_adjustment ();
132
133         std::string astate_string (ARDOUR::AutoState);
134         std::string short_astate_string (ARDOUR::AutoState);
135         std::string _astate_string (ARDOUR::AutoState, bool);
136
137         std::string astyle_string (ARDOUR::AutoStyle);
138         std::string short_astyle_string (ARDOUR::AutoStyle);
139         std::string _astyle_string (ARDOUR::AutoStyle, bool);
140
141         Width _width;
142
143         void show_gain ();
144         void gain_activated ();
145         bool gain_focused (GdkEventFocus*);
146
147         float max_peak;
148
149         void gain_adjusted ();
150         void gain_changed ();
151
152         void meter_point_clicked ();
153         void gain_unit_changed ();
154
155         virtual void hide_all_meters ();
156
157         gint meter_button_press (GdkEventButton*, uint32_t);
158
159         bool peak_button_release (GdkEventButton*);
160         bool gain_key_press (GdkEventKey*);
161
162         Gtk::Menu* meter_menu;
163         void popup_meter_menu (GdkEventButton*);
164
165         bool gain_slider_button_press (GdkEventButton *);
166         bool gain_slider_button_release (GdkEventButton *);
167
168         void set_route_group_meter_point (ARDOUR::Route&, ARDOUR::MeterPoint);
169         void set_meter_point (ARDOUR::Route&, ARDOUR::MeterPoint);
170         gint meter_release (GdkEventButton*);
171         gint meter_press (GdkEventButton*);
172         bool wait_for_release;
173         ARDOUR::MeterPoint old_meter_point;
174
175         void parameter_changed (const char*);
176
177         void reset_peak_display ();
178         void reset_group_peak_display (ARDOUR::RouteGroup*);
179
180         static sigc::signal<void> ResetAllPeakDisplays;
181         static sigc::signal<void,ARDOUR::RouteGroup*> ResetGroupPeakDisplays;
182
183         void on_theme_changed ();
184         bool style_changed;
185         bool dpi_changed;
186         bool color_changed;
187         void color_handler(bool);
188         ARDOUR::DataType _data_type;
189         ARDOUR::ChanCount _previous_amp_output_streams;
190
191 private:
192
193         bool level_meter_button_press (GdkEventButton *);
194         PBD::ScopedConnection _level_meter_connection;
195 };
196
197 class GainMeter : public GainMeterBase, public Gtk::VBox
198 {
199   public:
200         GainMeter (ARDOUR::Session*, int);
201         ~GainMeter () {}
202
203         virtual void set_controls (boost::shared_ptr<ARDOUR::Route> route,
204                                    boost::shared_ptr<ARDOUR::PeakMeter> meter,
205                                    boost::shared_ptr<ARDOUR::Amp> amp);
206
207         int get_gm_width ();
208         void setup_meters (int len=0);
209
210         static void setup_slider_pix ();
211
212   protected:
213         void hide_all_meters ();
214
215         gint meter_metrics_expose (GdkEventExpose *);
216
217         typedef std::map<std::string,cairo_pattern_t*> MetricPatterns;
218         static  MetricPatterns metric_patterns;
219         static  cairo_pattern_t* render_metrics (Gtk::Widget &, std::vector<ARDOUR::DataType>);
220
221   private:
222
223         void meter_configuration_changed (ARDOUR::ChanCount);
224
225         Gtk::HBox  gain_display_box;
226         Gtk::HBox  fader_box;
227         Gtk::VBox* fader_vbox;
228         Gtk::HBox  hbox;
229         Gtk::Alignment fader_alignment;
230         Gtk::Alignment meter_alignment;
231         std::vector<ARDOUR::DataType> _types;
232
233         static Glib::RefPtr<Gdk::Pixbuf> slider;
234         static Glib::RefPtr<Gdk::Pixbuf> slider_desensitised;
235 };
236
237 #endif /* __ardour_gtk_gain_meter_h__ */
238