Skeleton for NI Maschine2 Surface
[ardour.git] / libs / surfaces / maschine2 / layout.h
1 /*
2  * Copyright (C) 2016 Paul Davis
3  * Copyright (C) 2016 Robin Gareus <robin@gareus.org>
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, or (at your option)
8  * 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 Foundation,
17  * Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
18  */
19
20 #ifndef _ardour_maschine2_layout_h_
21 #define _ardour_maschine2_layout_h_
22
23 #include <sigc++/trackable.h>
24 #include <cairomm/refptr.h>
25 #include "canvas/container.h"
26
27 namespace ARDOUR {
28         class Session;
29 }
30
31 namespace ArdourSurface {
32
33 class Maschine2;
34
35 class Maschine2Layout : public sigc::trackable, public ArdourCanvas::Container
36 {
37   public:
38         Maschine2Layout (Maschine2& m2, ARDOUR::Session& s, std::string const & name);
39         virtual ~Maschine2Layout ();
40
41         std::string name() const { return _name; }
42         int display_width () const;
43         int display_height () const;
44
45         void compute_bounding_box () const;
46
47   protected:
48         Maschine2& _m2;
49         ARDOUR::Session& _session;
50         std::string _name;
51 };
52
53 } /* namespace */
54
55 #endif /* _ardour_maschine2_layout_h_ */