push2: color palette management, and responding to 2 track properties in TrackMix...
[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 "layout.h"
23
24 namespace ARDOUR {
25         class Stripable;
26 }
27
28 namespace ArdourSurface {
29
30 class TrackMixLayout : public Push2Layout
31 {
32    public:
33         TrackMixLayout (Push2& p, ARDOUR::Session&, Cairo::RefPtr<Cairo::Context>);
34         ~TrackMixLayout ();
35
36         void set_stripable (boost::shared_ptr<ARDOUR::Stripable>);
37
38         bool redraw (Cairo::RefPtr<Cairo::Context>) const;
39
40         void button_upper (uint32_t n);
41         void button_lower (uint32_t n);
42
43         void strip_vpot (int, int);
44         void strip_vpot_touch (int, bool);
45
46    private:
47         boost::shared_ptr<ARDOUR::Stripable> stripable;
48         PBD::ScopedConnectionList stripable_connections;
49         bool _dirty;
50
51         Glib::RefPtr<Pango::Layout> name_layout;
52         Glib::RefPtr<Pango::Layout> upper_layout[8];
53         Glib::RefPtr<Pango::Layout> lower_layout[8];
54
55         void stripable_property_change (PBD::PropertyChange const& what_changed);
56
57         void drop_stripable ();
58         void name_changed ();
59         void color_changed ();
60 };
61
62 } /* namespace */
63
64 #endif /* __ardour_push2_track_mix_layout_h__ */