some more "std::string" to "const char *" conversations.
[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
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
34
35 #include <ardour/types.h>
36
37 #include <gtkmm2ext/slider_controller.h>
38 #include <gtkmm2ext/click_box.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         class Pix;
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         gint meter_metrics_expose (GdkEventExpose *);
100
101         static void _gain_printer (char buf[32], Gtk::Adjustment&, void *);
102         void gain_printer (char buf[32], Gtk::Adjustment&);
103         
104         struct MeterInfo {
105             Gtkmm2ext::FastMeter *meter;
106             gint16          width;   
107             bool            packed;
108             
109             MeterInfo() { 
110                     meter = 0;
111                     width = 0;
112                     packed = false;
113             }
114         };
115
116         static const guint16 regular_meter_width = 5;
117         static const guint16 thin_meter_width = 2;
118         vector<MeterInfo>    meters;
119         float       max_peak;
120         
121
122         Gtk::HBox   hbox;
123         Gtk::HBox   meter_packer;
124
125         void gain_adjusted ();
126         void gain_changed (void *);
127         
128         void meter_point_clicked ();
129         void meter_changed (void *);
130         void gain_unit_changed ();
131         
132         void hide_all_meters ();
133
134         gint meter_button_press (GdkEventButton*, uint32_t);
135         gint meter_button_release (GdkEventButton*, uint32_t);
136
137         gint peak_button_release (GdkEventButton*);
138         
139         Gtk::Menu* meter_menu;
140         void popup_meter_menu (GdkEventButton*);
141
142         gint start_gain_touch (GdkEventButton*);
143         gint end_gain_touch (GdkEventButton*);
144
145         void set_mix_group_meter_point (ARDOUR::Route&, ARDOUR::MeterPoint);
146         void set_meter_point (ARDOUR::Route&, ARDOUR::MeterPoint);
147         gint meter_release (GdkEventButton*);
148         gint meter_press (GdkEventButton*);
149         bool wait_for_release;
150         ARDOUR::MeterPoint old_meter_point;
151
152         void meter_hold_changed();
153
154         void reset_peak_display ();
155         void reset_group_peak_display (ARDOUR::RouteGroup*);
156
157         static sigc::signal<void> ResetAllPeakDisplays;
158         static sigc::signal<void,ARDOUR::RouteGroup*> ResetGroupPeakDisplays;
159
160         static Gtkmm2ext::Pix* slider_pix;
161         static int setup_slider_pix ();
162 };
163
164 #endif /* __ardour_gtk_gain_meter_h__ */
165