Merged with trunk R1283.
[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     $Id$
19 */
20
21 #ifndef __ardour_gtk_gain_meter_h__
22 #define __ardour_gtk_gain_meter_h__
23
24 #include <vector>
25 #include <map>
26
27 #include <gtkmm/box.h>
28 #include <gtkmm/adjustment.h>
29 #include <gtkmm/frame.h>
30 #include <gtkmm/eventbox.h>
31 #include <gtkmm/button.h>
32 #include <gtkmm/table.h>
33 #include <gtkmm/drawingarea.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
43 namespace ARDOUR {
44         class IO;
45         class Session;
46         class Route;
47         class RouteGroup;
48 }
49 namespace Gtkmm2ext {
50         class FastMeter;
51         class BarController;
52 }
53 namespace Gtk {
54         class Menu;
55 }
56
57 class GainMeter : public Gtk::VBox
58 {
59   public:
60         GainMeter (boost::shared_ptr<ARDOUR::IO>, ARDOUR::Session&);
61         ~GainMeter ();
62
63         void update_gain_sensitive ();
64
65         void update_meters ();
66         void update_meters_falloff ();
67
68         void effective_gain_display ();
69
70         void set_width (Width);
71         void setup_meters ();
72
73         void set_meter_strip_name (const char * name);
74         void set_fader_name (const char * name);
75
76   private:
77
78         friend class MixerStrip;
79         boost::shared_ptr<ARDOUR::IO> _io;
80         ARDOUR::Session& _session;
81
82         bool ignore_toggle;
83         bool next_release_selects;
84
85         Gtkmm2ext::VSliderController *gain_slider;
86         Gtk::Adjustment              gain_adjustment;
87         Gtkmm2ext::FocusEntry        gain_display;
88         Gtk::Entry                   peak_display;
89         Gtk::HBox                    gain_display_box;
90         Gtk::HBox                    fader_box;
91         Gtk::DrawingArea             meter_metric_area;
92
93         sigc::connection gain_watching;
94
95         Gtk::Button gain_automation_style_button;
96         Gtk::ToggleButton gain_automation_state_button;
97
98         Gtk::Menu gain_astate_menu;
99         Gtk::Menu gain_astyle_menu;
100
101         gint gain_automation_style_button_event (GdkEventButton *);
102         gint gain_automation_state_button_event (GdkEventButton *);
103         gint pan_automation_style_button_event (GdkEventButton *);
104         gint pan_automation_state_button_event (GdkEventButton *);
105
106         void gain_automation_state_changed();
107         void gain_automation_style_changed();
108
109         std::string astate_string (ARDOUR::AutoState);
110         std::string short_astate_string (ARDOUR::AutoState);
111         std::string _astate_string (ARDOUR::AutoState, bool);
112
113         std::string astyle_string (ARDOUR::AutoStyle);
114         std::string short_astyle_string (ARDOUR::AutoStyle);
115         std::string _astyle_string (ARDOUR::AutoStyle, bool);
116
117         Width                       _width;
118
119         static std::map<std::string,Glib::RefPtr<Gdk::Pixmap> > metric_pixmaps;
120         static Glib::RefPtr<Gdk::Pixmap> render_metrics (Gtk::Widget&);
121
122         gint meter_metrics_expose (GdkEventExpose *);
123
124         void show_gain ();
125         void gain_activated ();
126         bool gain_focused (GdkEventFocus*);
127
128         struct MeterInfo {
129             Gtkmm2ext::FastMeter *meter;
130             gint16          width;   
131             bool            packed;
132             
133             MeterInfo() { 
134                     meter = 0;
135                     width = 0;
136                     packed = false;
137             }
138         };
139
140         static const guint16 regular_meter_width = 5;
141         static const guint16 thin_meter_width = 2;
142         vector<MeterInfo>    meters;
143         float       max_peak;
144         
145         Gtk::VBox*   fader_vbox;
146         Gtk::HBox   hbox;
147         Gtk::HBox   meter_packer;
148
149         void gain_adjusted ();
150         void gain_changed (void *);
151         
152         void meter_point_clicked ();
153         void gain_unit_changed ();
154         
155         void hide_all_meters ();
156
157         gint meter_button_press (GdkEventButton*, uint32_t);
158         gint meter_button_release (GdkEventButton*, uint32_t);
159
160         bool peak_button_release (GdkEventButton*);
161         bool gain_key_press (GdkEventKey*);
162         
163         Gtk::Menu* meter_menu;
164         void popup_meter_menu (GdkEventButton*);
165
166         gint start_gain_touch (GdkEventButton*);
167         gint end_gain_touch (GdkEventButton*);
168
169         void set_mix_group_meter_point (ARDOUR::Route&, ARDOUR::MeterPoint);
170         void set_meter_point (ARDOUR::Route&, ARDOUR::MeterPoint);
171         gint meter_release (GdkEventButton*);
172         gint meter_press (GdkEventButton*);
173         bool wait_for_release;
174         ARDOUR::MeterPoint old_meter_point;
175
176         void parameter_changed (const char*);
177
178         void reset_peak_display ();
179         void reset_group_peak_display (ARDOUR::RouteGroup*);
180
181         static sigc::signal<void> ResetAllPeakDisplays;
182         static sigc::signal<void,ARDOUR::RouteGroup*> ResetGroupPeakDisplays;
183
184         static Glib::RefPtr<Gdk::Pixbuf> slider;
185         static Glib::RefPtr<Gdk::Pixbuf> rail;
186         static int setup_slider_pix ();
187 };
188
189 #endif /* __ardour_gtk_gain_meter_h__ */
190