push2: parameterize and centralize colors
[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 }
29
30 namespace ArdourSurface {
31
32 class Push2Knob;
33
34 class TrackMixLayout : public Push2Layout
35 {
36    public:
37         TrackMixLayout (Push2& p, ARDOUR::Session&, Cairo::RefPtr<Cairo::Context>);
38         ~TrackMixLayout ();
39
40         void set_stripable (boost::shared_ptr<ARDOUR::Stripable>);
41
42         bool redraw (Cairo::RefPtr<Cairo::Context>) const;
43
44         void button_upper (uint32_t n);
45         void button_lower (uint32_t n);
46
47         void strip_vpot (int, int);
48         void strip_vpot_touch (int, bool);
49
50    private:
51         boost::shared_ptr<ARDOUR::Stripable> stripable;
52         PBD::ScopedConnectionList stripable_connections;
53         bool _dirty;
54
55         Glib::RefPtr<Pango::Layout> name_layout;
56         Glib::RefPtr<Pango::Layout> upper_layout[8];
57         Glib::RefPtr<Pango::Layout> lower_layout[8];
58
59         std::vector<Push2Knob*> knobs;
60
61         void stripable_property_change (PBD::PropertyChange const& what_changed);
62
63         void drop_stripable ();
64         void name_changed ();
65         void color_changed ();
66 };
67
68 } /* namespace */
69
70 #endif /* __ardour_push2_track_mix_layout_h__ */