meterbridge: remove unused interface
[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 #include "route_ui.h"
32 #include "ardour_button.h"
33
34 #include "level_meter.h"
35
36 namespace ARDOUR {
37         class Route;
38         class Session;
39 }
40 namespace Gtk {
41         class Window;
42         class Style;
43 }
44
45 class MeterStrip : public Gtk::VBox, public RouteUI
46 {
47   public:
48         MeterStrip (ARDOUR::Session*, boost::shared_ptr<ARDOUR::Route>);
49         MeterStrip (int);
50         ~MeterStrip ();
51
52         void fast_update ();
53         boost::shared_ptr<ARDOUR::Route> route() { return _route; }
54
55         static PBD::Signal1<void,MeterStrip*> CatchDeletion;
56
57   protected:
58         boost::shared_ptr<ARDOUR::Route> _route;
59         PBD::ScopedConnectionList route_connections;
60         void self_delete ();
61
62         gint meter_metrics_expose (GdkEventExpose *);
63         gint meter_ticks_expose (GdkEventExpose *, Gtk::DrawingArea *);
64         gint meter_ticks1_expose (GdkEventExpose *);
65         gint meter_ticks2_expose (GdkEventExpose *);
66
67         typedef std::map<std::string,cairo_pattern_t*> MetricPatterns;
68         static  MetricPatterns metric_patterns;
69
70         typedef std::map<std::string,cairo_pattern_t*> TickPatterns;
71         static  TickPatterns ticks_patterns;
72
73         static  cairo_pattern_t* render_metrics (Gtk::Widget &, std::vector<ARDOUR::DataType>);
74         static  cairo_pattern_t* render_ticks (Gtk::Widget &, std::vector<ARDOUR::DataType>);
75
76         void on_theme_changed ();
77
78         void on_size_allocate (Gtk::Allocation&);
79         void on_size_request (Gtk::Requisition*);
80
81         bool peak_button_release (GdkEventButton*);
82
83         /* route UI */
84         void update_rec_display ();
85         std::string state_id() const;
86         void set_button_names ();
87
88   private:
89         Gtk::HBox meterbox;
90         Gtk::Label label;
91         Gtk::DrawingArea meter_metric_area;
92         Gtk::DrawingArea meter_ticks1_area;
93         Gtk::DrawingArea meter_ticks2_area;
94
95         Gtk::Alignment meter_align;
96         Gtk::HBox peakbx;
97         Gtk::HBox btnbox;
98         ArdourButton peak_display;
99
100         std::vector<ARDOUR::DataType> _types;
101
102         float max_peak;
103         LevelMeter   *level_meter;
104         void meter_changed ();
105
106         void reset_peak_display ();
107         void reset_group_peak_display (ARDOUR::RouteGroup*);
108
109         PBD::ScopedConnection _config_connection;
110         void strip_property_changed (const PBD::PropertyChange&);
111         void meter_configuration_changed (ARDOUR::ChanCount);
112
113 };
114
115 #endif /* __ardour_mixer_strip__ */