no longer delete and recreate MonitorSection when it is removed/added to a Session
[ardour.git] / gtk2_ardour / level_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_track_meter_h__
21 #define __ardour_gtk_track_meter_h__
22
23 #include <vector>
24
25 #include <gtkmm/box.h>
26 #include <gtkmm/adjustment.h>
27 #include <gtkmm/frame.h>
28 #include <gtkmm/eventbox.h>
29 #include <gtkmm/button.h>
30 #include <gtkmm/table.h>
31 #include <gtkmm/drawingarea.h>
32
33 #include "ardour/types.h"
34 #include "ardour/chan_count.h"
35 #include "ardour/session_handle.h"
36
37 #include "widgets/fastmeter.h"
38 #include "widgets/focus_entry.h"
39 #include "widgets/slider_controller.h"
40
41 #include "enums.h"
42
43 namespace ARDOUR {
44         class Session;
45         class PeakMeter;
46 }
47 namespace Gtk {
48         class Menu;
49 }
50
51 class LevelMeterBase : public ARDOUR::SessionHandlePtr, virtual public sigc::trackable
52 {
53 public:
54         LevelMeterBase (ARDOUR::Session*, PBD::EventLoop::InvalidationRecord* ir,
55                         ArdourWidgets::FastMeter::Orientation o = ArdourWidgets::FastMeter::Vertical);
56         virtual ~LevelMeterBase ();
57
58         virtual void set_meter (ARDOUR::PeakMeter* meter);
59
60         void update_gain_sensitive ();
61
62         float update_meters ();
63         void update_meters_falloff ();
64         void clear_meters (bool reset_highlight = true);
65         void hide_meters ();
66         void setup_meters (int len=0, int width=3, int thin=2);
67         void set_max_audio_meter_count (uint32_t cnt = 0);
68
69         void set_meter_type (ARDOUR::MeterType);
70         ARDOUR::MeterType meter_type () { return _meter_type; }
71
72         /** Emitted in the GUI thread when a button is pressed over the meter */
73         PBD::Signal1<bool, GdkEventButton *> ButtonPress;
74         PBD::Signal1<bool, GdkEventButton *> ButtonRelease;
75         PBD::Signal1<void, ARDOUR::MeterType> MeterTypeChanged;
76
77 protected:
78         virtual void mtr_pack(Gtk::Widget &w) = 0;
79         virtual void mtr_remove(Gtk::Widget &w) = 0;
80
81 private:
82         PBD::EventLoop::InvalidationRecord* parent_invalidator;
83         ARDOUR::PeakMeter* _meter;
84         ArdourWidgets::FastMeter::Orientation _meter_orientation;
85
86         Width _width;
87
88         struct MeterInfo {
89                 ArdourWidgets::FastMeter* meter;
90                 gint16                    width;
91                 int                       length;
92                 bool                      packed;
93                 float                     max_peak;
94
95                 MeterInfo() {
96                         meter = 0;
97                         width = 0;
98                         length = 0;
99                         packed = false;
100                         max_peak = -INFINITY;
101                 }
102         };
103
104         guint16                regular_meter_width;
105         int                    meter_length;
106         guint16                thin_meter_width;
107         std::vector<MeterInfo> meters;
108         float                  max_peak;
109         ARDOUR::MeterType      _meter_type;
110         ARDOUR::MeterType      visible_meter_type;
111         uint32_t               midi_count;
112         uint32_t               meter_count;
113         uint32_t               max_visible_meters;
114
115         PBD::ScopedConnection _configuration_connection;
116         PBD::ScopedConnection _meter_type_connection;
117         PBD::ScopedConnection _parameter_connection;
118
119         void hide_all_meters ();
120         bool meter_button_press (GdkEventButton *);
121         bool meter_button_release (GdkEventButton *);
122
123         void parameter_changed (std::string);
124         void configuration_changed (ARDOUR::ChanCount in, ARDOUR::ChanCount out);
125         void meter_type_changed (ARDOUR::MeterType);
126
127         bool color_changed;
128         void color_handler ();
129 };
130
131 class LevelMeterHBox : public LevelMeterBase, public Gtk::HBox
132 {
133 public:
134         LevelMeterHBox (ARDOUR::Session*);
135         ~LevelMeterHBox();
136
137 protected:
138         void mtr_pack(Gtk::Widget &w);
139         void mtr_remove(Gtk::Widget &w);
140 };
141
142 class LevelMeterVBox : public LevelMeterBase, public Gtk::VBox
143 {
144 public:
145         LevelMeterVBox (ARDOUR::Session*);
146         ~LevelMeterVBox();
147
148 protected:
149         void mtr_pack(Gtk::Widget &w);
150         void mtr_remove(Gtk::Widget &w);
151 };
152
153 #endif /* __ardour_gtk_track_meter_h__ */
154