fe501742775e5c58b096f1b721da561d68eb6b30
[ardour.git] / libs / surfaces / push2 / gui.h
1 /*
2     Copyright (C) 2015 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
20 #ifndef __ardour_push2_gui_h__
21 #define __ardour_push2_gui_h__
22
23 #include <vector>
24 #include <string>
25
26 #include <gtkmm/box.h>
27 #include <gtkmm/button.h>
28 #include <gtkmm/combobox.h>
29 #include <gtkmm/image.h>
30 #include <gtkmm/table.h>
31 #include <gtkmm/treestore.h>
32 #include <gtkmm/spinbutton.h>
33 #include <gtkmm/notebook.h>
34
35 namespace Gtk {
36         class CellRendererCombo;
37         class ListStore;
38 }
39
40 #include "push2.h"
41 #include "mode.h"
42
43 namespace ArdourSurface {
44
45 class P2GUI : public Gtk::VBox
46 {
47 public:
48         P2GUI (Push2&);
49         ~P2GUI ();
50
51 private:
52         Push2& p2;
53         PBD::ScopedConnectionList p2_connections;
54         Gtk::HBox hpacker;
55         Gtk::Table table;
56         Gtk::Table action_table;
57         Gtk::ComboBox input_combo;
58         Gtk::ComboBox output_combo;
59         Gtk::Image    image;
60
61         void update_port_combos ();
62         PBD::ScopedConnection connection_change_connection;
63         void connection_handler ();
64
65         struct MidiPortColumns : public Gtk::TreeModel::ColumnRecord {
66                 MidiPortColumns() {
67                         add (short_name);
68                         add (full_name);
69                 }
70                 Gtk::TreeModelColumn<std::string> short_name;
71                 Gtk::TreeModelColumn<std::string> full_name;
72         };
73
74         MidiPortColumns midi_port_columns;
75         bool ignore_active_change;
76
77         Glib::RefPtr<Gtk::ListStore> build_midi_port_list (std::vector<std::string> const & ports, bool for_input);
78         void active_port_changed (Gtk::ComboBox*,bool for_input);
79
80         struct ActionColumns : public Gtk::TreeModel::ColumnRecord {
81                 ActionColumns() {
82                         add (name);
83                         add (path);
84                 }
85                 Gtk::TreeModelColumn<std::string> name;
86                 Gtk::TreeModelColumn<std::string> path;
87         };
88
89         ActionColumns action_columns;
90         Glib::RefPtr<Gtk::TreeStore> available_action_model;
91         std::map<std::string,std::string> action_map; // map from action names to paths
92
93         void build_available_action_menu ();
94         bool find_action_in_model (const Gtk::TreeModel::iterator& iter, std::string const & action_path, Gtk::TreeModel::iterator* found);
95
96         struct PressureModeColumns : public Gtk::TreeModel::ColumnRecord {
97                 PressureModeColumns() {
98                         add (mode);
99                         add (name);
100                 }
101                 Gtk::TreeModelColumn<Push2::PressureMode>  mode;
102                 Gtk::TreeModelColumn<std::string> name;
103         };
104         PressureModeColumns pressure_mode_columns;
105         Glib::RefPtr<Gtk::ListStore> build_pressure_mode_columns ();
106         Gtk::ComboBox pressure_mode_selector;
107         Gtk::Label pressure_mode_label;
108
109         void reprogram_pressure_mode ();
110 };
111
112 }
113
114 #endif /* __ardour_push2_gui_h__ */