New theme manager, with option to select between dark and light theme. Cleanups...
[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
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         int get_gm_width ();
74
75         void set_meter_strip_name (const char * name);
76         void set_fader_name (const char * name);
77
78   private:
79
80         friend class MixerStrip;
81         boost::shared_ptr<ARDOUR::IO> _io;
82         ARDOUR::Session& _session;
83
84         bool ignore_toggle;
85         bool next_release_selects;
86
87         Gtkmm2ext::VSliderController *gain_slider;
88         Gtk::Adjustment              gain_adjustment;
89         Gtkmm2ext::FocusEntry        gain_display;
90         Gtk::Button                  peak_display;
91         Gtk::HBox                    gain_display_box;
92         Gtk::HBox                    fader_box;
93         Gtk::DrawingArea             meter_metric_area;
94
95         sigc::connection gain_watching;
96
97         Gtk::Button gain_automation_style_button;
98         Gtk::ToggleButton gain_automation_state_button;
99
100         Gtk::Menu gain_astate_menu;
101         Gtk::Menu gain_astyle_menu;
102
103         gint gain_automation_style_button_event (GdkEventButton *);
104         gint gain_automation_state_button_event (GdkEventButton *);
105         gint pan_automation_style_button_event (GdkEventButton *);
106         gint pan_automation_state_button_event (GdkEventButton *);
107
108         void gain_automation_state_changed();
109         void gain_automation_style_changed();
110
111         std::string astate_string (ARDOUR::AutoState);
112         std::string short_astate_string (ARDOUR::AutoState);
113         std::string _astate_string (ARDOUR::AutoState, bool);
114
115         std::string astyle_string (ARDOUR::AutoStyle);
116         std::string short_astyle_string (ARDOUR::AutoStyle);
117         std::string _astyle_string (ARDOUR::AutoStyle, bool);
118
119         Width                       _width;
120
121         static std::map<std::string,Glib::RefPtr<Gdk::Pixmap> > metric_pixmaps;
122         static Glib::RefPtr<Gdk::Pixmap> render_metrics (Gtk::Widget&);
123
124         gint meter_metrics_expose (GdkEventExpose *);
125
126         void show_gain ();
127         void gain_activated ();
128         bool gain_focused (GdkEventFocus*);
129
130         struct MeterInfo {
131             Gtkmm2ext::FastMeter *meter;
132             gint16          width;   
133             bool            packed;
134             
135             MeterInfo() { 
136                     meter = 0;
137                     width = 0;
138                     packed = false;
139             }
140         };
141
142         static const guint16 regular_meter_width = 5;
143         static const guint16 thin_meter_width = 2;
144         vector<MeterInfo>    meters;
145         float       max_peak;
146         
147         Gtk::VBox*   fader_vbox;
148         Gtk::HBox   hbox;
149         Gtk::HBox   meter_packer;
150
151         void gain_adjusted ();
152         void gain_changed (void *);
153         
154         void meter_point_clicked ();
155         void gain_unit_changed ();
156         
157         void hide_all_meters ();
158
159         gint meter_button_press (GdkEventButton*, uint32_t);
160         gint meter_button_release (GdkEventButton*, uint32_t);
161
162         bool peak_button_release (GdkEventButton*);
163         bool gain_key_press (GdkEventKey*);
164         
165         Gtk::Menu* meter_menu;
166         void popup_meter_menu (GdkEventButton*);
167
168         gint start_gain_touch (GdkEventButton*);
169         gint end_gain_touch (GdkEventButton*);
170
171         void set_mix_group_meter_point (ARDOUR::Route&, ARDOUR::MeterPoint);
172         void set_meter_point (ARDOUR::Route&, ARDOUR::MeterPoint);
173         gint meter_release (GdkEventButton*);
174         gint meter_press (GdkEventButton*);
175         bool wait_for_release;
176         ARDOUR::MeterPoint old_meter_point;
177
178         void parameter_changed (const char*);
179
180         void reset_peak_display ();
181         void reset_group_peak_display (ARDOUR::RouteGroup*);
182
183         static sigc::signal<void> ResetAllPeakDisplays;
184         static sigc::signal<void,ARDOUR::RouteGroup*> ResetGroupPeakDisplays;
185
186         static Glib::RefPtr<Gdk::Pixbuf> slider;
187         static Glib::RefPtr<Gdk::Pixbuf> rail;
188         static int setup_slider_pix ();
189 };
190
191 #endif /* __ardour_gtk_gain_meter_h__ */
192