implement meterbridge & meter-strip
[ardour.git] / gtk2_ardour / meter_strip.h
1 /*
2     Copyright (C) 2013 Paul Davis
3     Author: Robin Gareus
4
5     This program is free software; you can redistribute it and/or modify
6     it under the terms of the GNU General Public License as published by
7     the Free Software Foundation; either version 2 of the License, or
8     (at your option) any later version.
9
10     This program is distributed in the hope that it will be useful,
11     but WITHOUT ANY WARRANTY; without even the implied warranty of
12     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13     GNU General Public License for more details.
14
15     You should have received a copy of the GNU General Public License
16     along with this program; if not, write to the Free Software
17     Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
18 */
19
20 #ifndef __ardour_meter_strip__
21 #define __ardour_meter_strip__
22
23 #include <vector>
24
25 #include <cmath>
26
27 #include "pbd/stateful.h"
28
29 #include "ardour/types.h"
30 #include "ardour/ardour.h"
31
32 #include "level_meter.h"
33
34 namespace ARDOUR {
35         class Route;
36         class Session;
37 }
38 namespace Gtk {
39         class Window;
40         class Style;
41 }
42
43 class Meterbridge;
44
45 class MeterStrip : public Gtk::VBox
46 {
47   public:
48         MeterStrip (Meterbridge&, ARDOUR::Session*, boost::shared_ptr<ARDOUR::Route>);
49         ~MeterStrip ();
50
51         void fast_update ();
52
53         static PBD::Signal1<void,MeterStrip*> CatchDeletion;
54
55   protected:
56         boost::shared_ptr<ARDOUR::Route> _route;
57         PBD::ScopedConnectionList route_connections;
58         void self_delete ();
59
60   private:
61         Meterbridge& _meterbridge;
62         Gtk::Label *label;
63
64         LevelMeter   *level_meter;
65         void meter_changed ();
66
67         PBD::ScopedConnection _config_connection;
68         void strip_property_changed (const PBD::PropertyChange&);
69
70 };
71
72 #endif /* __ardour_mixer_strip__ */