first compiling and theoretically correct version of Push2 canvas display.
[ardour.git] / libs / surfaces / push2 / menu.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_menu_h__
20 #define __ardour_push2_menu_h__
21
22 namespace Cairo {
23         class Context;
24         class Region;
25 }
26
27 #include <pangomm/layout.h>
28
29 #include "pbd/signals.h"
30
31 #include "canvas/container.h"
32
33 namespace ArdourCanvas {
34         class Text;
35         class Rectangle;
36 }
37
38 namespace ArdourSurface {
39
40 class Push2Menu : public ArdourCanvas::Container
41 {
42    public:
43         Push2Menu (ArdourCanvas::Item* parent);
44
45         void render (ArdourCanvas::Rect const& area, Cairo::RefPtr<Cairo::Context> context) const;
46
47         void fill_column (int col, std::vector<std::string>);
48         void set_active (int col, int index);
49         void step_active (int col, int dir);
50         int get_active (int col);
51
52         PBD::Signal0<void> ActiveChanged;
53         PBD::Signal0<void> Selected;
54
55    private:
56         struct Column {
57                 std::vector<std::string> text;
58                 ArdourCanvas::Rectangle* active_bg;
59                 ArdourCanvas::Text* lines;
60                 int top;
61                 int active;
62         };
63
64         Column  columns[8];
65
66         void scroll (int col, int dir);
67         void set_text (int col, int top);
68
69         int nrows;
70         mutable double baseline;
71 };
72
73 } // namespace
74
75 #endif /* __ardour_push2_menu_h__ */