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