2005-09-25 14:42:24 -04:00
|
|
|
/*
|
|
|
|
Copyright (C) 2002 Paul Davis
|
|
|
|
|
|
|
|
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., 675 Mass Ave, Cambridge, MA 02139, USA.
|
|
|
|
|
|
|
|
$Id$
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef __ardour_ui_io_selector_h__
|
|
|
|
#define __ardour_ui_io_selector_h__
|
|
|
|
|
|
|
|
#if __GNUC__ >= 3
|
|
|
|
#include <ext/slist>
|
|
|
|
using __gnu_cxx::slist;
|
|
|
|
#else
|
|
|
|
#include <slist.h>
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#include <string>
|
2005-10-31 19:56:09 -05:00
|
|
|
#include <gtkmm/box.h>
|
|
|
|
#include <gtkmm/frame.h>
|
|
|
|
#include <gtkmm/button.h>
|
|
|
|
#include <gtkmm/scrolledwindow.h>
|
|
|
|
#include <gtkmm/notebook.h>
|
|
|
|
#include <gtkmm/treeview.h>
|
|
|
|
#include <gtkmm/liststore.h>
|
2005-09-25 14:42:24 -04:00
|
|
|
|
|
|
|
#include <ardour_dialog.h>
|
|
|
|
|
|
|
|
namespace ARDOUR {
|
|
|
|
class IO;
|
|
|
|
class Session;
|
|
|
|
class PortInsert;
|
|
|
|
class Port;
|
|
|
|
class Redirect;
|
|
|
|
}
|
|
|
|
|
|
|
|
class IOSelector : public Gtk::VBox {
|
|
|
|
public:
|
|
|
|
IOSelector (ARDOUR::Session&, ARDOUR::IO&, bool for_input);
|
|
|
|
~IOSelector ();
|
|
|
|
|
|
|
|
void redisplay ();
|
|
|
|
|
|
|
|
enum Result {
|
|
|
|
Cancelled,
|
|
|
|
Accepted
|
|
|
|
};
|
|
|
|
|
2005-09-25 16:33:00 -04:00
|
|
|
sigc::signal<void,Result> Finished;
|
2005-09-25 14:42:24 -04:00
|
|
|
|
|
|
|
protected:
|
|
|
|
ARDOUR::Session& session;
|
|
|
|
|
|
|
|
private:
|
|
|
|
ARDOUR::IO& io;
|
|
|
|
bool for_input;
|
|
|
|
ARDOUR::Port *selected_port;
|
|
|
|
|
|
|
|
Gtk::VBox main_box;
|
|
|
|
Gtk::HBox port_and_selector_box;
|
|
|
|
|
2005-10-31 19:56:09 -05:00
|
|
|
/* column model */
|
|
|
|
|
|
|
|
struct PortDisplayModelColumns : public Gtk::TreeModel::ColumnRecord {
|
|
|
|
|
|
|
|
PortDisplayModelColumns() {
|
|
|
|
add (displayed_name);
|
|
|
|
add (full_name);
|
|
|
|
}
|
|
|
|
|
|
|
|
Gtk::TreeModelColumn<Glib::ustring> displayed_name;
|
|
|
|
Gtk::TreeModelColumn<Glib::ustring> full_name;
|
|
|
|
};
|
|
|
|
|
|
|
|
PortDisplayModelColumns port_display_columns;
|
|
|
|
|
2005-09-25 14:42:24 -04:00
|
|
|
/* client/port selection */
|
|
|
|
|
|
|
|
Gtk::Notebook notebook;
|
|
|
|
Gtk::Frame selector_frame;
|
|
|
|
Gtk::VBox selector_box;
|
|
|
|
Gtk::HBox selector_button_box;
|
|
|
|
|
|
|
|
/* ports */
|
|
|
|
|
|
|
|
Gtk::VBox port_box;
|
|
|
|
Gtk::HBox port_button_box;
|
|
|
|
Gtk::VBox port_and_button_box;
|
|
|
|
Gtk::Frame port_frame;
|
|
|
|
Gtk::Button add_port_button;
|
|
|
|
Gtk::Button remove_port_button;
|
|
|
|
Gtk::Button clear_connections_button;
|
|
|
|
Gtk::ScrolledWindow port_display_scroller;
|
|
|
|
|
|
|
|
PBD::Lock port_display_lock;
|
2005-10-01 12:29:37 -04:00
|
|
|
slist<Gtk::TreeView *> port_displays;
|
2005-09-25 14:42:24 -04:00
|
|
|
void display_ports ();
|
|
|
|
|
|
|
|
void rescan ();
|
|
|
|
void clear_connections ();
|
|
|
|
|
2006-03-08 18:19:24 -05:00
|
|
|
bool port_selection_changed(GdkEventButton *, Gtk::TreeView*);
|
2005-09-25 14:42:24 -04:00
|
|
|
|
|
|
|
void ports_changed (ARDOUR::IOChange, void *);
|
|
|
|
void name_changed (void*);
|
|
|
|
|
|
|
|
void add_port ();
|
|
|
|
void remove_port ();
|
|
|
|
gint remove_port_when_idle (ARDOUR::Port *);
|
|
|
|
|
2005-12-24 08:00:17 -05:00
|
|
|
gint port_column_button_release (GdkEventButton *, Gtk::TreeView*);
|
2005-10-31 19:56:09 -05:00
|
|
|
gint connection_button_release (GdkEventButton *, Gtk::TreeView*);
|
2005-09-25 14:42:24 -04:00
|
|
|
|
2005-10-31 19:56:09 -05:00
|
|
|
void select_treeview(Gtk::TreeView*);
|
|
|
|
void select_next_treeview ();
|
2005-09-25 14:42:24 -04:00
|
|
|
};
|
|
|
|
|
|
|
|
class IOSelectorWindow : public ArdourDialog
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
IOSelectorWindow (ARDOUR::Session&, ARDOUR::IO&, bool for_input, bool can_cancel=false);
|
|
|
|
~IOSelectorWindow ();
|
|
|
|
|
|
|
|
IOSelector& selector() { return _selector; }
|
|
|
|
|
|
|
|
protected:
|
2005-10-31 19:56:09 -05:00
|
|
|
void on_map ();
|
2005-09-25 14:42:24 -04:00
|
|
|
|
|
|
|
private:
|
|
|
|
IOSelector _selector;
|
|
|
|
|
|
|
|
/* overall operation buttons */
|
|
|
|
|
|
|
|
Gtk::Button ok_button;
|
|
|
|
Gtk::Button cancel_button;
|
|
|
|
Gtk::Button rescan_button;
|
|
|
|
Gtk::HBox button_box;
|
|
|
|
|
|
|
|
void rescan ();
|
|
|
|
void cancel ();
|
|
|
|
void accept ();
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
class PortInsertUI : public Gtk::VBox
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
PortInsertUI (ARDOUR::Session&, ARDOUR::PortInsert&);
|
|
|
|
|
|
|
|
void redisplay ();
|
|
|
|
void finished (IOSelector::Result);
|
|
|
|
|
|
|
|
private:
|
|
|
|
|
|
|
|
Gtk::HBox hbox;
|
|
|
|
IOSelector input_selector;
|
|
|
|
IOSelector output_selector;
|
|
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
class PortInsertWindow : public ArdourDialog
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
PortInsertWindow (ARDOUR::Session&, ARDOUR::PortInsert&, bool can_cancel=false);
|
|
|
|
|
|
|
|
protected:
|
2005-10-31 19:56:09 -05:00
|
|
|
void on_map ();
|
2005-09-25 14:42:24 -04:00
|
|
|
|
|
|
|
private:
|
|
|
|
|
|
|
|
PortInsertUI _portinsertui;
|
|
|
|
Gtk::VBox vbox;
|
|
|
|
|
|
|
|
Gtk::Button ok_button;
|
|
|
|
Gtk::Button cancel_button;
|
|
|
|
Gtk::Button rescan_button;
|
|
|
|
Gtk::Frame button_frame;
|
|
|
|
Gtk::HBox button_box;
|
|
|
|
|
|
|
|
void rescan ();
|
|
|
|
void cancel ();
|
|
|
|
void accept ();
|
|
|
|
|
|
|
|
void plugin_going_away (ARDOUR::Redirect*);
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
#endif /* __ardour_ui_io_selector_h__ */
|