ptformat: Update the lib to 9d0b64f (upstream ptformat)
[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 "ardour/mode.h"
41
42 #include "push2.h"
43
44 namespace ArdourSurface {
45
46 class P2GUI : public Gtk::VBox
47 {
48 public:
49         P2GUI (Push2&);
50         ~P2GUI ();
51
52 private:
53         Push2& p2;
54         PBD::ScopedConnectionList p2_connections;
55         Gtk::HBox hpacker;
56         Gtk::Table table;
57         Gtk::Table action_table;
58         Gtk::ComboBox input_combo;
59         Gtk::ComboBox output_combo;
60         Gtk::Image    image;
61
62         void update_port_combos ();
63         PBD::ScopedConnection connection_change_connection;
64         void connection_handler ();
65         PBD::ScopedConnection port_reg_connection;
66
67         struct MidiPortColumns : public Gtk::TreeModel::ColumnRecord {
68                 MidiPortColumns() {
69                         add (short_name);
70                         add (full_name);
71                 }
72                 Gtk::TreeModelColumn<std::string> short_name;
73                 Gtk::TreeModelColumn<std::string> full_name;
74         };
75
76         MidiPortColumns midi_port_columns;
77         bool ignore_active_change;
78
79         Glib::RefPtr<Gtk::ListStore> build_midi_port_list (std::vector<std::string> const & ports, bool for_input);
80         void active_port_changed (Gtk::ComboBox*,bool for_input);
81
82         struct ActionColumns : public Gtk::TreeModel::ColumnRecord {
83                 ActionColumns() {
84                         add (name);
85                         add (path);
86                 }
87                 Gtk::TreeModelColumn<std::string> name;
88                 Gtk::TreeModelColumn<std::string> path;
89         };
90
91         ActionColumns action_columns;
92         Glib::RefPtr<Gtk::TreeStore> available_action_model;
93         std::map<std::string,std::string> action_map; // map from action names to paths
94
95         struct PressureModeColumns : public Gtk::TreeModel::ColumnRecord {
96                 PressureModeColumns() {
97                         add (mode);
98                         add (name);
99                 }
100                 Gtk::TreeModelColumn<Push2::PressureMode>  mode;
101                 Gtk::TreeModelColumn<std::string> name;
102         };
103         PressureModeColumns pressure_mode_columns;
104         Glib::RefPtr<Gtk::ListStore> build_pressure_mode_columns ();
105         Gtk::ComboBox pressure_mode_selector;
106         Gtk::Label pressure_mode_label;
107
108         void reprogram_pressure_mode ();
109 };
110
111 }
112
113 #endif /* __ardour_push2_gui_h__ */