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