2018-09-18 18:52:20 -04:00
|
|
|
/*
|
2019-08-02 17:26:43 -04:00
|
|
|
* Copyright (C) 2018-2019 Paul Davis <paul@linuxaudiosystems.com>
|
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation; either version 2 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License along
|
|
|
|
* with this program; if not, write to the Free Software Foundation, Inc.,
|
|
|
|
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
|
|
|
|
*/
|
2018-09-18 18:52:20 -04:00
|
|
|
|
|
|
|
#ifndef __ardour_gtk_transport_masters_dialog_h__
|
|
|
|
#define __ardour_gtk_transport_masters_dialog_h__
|
|
|
|
|
|
|
|
#include <vector>
|
|
|
|
#include <string>
|
|
|
|
|
|
|
|
#include <gtkmm/button.h>
|
2018-09-26 19:11:31 -04:00
|
|
|
#include <gtkmm/eventbox.h>
|
2018-09-18 18:52:20 -04:00
|
|
|
#include <gtkmm/radiobutton.h>
|
|
|
|
#include <gtkmm/label.h>
|
|
|
|
#include <gtkmm/table.h>
|
2018-10-07 11:09:54 -04:00
|
|
|
#include <gtkmm/entry.h>
|
2018-09-18 18:52:20 -04:00
|
|
|
#include <gtkmm/treestore.h>
|
|
|
|
|
2018-09-23 12:59:18 -04:00
|
|
|
#include "ardour_window.h"
|
2018-09-18 18:52:20 -04:00
|
|
|
|
|
|
|
namespace Gtk {
|
|
|
|
class Menu;
|
|
|
|
}
|
|
|
|
|
|
|
|
namespace ARDOUR {
|
|
|
|
class TransportMaster;
|
|
|
|
}
|
|
|
|
|
2018-09-26 19:11:31 -04:00
|
|
|
class FloatingTextEntry;
|
|
|
|
|
2018-09-18 18:52:20 -04:00
|
|
|
class TransportMastersWidget : public Gtk::VBox, public ARDOUR::SessionHandlePtr
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
TransportMastersWidget ();
|
|
|
|
~TransportMastersWidget ();
|
|
|
|
|
|
|
|
void update (ARDOUR::samplepos_t);
|
2018-10-05 12:35:13 -04:00
|
|
|
void set_transport_master (boost::shared_ptr<ARDOUR::TransportMaster>);
|
2018-09-18 18:52:20 -04:00
|
|
|
|
|
|
|
protected:
|
|
|
|
void on_map ();
|
|
|
|
void on_unmap ();
|
|
|
|
|
|
|
|
private:
|
|
|
|
|
2018-10-07 11:09:54 -04:00
|
|
|
struct AddTransportMasterDialog : public ArdourDialog {
|
|
|
|
public:
|
|
|
|
AddTransportMasterDialog ();
|
|
|
|
std::string get_name () const;
|
|
|
|
ARDOUR::SyncSource get_type () const;
|
|
|
|
|
|
|
|
private:
|
|
|
|
Gtk::Label name_label;
|
|
|
|
Gtk::Label type_label;
|
|
|
|
Gtk::HBox name_hbox;
|
|
|
|
Gtk::HBox type_hbox;
|
|
|
|
Gtk::Entry name_entry;
|
|
|
|
Gtk::ComboBoxText type_combo;
|
|
|
|
};
|
|
|
|
|
2018-09-18 18:52:20 -04:00
|
|
|
struct Row : sigc::trackable, PBD::ScopedConnectionList {
|
2018-10-05 12:35:13 -04:00
|
|
|
TransportMastersWidget& parent;
|
2018-09-26 19:11:31 -04:00
|
|
|
Gtk::EventBox label_box;
|
2018-09-18 18:52:20 -04:00
|
|
|
Gtk::Label label;
|
|
|
|
Gtk::Label type;
|
|
|
|
Gtk::Label format;
|
|
|
|
Gtk::Label current;
|
2018-09-24 15:46:11 -04:00
|
|
|
Gtk::Label last;
|
2018-09-18 18:52:20 -04:00
|
|
|
Gtk::Label timestamp;
|
|
|
|
Gtk::Label delta;
|
|
|
|
Gtk::CheckButton collect_button;
|
|
|
|
Gtk::RadioButton use_button;
|
|
|
|
Gtk::ComboBoxText port_combo;
|
|
|
|
Gtk::CheckButton sclock_synced_button;
|
2018-09-23 12:59:18 -04:00
|
|
|
Gtk::CheckButton fr2997_button;
|
2018-09-18 18:52:20 -04:00
|
|
|
Gtk::Button request_options;
|
|
|
|
Gtk::Menu* request_option_menu;
|
2018-10-04 13:19:39 -04:00
|
|
|
Gtk::Button remove_button;
|
2018-09-26 19:11:31 -04:00
|
|
|
FloatingTextEntry* name_editor;
|
2018-09-27 00:09:08 -04:00
|
|
|
samplepos_t save_when;
|
2018-09-18 18:52:20 -04:00
|
|
|
|
|
|
|
void build_request_options();
|
|
|
|
|
|
|
|
boost::shared_ptr<ARDOUR::TransportMaster> tm;
|
|
|
|
|
|
|
|
void update (ARDOUR::Session*, ARDOUR::samplepos_t);
|
|
|
|
|
2018-10-05 12:35:13 -04:00
|
|
|
Row (TransportMastersWidget& parent);
|
2019-03-07 10:40:16 -05:00
|
|
|
~Row ();
|
2018-09-18 18:52:20 -04:00
|
|
|
|
|
|
|
struct PortColumns : public Gtk::TreeModel::ColumnRecord {
|
|
|
|
PortColumns() {
|
|
|
|
add (short_name);
|
|
|
|
add (full_name);
|
|
|
|
}
|
|
|
|
Gtk::TreeModelColumn<std::string> short_name;
|
|
|
|
Gtk::TreeModelColumn<std::string> full_name;
|
|
|
|
};
|
|
|
|
|
|
|
|
PortColumns port_columns;
|
|
|
|
|
|
|
|
void populate_port_combo ();
|
|
|
|
Glib::RefPtr<Gtk::ListStore> build_port_list (std::vector<std::string> const & ports);
|
|
|
|
|
|
|
|
void use_button_toggled ();
|
|
|
|
void collect_button_toggled ();
|
|
|
|
void sync_button_toggled ();
|
2018-09-23 12:59:18 -04:00
|
|
|
void fr2997_button_toggled ();
|
2018-09-18 18:52:20 -04:00
|
|
|
void port_choice_changed ();
|
|
|
|
void connection_handler ();
|
|
|
|
bool request_option_press (GdkEventButton*);
|
2018-09-23 12:59:18 -04:00
|
|
|
void prop_change (PBD::PropertyChange);
|
2018-10-04 13:19:39 -04:00
|
|
|
void remove_clicked ();
|
2018-09-18 18:52:20 -04:00
|
|
|
|
2018-09-26 19:11:31 -04:00
|
|
|
bool name_press (GdkEventButton*);
|
|
|
|
void name_edited (std::string, int);
|
|
|
|
|
2018-09-23 12:59:18 -04:00
|
|
|
PBD::ScopedConnection property_change_connection;
|
2018-09-18 18:52:20 -04:00
|
|
|
bool ignore_active_change;
|
|
|
|
};
|
|
|
|
|
|
|
|
std::vector<Row*> rows;
|
|
|
|
|
|
|
|
Gtk::Table table;
|
2018-10-04 13:19:39 -04:00
|
|
|
Gtk::Label col_title[14];
|
|
|
|
Gtk::Button add_button;
|
2018-09-18 18:52:20 -04:00
|
|
|
|
|
|
|
sigc::connection update_connection;
|
|
|
|
PBD::ScopedConnection current_connection;
|
2018-10-07 11:09:54 -04:00
|
|
|
PBD::ScopedConnection add_connection;
|
|
|
|
PBD::ScopedConnection remove_connection;
|
2019-09-16 15:46:06 -04:00
|
|
|
PBD::ScopedConnection engine_running_connection;
|
2018-09-18 18:52:20 -04:00
|
|
|
|
|
|
|
void rebuild ();
|
2019-01-25 00:05:56 -05:00
|
|
|
void clear ();
|
2018-09-18 18:52:20 -04:00
|
|
|
void current_changed (boost::shared_ptr<ARDOUR::TransportMaster> old_master, boost::shared_ptr<ARDOUR::TransportMaster> new_master);
|
2018-10-05 12:35:13 -04:00
|
|
|
void add_master ();
|
2019-09-16 15:46:06 -04:00
|
|
|
void update_usability ();
|
2018-10-07 12:57:56 -04:00
|
|
|
|
|
|
|
public:
|
|
|
|
bool idle_remove (Row*);
|
2018-09-18 18:52:20 -04:00
|
|
|
};
|
|
|
|
|
2018-09-23 12:59:18 -04:00
|
|
|
class TransportMastersWindow : public ArdourWindow
|
2018-09-18 18:52:20 -04:00
|
|
|
{
|
|
|
|
public:
|
2018-09-23 12:59:18 -04:00
|
|
|
TransportMastersWindow ();
|
2018-09-18 18:52:20 -04:00
|
|
|
|
|
|
|
void set_session (ARDOUR::Session*);
|
|
|
|
|
2018-09-23 12:59:18 -04:00
|
|
|
protected:
|
|
|
|
void on_realize ();
|
|
|
|
|
2018-09-18 18:52:20 -04:00
|
|
|
private:
|
|
|
|
TransportMastersWidget w;
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
#endif /* __ardour_gtk_transport_masters_dialog_h__ */
|