Reconfigure GUI meters when route I/O configuration changes.
[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 "ardour/types.h"
36
37 #include <gtkmm2ext/click_box.h>
38 #include <gtkmm2ext/focus_entry.h>
39 #include <gtkmm2ext/slider_controller.h>
40
41 #include "enums.h"
42 #include "level_meter.h"
43
44 namespace ARDOUR {
45         class IO;
46         class Session;
47         class Route;
48         class RouteGroup;
49 }
50 namespace Gtkmm2ext {
51         class FastMeter;
52         class BarController;
53 }
54 namespace Gtk {
55         class Menu;
56 }
57
58 class GainMeterBase : virtual public sigc::trackable
59 {
60   public:
61         GainMeterBase (ARDOUR::Session&, const Glib::RefPtr<Gdk::Pixbuf>& pix,
62                        bool horizontal);
63         virtual ~GainMeterBase ();
64
65         virtual void set_io (boost::shared_ptr<ARDOUR::IO>);
66
67         void update_gain_sensitive ();
68         void update_meters ();
69
70         void effective_gain_display ();
71         void set_width (Width, int len=0);
72         void set_meter_strip_name (const char * name);
73         void set_fader_name (const char * name);
74
75         virtual void setup_meters (int len=0);
76
77         boost::shared_ptr<PBD::Controllable> get_controllable();
78
79         LevelMeter& get_level_meter() const { return *level_meter; }
80         Gtkmm2ext::SliderController& get_gain_slider() const { return *gain_slider; }
81
82   protected:
83
84         friend class MixerStrip;
85         boost::shared_ptr<ARDOUR::IO> _io;
86         ARDOUR::Session& _session;
87         std::vector<sigc::connection> connections;
88
89         bool ignore_toggle;
90         bool next_release_selects;
91
92         Gtkmm2ext::SliderController *gain_slider;
93         Gtk::Adjustment              gain_adjustment;
94         Gtkmm2ext::FocusEntry        gain_display;
95         Gtk::Button                  peak_display;
96         Gtk::DrawingArea             meter_metric_area;
97         LevelMeter                  *level_meter;
98
99         sigc::connection gain_watching;
100
101         Gtk::Button gain_automation_style_button;
102         Gtk::ToggleButton gain_automation_state_button;
103
104         Gtk::Menu gain_astate_menu;
105         Gtk::Menu gain_astyle_menu;
106
107         gint gain_automation_style_button_event (GdkEventButton *);
108         gint gain_automation_state_button_event (GdkEventButton *);
109         gint pan_automation_style_button_event (GdkEventButton *);
110         gint pan_automation_state_button_event (GdkEventButton *);
111
112         void gain_automation_state_changed();
113         void gain_automation_style_changed();
114
115         std::string astate_string (ARDOUR::AutoState);
116         std::string short_astate_string (ARDOUR::AutoState);
117         std::string _astate_string (ARDOUR::AutoState, bool);
118
119         std::string astyle_string (ARDOUR::AutoStyle);
120         std::string short_astyle_string (ARDOUR::AutoStyle);
121         std::string _astyle_string (ARDOUR::AutoStyle, bool);
122
123         Width _width;
124
125         void show_gain ();
126         void gain_activated ();
127         bool gain_focused (GdkEventFocus*);
128
129         float max_peak;
130         
131         void gain_adjusted ();
132         void gain_changed ();
133         
134         void meter_point_clicked ();
135         void gain_unit_changed ();
136         
137         virtual void hide_all_meters ();
138
139         gint meter_button_press (GdkEventButton*, uint32_t);
140
141         bool peak_button_release (GdkEventButton*);
142         bool gain_key_press (GdkEventKey*);
143         
144         Gtk::Menu* meter_menu;
145         void popup_meter_menu (GdkEventButton*);
146
147         gint start_gain_touch (GdkEventButton*);
148         gint end_gain_touch (GdkEventButton*);
149
150         void set_mix_group_meter_point (ARDOUR::Route&, ARDOUR::MeterPoint);
151         void set_meter_point (ARDOUR::Route&, ARDOUR::MeterPoint);
152         gint meter_release (GdkEventButton*);
153         gint meter_press (GdkEventButton*);
154         bool wait_for_release;
155         ARDOUR::MeterPoint old_meter_point;
156
157         void parameter_changed (const char*);
158
159         void reset_peak_display ();
160         void reset_group_peak_display (ARDOUR::RouteGroup*);
161
162         static sigc::signal<void> ResetAllPeakDisplays;
163         static sigc::signal<void,ARDOUR::RouteGroup*> ResetGroupPeakDisplays;
164
165         void on_theme_changed ();
166         bool style_changed;
167         bool dpi_changed;
168         bool color_changed;
169         void color_handler(bool);
170 };
171
172 class GainMeter : public GainMeterBase, public Gtk::VBox
173 {
174   public:
175         GainMeter (ARDOUR::Session&);
176         ~GainMeter () {}
177
178         void set_io (boost::shared_ptr<ARDOUR::IO>);
179
180         int get_gm_width ();
181         void setup_meters (int len=0);
182
183         static void setup_slider_pix ();
184
185   protected:
186         void hide_all_meters ();
187
188         gint meter_metrics_expose (GdkEventExpose *);
189
190         static std::map<std::string,Glib::RefPtr<Gdk::Pixmap> > metric_pixmaps;
191         static Glib::RefPtr<Gdk::Pixmap> render_metrics (Gtk::Widget&);
192
193   private:
194         Gtk::HBox  gain_display_box;
195         Gtk::HBox  fader_box;
196         Gtk::VBox* fader_vbox;
197         Gtk::HBox  hbox;
198
199         static Glib::RefPtr<Gdk::Pixbuf> slider;
200 };
201
202 #endif /* __ardour_gtk_gain_meter_h__ */
203