pixbufs instead of pixmaps; function-scope local fd's for reading from a FileSource
[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
36 #include <ardour/types.h>
37
38 #include <gtkmm2ext/slider_controller.h>
39 #include <gtkmm2ext/click_box.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 (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         ARDOUR::IO& _io;
78         ARDOUR::Session& _session;
79
80         bool ignore_toggle;
81
82         Gtkmm2ext::VSliderController *gain_slider;
83         Gtk::Adjustment              gain_adjustment;
84         Gtk::Frame                   gain_display_frame;
85         Gtkmm2ext::ClickBox           gain_display;
86         Gtk::Frame                   peak_display_frame;
87         Gtk::EventBox                peak_display;
88         Gtk::Label                   peak_display_label;
89         Gtk::Button                  gain_unit_button;
90         Gtk::Label                   gain_unit_label;
91         Gtk::HBox                    gain_display_box;
92         Gtk::HBox                    fader_box;
93         Gtk::DrawingArea             meter_metric_area;
94         Gtk::Button                  meter_point_button;
95         Gtk::Label                   meter_point_label;
96         Gtk::Table                   top_table;
97         Width                       _width;
98
99         static std::map<std::string,Glib::RefPtr<Gdk::Pixmap> > metric_pixmaps;
100         static Glib::RefPtr<Gdk::Pixmap> render_metrics (Gtk::Widget&);
101
102         gint meter_metrics_expose (GdkEventExpose *);
103
104         static void _gain_printer (char buf[32], Gtk::Adjustment&, void *);
105         void gain_printer (char buf[32], Gtk::Adjustment&);
106         
107         struct MeterInfo {
108             Gtkmm2ext::FastMeter *meter;
109             gint16          width;   
110             bool            packed;
111             
112             MeterInfo() { 
113                     meter = 0;
114                     width = 0;
115                     packed = false;
116             }
117         };
118
119         static const guint16 regular_meter_width = 5;
120         static const guint16 thin_meter_width = 2;
121         vector<MeterInfo>    meters;
122         float       max_peak;
123         
124
125         Gtk::HBox   hbox;
126         Gtk::HBox   meter_packer;
127
128         void gain_adjusted ();
129         void gain_changed (void *);
130         
131         void meter_point_clicked ();
132         void meter_changed (void *);
133         void gain_unit_changed ();
134         
135         void hide_all_meters ();
136
137         gint meter_button_press (GdkEventButton*, uint32_t);
138         gint meter_button_release (GdkEventButton*, uint32_t);
139
140         gint peak_button_release (GdkEventButton*);
141         
142         Gtk::Menu* meter_menu;
143         void popup_meter_menu (GdkEventButton*);
144
145         gint start_gain_touch (GdkEventButton*);
146         gint end_gain_touch (GdkEventButton*);
147
148         void set_mix_group_meter_point (ARDOUR::Route&, ARDOUR::MeterPoint);
149         void set_meter_point (ARDOUR::Route&, ARDOUR::MeterPoint);
150         gint meter_release (GdkEventButton*);
151         gint meter_press (GdkEventButton*);
152         bool wait_for_release;
153         ARDOUR::MeterPoint old_meter_point;
154
155         void meter_hold_changed();
156
157         void reset_peak_display ();
158         void reset_group_peak_display (ARDOUR::RouteGroup*);
159
160         static sigc::signal<void> ResetAllPeakDisplays;
161         static sigc::signal<void,ARDOUR::RouteGroup*> ResetGroupPeakDisplays;
162
163         static Glib::RefPtr<Gdk::Pixbuf> slider;
164         static Glib::RefPtr<Gdk::Pixbuf> rail;
165         static int setup_slider_pix ();
166 };
167
168 #endif /* __ardour_gtk_gain_meter_h__ */
169