push2: fix up issues with object lifetimes and signals during shutdown
[ardour.git] / libs / surfaces / push2 / layout.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_layout_h__
20 #define __ardour_push2_layout_h__
21
22 #include <stdint.h>
23
24 #include <sigc++/trackable.h>
25
26 #include <cairomm/refptr.h>
27
28 namespace ARDOUR {
29         class Session;
30 }
31
32 namespace Cairo {
33         class Context;
34 }
35
36 namespace ArdourSurface {
37
38 class Push2;
39
40 class Push2Layout : public sigc::trackable
41 {
42   public:
43         Push2Layout (Push2& p, ARDOUR::Session& s);
44         virtual ~Push2Layout ();
45
46         bool mapped() const;
47
48         virtual bool redraw (Cairo::RefPtr<Cairo::Context>, bool force) const = 0;
49         virtual void on_show () {}
50         virtual void on_hide () {}
51
52         virtual void button_upper (uint32_t n) {}
53         virtual void button_lower (uint32_t n) {}
54         virtual void button_up ()  {}
55         virtual void button_down ()  {}
56         virtual void button_right ()  {}
57         virtual void button_left ()  {}
58         virtual void button_select_press () {}
59         virtual void button_select_release () {}
60         virtual void button_solo () {}
61         virtual void button_mute () {}
62
63         virtual void strip_vpot (int, int) = 0;
64         virtual void strip_vpot_touch (int, bool) = 0;
65
66   protected:
67         Push2& p2;
68         ARDOUR::Session& session;
69 };
70
71 } /* namespace */
72
73 #endif /* __ardour_push2_layout_h__ */