2f0924e9091cc913f11230a9379518c529fdfa82
[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 RouteGroup;
39         class Session;
40 }
41 namespace Gtk {
42         class Window;
43         class Style;
44 }
45
46 class MeterStrip : public Gtk::VBox, public AxisView, public RouteUI
47 {
48   public:
49         MeterStrip (ARDOUR::Session*, boost::shared_ptr<ARDOUR::Route>);
50         MeterStrip (int, ARDOUR::MeterType);
51         ~MeterStrip ();
52
53         std::string name() const;
54         Gdk::Color color () const;
55
56         void set_session (ARDOUR::Session* s);
57         void fast_update ();
58         boost::shared_ptr<ARDOUR::Route> route() { return _route; }
59
60         static PBD::Signal1<void,MeterStrip*> CatchDeletion;
61         static PBD::Signal0<void> MetricChanged;
62         static PBD::Signal0<void> ConfigurationChanged;
63
64         void reset_peak_display ();
65         void reset_route_peak_display (ARDOUR::Route*);
66         void reset_group_peak_display (ARDOUR::RouteGroup*);
67
68         void set_meter_type_multi (int, ARDOUR::RouteGroup*, ARDOUR::MeterType);
69
70         void set_metric_mode (int, ARDOUR::MeterType);
71         int  get_metric_mode() { return _metricmode; }
72         void set_tick_bar (int);
73         int  get_tick_bar() { return _tick_bar; }
74         bool has_midi() { return _has_midi; }
75         bool is_metric_display() { return _strip_type == 0; }
76         ARDOUR::MeterType meter_type();
77
78   protected:
79         boost::shared_ptr<ARDOUR::Route> _route;
80         PBD::ScopedConnectionList meter_route_connections;
81         PBD::ScopedConnectionList level_meter_connection;
82         void self_delete ();
83
84         gint meter_metrics_expose (GdkEventExpose *);
85         gint meter_ticks1_expose (GdkEventExpose *);
86         gint meter_ticks2_expose (GdkEventExpose *);
87
88         void on_theme_changed ();
89
90         void on_size_allocate (Gtk::Allocation&);
91         void on_size_request (Gtk::Requisition*);
92
93         /* route UI */
94         void blink_rec_display (bool onoff);
95         std::string state_id() const;
96         void set_button_names ();
97
98   private:
99         Gtk::VBox mtr_vbox;
100         Gtk::VBox nfo_vbox;
101         Gtk::EventBox mtr_container;
102         Gtk::HSeparator mtr_hsep;
103         Gtk::HBox meterbox;
104         Gtk::HBox spacer;
105         Gtk::HBox namebx;
106         Gtk::VBox namenumberbx;
107         ArdourButton name_label;
108         ArdourButton number_label;
109         Gtk::DrawingArea meter_metric_area;
110         Gtk::DrawingArea meter_ticks1_area;
111         Gtk::DrawingArea meter_ticks2_area;
112
113         Gtk::HBox mutebox;
114         Gtk::HBox solobox;
115         Gtk::HBox recbox;
116         Gtk::HBox mon_in_box;
117         Gtk::HBox mon_disk_box;
118
119         Gtk::Alignment meter_align;
120         Gtk::Alignment peak_align;
121         Gtk::HBox peakbx;
122         Gtk::VBox btnbox;
123         ArdourButton peak_display;
124
125         std::vector<ARDOUR::DataType> _types;
126         ARDOUR::MeterType metric_type;
127
128         float max_peak;
129         bool _has_midi;
130         int _tick_bar;
131         int _strip_type;
132         int _metricmode;
133
134         LevelMeterHBox *level_meter;
135
136         void route_property_changed (const PBD::PropertyChange&);
137         void meter_configuration_changed (ARDOUR::ChanCount);
138         void meter_type_changed (ARDOUR::MeterType);
139         void update_background (ARDOUR::MeterType);
140
141         bool peak_button_release (GdkEventButton*);
142
143         void parameter_changed (std::string const & p);
144         void redraw_metrics ();
145         void update_button_box ();
146         void update_name_box ();
147         void name_changed ();
148
149         void route_color_changed ();
150
151         bool _suspend_menu_callbacks;
152         bool level_meter_button_press (GdkEventButton* ev);
153         void popup_level_meter_menu (GdkEventButton* ev);
154         void add_level_meter_type_item (Gtk::Menu_Helpers::MenuList&, Gtk::RadioMenuItem::Group&, std::string const &, ARDOUR::MeterType);
155
156         bool name_label_button_release (GdkEventButton* ev);
157         void popup_name_label_menu (GdkEventButton* ev);
158         void add_label_height_item (Gtk::Menu_Helpers::MenuList&, Gtk::RadioMenuItem::Group&, std::string const &, uint32_t);
159
160         void set_meter_type (ARDOUR::MeterType mode);
161         void set_label_height (uint32_t);
162 };
163
164 #endif /* __ardour_mixer_strip__ */