meterbridge: if track-name starts with number, display only number
[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);
51         ~MeterStrip ();
52
53         void fast_update ();
54         boost::shared_ptr<ARDOUR::Route> route() { return _route; }
55
56         static PBD::Signal1<void,MeterStrip*> CatchDeletion;
57         static PBD::Signal0<void> MetricChanged;
58
59         void reset_peak_display ();
60         void reset_route_peak_display (ARDOUR::Route*);
61         void reset_group_peak_display (ARDOUR::RouteGroup*);
62
63         void set_meter_type_multi (int, ARDOUR::RouteGroup*, ARDOUR::MeterType);
64
65         void set_metric_mode (int);
66         void set_pos(int);
67         bool has_midi() { return _has_midi; }
68
69   protected:
70         boost::shared_ptr<ARDOUR::Route> _route;
71         PBD::ScopedConnectionList route_connections;
72         PBD::ScopedConnectionList level_meter_connection;
73         void self_delete ();
74
75         gint meter_metrics_expose (GdkEventExpose *);
76         gint meter_ticks1_expose (GdkEventExpose *);
77         gint meter_ticks2_expose (GdkEventExpose *);
78
79         void on_theme_changed ();
80
81         void on_size_allocate (Gtk::Allocation&);
82         void on_size_request (Gtk::Requisition*);
83
84         /* route UI */
85         void update_rec_display ();
86         std::string state_id() const;
87         void set_button_names ();
88
89   private:
90         Gtk::HBox meterbox;
91         Gtk::HBox namebx;
92         ArdourButton name_label;
93         Gtk::Label number_label;
94         Gtk::DrawingArea meter_metric_area;
95         Gtk::DrawingArea meter_ticks1_area;
96         Gtk::DrawingArea meter_ticks2_area;
97
98         Gtk::Alignment meter_align;
99         Gtk::Alignment peak_align;
100         Gtk::HBox peakbx;
101         Gtk::HBox btnbox;
102         ArdourButton peak_display;
103
104         std::vector<ARDOUR::DataType> _types;
105
106         float max_peak;
107         bool _has_midi;
108         int _strip_type;
109
110         LevelMeter   *level_meter;
111
112         PBD::ScopedConnection _config_connection;
113         void strip_property_changed (const PBD::PropertyChange&);
114         void meter_configuration_changed (ARDOUR::ChanCount);
115         void meter_type_changed (ARDOUR::MeterType);
116
117         static int max_pattern_metric_size; // == FastMeter::max_pattern_metric_size
118
119         bool peak_button_release (GdkEventButton*);
120
121         void parameter_changed (std::string const & p);
122         void redraw_metrics ();
123
124         bool _suspend_menu_callbacks;
125         bool level_meter_button_press (GdkEventButton* ev);
126         void popup_level_meter_menu (GdkEventButton* ev);
127         void add_level_meter_item (Gtk::Menu_Helpers::MenuList& items, Gtk::RadioMenuItem::Group& group, std::string const & name, ARDOUR::MeterType mode);
128         void set_meter_type (ARDOUR::MeterType mode);
129 };
130
131 #endif /* __ardour_mixer_strip__ */