MacOS [sic] required changes for Rect in Push 2 code
[ardour.git] / libs / surfaces / push2 / track_mix.h
1 /*
2     Copyright (C) 2016 Paul Davis
3
4     This program is free software; you can redistribute it and/or modify
5     it under the terms of the GNU General Public License as published by
6     the Free Software Foundation; either version 2 of the License, or
7     (at your option) any later version.
8
9     This program is distributed in the hope that it will be useful,
10     but WITHOUT ANY WARRANTY; without even the implied warranty of
11     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12     GNU General Public License for more details.
13
14     You should have received a copy of the GNU General Public License
15     along with this program; if not, write to the Free Software
16     Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
17 */
18
19 #ifndef __ardour_push2_track_mix_layout_h__
20 #define __ardour_push2_track_mix_layout_h__
21
22 #include <vector>
23
24 #include "layout.h"
25
26 namespace ARDOUR {
27         class Stripable;
28         class AutomationControl;
29 }
30
31 namespace ArdourCanvas {
32         class Rectangle;
33         class Text;
34         class Line;
35         class VBox;
36         class Rect;
37 }
38
39 namespace ArdourSurface {
40
41 class Push2Knob;
42 class LevelMeter;
43
44 class TrackMixLayout : public Push2Layout
45 {
46    public:
47         TrackMixLayout (Push2& p, ARDOUR::Session&, std::string const &);
48         ~TrackMixLayout ();
49
50         void set_stripable (boost::shared_ptr<ARDOUR::Stripable>);
51
52         void render (ArdourCanvas::Rect const &, Cairo::RefPtr<Cairo::Context>) const;
53
54         void show ();
55         void hide ();
56         void button_upper (uint32_t n);
57         void button_lower (uint32_t n);
58         void button_left ();
59         void button_right ();
60
61         void strip_vpot (int, int);
62         void strip_vpot_touch (int, bool);
63
64         void update_meters ();
65         void update_clocks ();
66
67         boost::shared_ptr<ARDOUR::Stripable> current_stripable() const { return stripable; }
68
69    private:
70         boost::shared_ptr<ARDOUR::Stripable> stripable;
71         PBD::ScopedConnectionList stripable_connections;
72
73         ArdourCanvas::Rectangle* bg;
74         ArdourCanvas::Line* upper_line;
75         std::vector<ArdourCanvas::Text*> upper_text;
76         std::vector<ArdourCanvas::Text*> lower_text;
77         ArdourCanvas::Text* name_text;
78         ArdourCanvas::Text* bbt_text;
79         ArdourCanvas::Text* minsec_text;
80         uint8_t selection_color;
81
82         Push2Knob* knobs[8];
83         LevelMeter* meter;
84
85         void stripable_property_change (PBD::PropertyChange const& what_changed);
86         void simple_control_change (boost::shared_ptr<ARDOUR::AutomationControl> ac, Push2::ButtonID bid);
87
88         PBD::ScopedConnection selection_connection;
89         void selection_changed ();
90         void show_state ();
91
92         void drop_stripable ();
93         void name_changed ();
94         void color_changed ();
95
96         void solo_mute_change ();
97         void rec_enable_change ();
98         void solo_iso_change ();
99         void solo_safe_change ();
100         void monitoring_change ();
101 };
102
103 } /* namespace */
104
105 #endif /* __ardour_push2_track_mix_layout_h__ */