push2: track mix layout somewhat working
[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 #include <cairomm/context.h>
23 #include <cairomm/surface.h>
24 #include <pangomm/layout.h>
25
26 #include "pbd/signals.h"
27
28 namespace ArdourSurface {
29
30 class Push2Menu {
31    public:
32         Push2Menu (Cairo::RefPtr<Cairo::Context>);
33
34         void redraw (Cairo::RefPtr<Cairo::Context>, bool force) const;
35         bool dirty () const { return _dirty; }
36
37         void fill_column (int col, std::vector<std::string>);
38         void set_active (int col, int index);
39         void step_active (int col, int dir);
40         int get_active (int col);
41
42         PBD::Signal0<void> ActiveChanged;
43         PBD::Signal0<void> Selected;
44
45    private:
46         struct Column {
47                 std::vector<std::string> text;
48                 Glib::RefPtr<Pango::Layout> layout;
49                 int top;
50                 int active;
51         };
52
53         Column  columns[8];
54
55         void scroll (int col, int dir);
56         void set_text (int col, int top);
57
58         int nrows;
59         double baseline;
60
61         mutable bool _dirty;
62 };
63
64 } // namespace
65
66 #endif /* __ardour_push2_menu_h__ */