show last received and when for timecode timestamps in transport masters widget
[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                 samplepos_t save_when;
77
78                 void build_request_options();
79
80                 boost::shared_ptr<ARDOUR::TransportMaster> tm;
81
82                 void update (ARDOUR::Session*, ARDOUR::samplepos_t);
83
84                 Row ();
85
86                 struct PortColumns : public Gtk::TreeModel::ColumnRecord {
87                         PortColumns() {
88                                 add (short_name);
89                                 add (full_name);
90                         }
91                         Gtk::TreeModelColumn<std::string> short_name;
92                         Gtk::TreeModelColumn<std::string> full_name;
93                 };
94
95                 PortColumns port_columns;
96
97                 void populate_port_combo ();
98                 Glib::RefPtr<Gtk::ListStore> build_port_list (std::vector<std::string> const & ports);
99
100                 void use_button_toggled ();
101                 void collect_button_toggled ();
102                 void sync_button_toggled ();
103                 void fr2997_button_toggled ();
104                 void port_choice_changed ();
105                 void connection_handler ();
106                 bool request_option_press (GdkEventButton*);
107                 void prop_change (PBD::PropertyChange);
108
109                 bool name_press (GdkEventButton*);
110                 void name_edited (std::string, int);
111
112                 PBD::ScopedConnection property_change_connection;
113                 bool ignore_active_change;
114         };
115
116         std::vector<Row*> rows;
117
118         Gtk::RadioButtonGroup use_button_group;
119         Gtk::Table table;
120         Gtk::Label col_title[13];
121
122         sigc::connection update_connection;
123         PBD::ScopedConnection current_connection;
124
125         void rebuild ();
126         void current_changed (boost::shared_ptr<ARDOUR::TransportMaster> old_master, boost::shared_ptr<ARDOUR::TransportMaster> new_master);
127
128 };
129
130 class TransportMastersWindow : public ArdourWindow
131 {
132   public:
133         TransportMastersWindow ();
134
135         void set_session (ARDOUR::Session*);
136
137   protected:
138         void on_realize ();
139
140   private:
141         TransportMastersWidget w;
142 };
143
144
145 #endif /* __ardour_gtk_transport_masters_dialog_h__ */