add name editing for transport masters
[ardour.git] / gtk2_ardour / transport_masters_dialog.h
1 /*
2     Copyright (C) 2018 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_gtk_transport_masters_dialog_h__
21 #define __ardour_gtk_transport_masters_dialog_h__
22
23 #include <vector>
24 #include <string>
25
26 #include <gtkmm/button.h>
27 #include <gtkmm/eventbox.h>
28 #include <gtkmm/radiobutton.h>
29 #include <gtkmm/label.h>
30 #include <gtkmm/table.h>
31 #include <gtkmm/treestore.h>
32
33 #include "ardour_window.h"
34
35 namespace Gtk {
36         class Menu;
37 }
38
39 namespace ARDOUR {
40         class TransportMaster;
41 }
42
43 class FloatingTextEntry;
44
45 class TransportMastersWidget : public Gtk::VBox, public ARDOUR::SessionHandlePtr
46 {
47   public:
48         TransportMastersWidget ();
49         ~TransportMastersWidget ();
50
51         void update (ARDOUR::samplepos_t);
52
53   protected:
54         void on_map ();
55         void on_unmap ();
56
57   private:
58
59         struct Row : sigc::trackable, PBD::ScopedConnectionList {
60                 Gtk::EventBox label_box;
61                 Gtk::Label label;
62                 Gtk::Label type;
63                 Gtk::Label format;
64                 Gtk::Label current;
65                 Gtk::Label last;
66                 Gtk::Label timestamp;
67                 Gtk::Label delta;
68                 Gtk::CheckButton collect_button;
69                 Gtk::RadioButton use_button;
70                 Gtk::ComboBoxText port_combo;
71                 Gtk::CheckButton sclock_synced_button;
72                 Gtk::CheckButton fr2997_button;
73                 Gtk::Button request_options;
74                 Gtk::Menu* request_option_menu;
75                 FloatingTextEntry* name_editor;
76
77                 void build_request_options();
78
79                 boost::shared_ptr<ARDOUR::TransportMaster> tm;
80
81                 void update (ARDOUR::Session*, ARDOUR::samplepos_t);
82
83                 Row ();
84
85                 struct PortColumns : public Gtk::TreeModel::ColumnRecord {
86                         PortColumns() {
87                                 add (short_name);
88                                 add (full_name);
89                         }
90                         Gtk::TreeModelColumn<std::string> short_name;
91                         Gtk::TreeModelColumn<std::string> full_name;
92                 };
93
94                 PortColumns port_columns;
95
96                 void populate_port_combo ();
97                 Glib::RefPtr<Gtk::ListStore> build_port_list (std::vector<std::string> const & ports);
98
99                 void use_button_toggled ();
100                 void collect_button_toggled ();
101                 void sync_button_toggled ();
102                 void fr2997_button_toggled ();
103                 void port_choice_changed ();
104                 void connection_handler ();
105                 bool request_option_press (GdkEventButton*);
106                 void prop_change (PBD::PropertyChange);
107
108                 bool name_press (GdkEventButton*);
109                 void name_edited (std::string, int);
110
111                 PBD::ScopedConnection property_change_connection;
112                 bool ignore_active_change;
113         };
114
115         std::vector<Row*> rows;
116
117         Gtk::RadioButtonGroup use_button_group;
118         Gtk::Table table;
119         Gtk::Label col_title[13];
120
121         sigc::connection update_connection;
122         PBD::ScopedConnection current_connection;
123
124         void rebuild ();
125         void current_changed (boost::shared_ptr<ARDOUR::TransportMaster> old_master, boost::shared_ptr<ARDOUR::TransportMaster> new_master);
126
127 };
128
129 class TransportMastersWindow : public ArdourWindow
130 {
131   public:
132         TransportMastersWindow ();
133
134         void set_session (ARDOUR::Session*);
135
136   protected:
137         void on_realize ();
138
139   private:
140         TransportMastersWidget w;
141 };
142
143
144 #endif /* __ardour_gtk_transport_masters_dialog_h__ */