2008-09-17 08:56:00 -04:00
|
|
|
/*
|
|
|
|
Copyright (C) 2008 Paul Davis
|
|
|
|
Author: Sakari Bergen
|
|
|
|
|
|
|
|
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.
|
|
|
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "export_channel_selector.h"
|
|
|
|
|
|
|
|
#include <algorithm>
|
|
|
|
|
2009-02-25 13:26:51 -05:00
|
|
|
#include "pbd/convert.h"
|
2008-09-17 08:56:00 -04:00
|
|
|
|
2009-02-25 13:26:51 -05:00
|
|
|
#include "ardour/audio_port.h"
|
|
|
|
#include "ardour/audio_track.h"
|
|
|
|
#include "ardour/audioengine.h"
|
|
|
|
#include "ardour/export_channel_configuration.h"
|
|
|
|
#include "ardour/export_handler.h"
|
|
|
|
#include "ardour/io.h"
|
|
|
|
#include "ardour/route.h"
|
|
|
|
#include "ardour/session.h"
|
2008-09-17 08:56:00 -04:00
|
|
|
|
|
|
|
#include <sstream>
|
|
|
|
|
|
|
|
#include "i18n.h"
|
|
|
|
|
2009-05-12 13:03:42 -04:00
|
|
|
using namespace std;
|
|
|
|
using namespace Glib;
|
2008-09-17 08:56:00 -04:00
|
|
|
using namespace ARDOUR;
|
|
|
|
using namespace PBD;
|
|
|
|
|
2009-03-08 06:56:40 -04:00
|
|
|
PortExportChannelSelector::PortExportChannelSelector (ARDOUR::Session * session, ProfileManagerPtr manager) :
|
|
|
|
ExportChannelSelector (session, manager),
|
2008-09-17 08:56:00 -04:00
|
|
|
channels_label (_("Channels:"), Gtk::ALIGN_LEFT),
|
|
|
|
split_checkbox (_("Split to mono files")),
|
|
|
|
max_channels (20),
|
|
|
|
channel_view (max_channels)
|
|
|
|
{
|
|
|
|
channels_hbox.pack_start (channels_label, false, false, 0);
|
|
|
|
channels_hbox.pack_end (channels_spinbutton, false, false, 0);
|
2009-10-14 12:10:01 -04:00
|
|
|
|
2008-09-17 08:56:00 -04:00
|
|
|
channels_vbox.pack_start (channels_hbox, false, false, 0);
|
|
|
|
channels_vbox.pack_start (split_checkbox, false, false, 6);
|
2009-10-14 12:10:01 -04:00
|
|
|
|
2008-09-17 08:56:00 -04:00
|
|
|
channel_alignment.add (channel_scroller);
|
|
|
|
channel_alignment.set_padding (0, 0, 12, 0);
|
|
|
|
channel_scroller.add (channel_view);
|
|
|
|
channel_scroller.set_size_request (-1, 130);
|
|
|
|
channel_scroller.set_policy (Gtk::POLICY_AUTOMATIC, Gtk::POLICY_AUTOMATIC);
|
2009-10-14 12:10:01 -04:00
|
|
|
|
2008-09-17 08:56:00 -04:00
|
|
|
pack_start (channels_vbox, false, false, 0);
|
|
|
|
pack_start (channel_alignment, true, true, 0);
|
2009-10-14 12:10:01 -04:00
|
|
|
|
2008-09-17 08:56:00 -04:00
|
|
|
/* Channels spinbutton */
|
2009-10-14 12:10:01 -04:00
|
|
|
|
2008-09-17 08:56:00 -04:00
|
|
|
channels_spinbutton.set_digits (0);
|
|
|
|
channels_spinbutton.set_increments (1, 2);
|
|
|
|
channels_spinbutton.set_range (1, max_channels);
|
|
|
|
channels_spinbutton.set_value (2);
|
2009-10-14 12:10:01 -04:00
|
|
|
|
2008-10-11 06:14:51 -04:00
|
|
|
channels_spinbutton.signal_value_changed().connect (sigc::mem_fun (*this, &PortExportChannelSelector::update_channel_count));
|
2009-10-14 12:10:01 -04:00
|
|
|
|
2008-09-17 08:56:00 -04:00
|
|
|
/* Other signals */
|
2009-10-14 12:10:01 -04:00
|
|
|
|
2008-10-11 06:14:51 -04:00
|
|
|
split_checkbox.signal_toggled().connect (sigc::mem_fun (*this, &PortExportChannelSelector::update_split_state));
|
2008-09-17 08:56:00 -04:00
|
|
|
channel_view.CriticalSelectionChanged.connect (CriticalSelectionChanged.make_slot());
|
2009-10-14 12:10:01 -04:00
|
|
|
|
2008-09-17 08:56:00 -04:00
|
|
|
/* Finalize */
|
2009-10-14 12:10:01 -04:00
|
|
|
|
2009-03-08 06:56:40 -04:00
|
|
|
sync_with_manager();
|
2008-09-17 08:56:00 -04:00
|
|
|
show_all_children ();
|
2009-10-14 12:10:01 -04:00
|
|
|
|
2008-09-17 08:56:00 -04:00
|
|
|
}
|
|
|
|
|
2008-10-11 06:14:51 -04:00
|
|
|
PortExportChannelSelector::~PortExportChannelSelector ()
|
2008-09-17 08:56:00 -04:00
|
|
|
{
|
|
|
|
// if (session) {
|
|
|
|
// session->add_instant_xml (get_state(), false);
|
|
|
|
// }
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2009-03-08 06:56:40 -04:00
|
|
|
PortExportChannelSelector::sync_with_manager ()
|
2008-09-17 08:56:00 -04:00
|
|
|
{
|
2009-03-08 06:56:40 -04:00
|
|
|
state = manager->get_channel_configs().front();
|
2009-10-14 12:10:01 -04:00
|
|
|
|
2008-09-17 08:56:00 -04:00
|
|
|
split_checkbox.set_active (state->config->get_split());
|
|
|
|
channels_spinbutton.set_value (state->config->get_n_chans());
|
2009-10-14 12:10:01 -04:00
|
|
|
|
2008-09-17 08:56:00 -04:00
|
|
|
fill_route_list ();
|
|
|
|
channel_view.set_config (state->config);
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2008-10-11 06:14:51 -04:00
|
|
|
PortExportChannelSelector::fill_route_list ()
|
2008-09-17 08:56:00 -04:00
|
|
|
{
|
|
|
|
channel_view.clear_routes ();
|
2009-12-17 13:24:23 -05:00
|
|
|
RouteList routes = *_session->get_routes();
|
2008-09-17 08:56:00 -04:00
|
|
|
|
|
|
|
/* Add master bus and then everything else */
|
2009-10-14 12:10:01 -04:00
|
|
|
|
2009-12-17 13:24:23 -05:00
|
|
|
ARDOUR::IO* master = _session->master_out()->output().get();
|
2008-09-17 08:56:00 -04:00
|
|
|
channel_view.add_route (master);
|
2009-10-14 12:10:01 -04:00
|
|
|
|
2009-01-30 02:40:13 -05:00
|
|
|
for (RouteList::iterator it = routes.begin(); it != routes.end(); ++it) {
|
2009-06-09 16:21:19 -04:00
|
|
|
if ((*it)->output().get() == master) {
|
2008-09-17 08:56:00 -04:00
|
|
|
continue;
|
|
|
|
}
|
2009-06-09 16:21:19 -04:00
|
|
|
channel_view.add_route ((*it)->output().get());
|
2008-09-17 08:56:00 -04:00
|
|
|
}
|
2009-10-14 12:10:01 -04:00
|
|
|
|
2008-09-17 08:56:00 -04:00
|
|
|
update_channel_count ();
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2008-10-11 06:14:51 -04:00
|
|
|
PortExportChannelSelector::update_channel_count ()
|
2008-09-17 08:56:00 -04:00
|
|
|
{
|
|
|
|
uint32_t chans = static_cast<uint32_t> (channels_spinbutton.get_value());
|
|
|
|
channel_view.set_channel_count (chans);
|
|
|
|
CriticalSelectionChanged();
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2008-10-11 06:14:51 -04:00
|
|
|
PortExportChannelSelector::update_split_state ()
|
2008-09-17 08:56:00 -04:00
|
|
|
{
|
|
|
|
state->config->set_split (split_checkbox.get_active());
|
|
|
|
CriticalSelectionChanged();
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2008-10-11 06:14:51 -04:00
|
|
|
PortExportChannelSelector::RouteCols::add_channels (uint32_t chans)
|
2008-09-17 08:56:00 -04:00
|
|
|
{
|
|
|
|
while (chans > 0) {
|
|
|
|
channels.push_back (Channel (*this));
|
|
|
|
++n_channels;
|
|
|
|
--chans;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2008-10-11 06:14:51 -04:00
|
|
|
PortExportChannelSelector::RouteCols::Channel &
|
|
|
|
PortExportChannelSelector::RouteCols::get_channel (uint32_t channel)
|
2008-09-17 08:56:00 -04:00
|
|
|
{
|
|
|
|
if (channel > n_channels) {
|
|
|
|
std::cout << "Invalid channel cout for get_channel!" << std::endl;
|
|
|
|
}
|
|
|
|
|
|
|
|
std::list<Channel>::iterator it = channels.begin();
|
2009-10-14 12:10:01 -04:00
|
|
|
|
2008-09-17 08:56:00 -04:00
|
|
|
while (channel > 1) { // Channel count starts from one!
|
|
|
|
++it;
|
|
|
|
--channel;
|
|
|
|
}
|
2009-10-14 12:10:01 -04:00
|
|
|
|
2008-09-17 08:56:00 -04:00
|
|
|
return *it;
|
|
|
|
}
|
|
|
|
|
2008-10-11 06:14:51 -04:00
|
|
|
PortExportChannelSelector::ChannelTreeView::ChannelTreeView (uint32_t max_channels) :
|
2008-09-17 08:56:00 -04:00
|
|
|
n_channels (0)
|
|
|
|
{
|
|
|
|
/* Main columns */
|
2009-10-14 12:10:01 -04:00
|
|
|
|
2008-09-17 08:56:00 -04:00
|
|
|
route_cols.add_channels (max_channels);
|
2009-10-14 12:10:01 -04:00
|
|
|
|
2008-09-17 08:56:00 -04:00
|
|
|
route_list = Gtk::ListStore::create(route_cols);
|
|
|
|
set_model (route_list);
|
2009-10-14 12:10:01 -04:00
|
|
|
|
2008-09-17 08:56:00 -04:00
|
|
|
/* Add column with toggle and text */
|
2009-10-14 12:10:01 -04:00
|
|
|
|
2008-09-17 08:56:00 -04:00
|
|
|
append_column_editable (_("Bus or Track"), route_cols.selected);
|
2009-10-14 12:10:01 -04:00
|
|
|
|
2008-09-17 08:56:00 -04:00
|
|
|
Gtk::CellRendererText* text_renderer = Gtk::manage (new Gtk::CellRendererText);
|
|
|
|
text_renderer->property_editable() = false;
|
2009-10-14 12:10:01 -04:00
|
|
|
|
2008-09-17 08:56:00 -04:00
|
|
|
Gtk::TreeView::Column* column = get_column (0);
|
|
|
|
column->pack_start (*text_renderer);
|
|
|
|
column->add_attribute (text_renderer->property_text(), route_cols.name);
|
2009-10-14 12:10:01 -04:00
|
|
|
|
2008-09-17 08:56:00 -04:00
|
|
|
Gtk::CellRendererToggle *toggle = dynamic_cast<Gtk::CellRendererToggle *>(get_column_cell_renderer (0));
|
2009-12-11 18:29:48 -05:00
|
|
|
toggle->signal_toggled().connect (sigc::mem_fun (*this, &PortExportChannelSelector::ChannelTreeView::update_toggle_selection));
|
2009-10-14 12:10:01 -04:00
|
|
|
|
2008-09-17 08:56:00 -04:00
|
|
|
static_columns = get_columns().size();
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2008-10-11 06:14:51 -04:00
|
|
|
PortExportChannelSelector::ChannelTreeView::set_config (ChannelConfigPtr c)
|
2008-09-17 08:56:00 -04:00
|
|
|
{
|
|
|
|
/* TODO Without the following line, the state might get reset.
|
|
|
|
* Pointing to the same address does not mean the state of the configuration hasn't changed.
|
|
|
|
* In the current code this is safe, but the actual cause of the problem would be good to fix
|
|
|
|
*/
|
|
|
|
|
|
|
|
if (config == c) { return; }
|
|
|
|
config = c;
|
|
|
|
|
|
|
|
uint32_t i = 1;
|
|
|
|
ExportChannelConfiguration::ChannelList chan_list = config->get_channels();
|
|
|
|
for (ExportChannelConfiguration::ChannelList::iterator c_it = chan_list.begin(); c_it != chan_list.end(); ++c_it) {
|
2009-10-14 12:10:01 -04:00
|
|
|
|
2008-09-17 08:56:00 -04:00
|
|
|
for (Gtk::ListStore::Children::iterator r_it = route_list->children().begin(); r_it != route_list->children().end(); ++r_it) {
|
2009-10-14 12:10:01 -04:00
|
|
|
|
2008-10-11 06:14:51 -04:00
|
|
|
ARDOUR::PortExportChannel * pec;
|
|
|
|
if (!(pec = dynamic_cast<ARDOUR::PortExportChannel *> (c_it->get()))) {
|
|
|
|
continue;
|
|
|
|
}
|
2009-10-14 12:10:01 -04:00
|
|
|
|
2008-09-17 08:56:00 -04:00
|
|
|
Glib::RefPtr<Gtk::ListStore> port_list = r_it->get_value (route_cols.port_list_col);
|
|
|
|
std::set<AudioPort *> route_ports;
|
|
|
|
std::set<AudioPort *> intersection;
|
|
|
|
std::map<AudioPort *, ustring> port_labels;
|
2009-10-14 12:10:01 -04:00
|
|
|
|
2008-09-17 08:56:00 -04:00
|
|
|
for (Gtk::ListStore::Children::const_iterator p_it = port_list->children().begin(); p_it != port_list->children().end(); ++p_it) {
|
|
|
|
route_ports.insert ((*p_it)->get_value (route_cols.port_cols.port));
|
|
|
|
port_labels.insert (std::pair<AudioPort*, ustring> ((*p_it)->get_value (route_cols.port_cols.port),
|
|
|
|
(*p_it)->get_value (route_cols.port_cols.label)));
|
|
|
|
}
|
2009-10-14 12:10:01 -04:00
|
|
|
|
2008-10-11 06:14:51 -04:00
|
|
|
std::set_intersection (pec->get_ports().begin(), pec->get_ports().end(),
|
2008-09-17 08:56:00 -04:00
|
|
|
route_ports.begin(), route_ports.end(),
|
|
|
|
std::insert_iterator<std::set<AudioPort *> > (intersection, intersection.begin()));
|
2009-10-14 12:10:01 -04:00
|
|
|
|
2008-09-17 08:56:00 -04:00
|
|
|
intersection.erase (0); // Remove "none" selection
|
2009-10-14 12:10:01 -04:00
|
|
|
|
2008-09-17 08:56:00 -04:00
|
|
|
if (intersection.empty()) {
|
|
|
|
continue;
|
|
|
|
}
|
2009-10-14 12:10:01 -04:00
|
|
|
|
2008-09-17 08:56:00 -04:00
|
|
|
if (!r_it->get_value (route_cols.selected)) {
|
|
|
|
r_it->set_value (route_cols.selected, true);
|
2009-10-14 12:10:01 -04:00
|
|
|
|
2008-09-17 08:56:00 -04:00
|
|
|
/* Set previous channels (if any) to none */
|
2009-10-14 12:10:01 -04:00
|
|
|
|
2008-09-17 08:56:00 -04:00
|
|
|
for (uint32_t chn = 1; chn < i; ++chn) {
|
|
|
|
r_it->set_value (route_cols.get_channel (chn).port, (AudioPort *) 0);
|
|
|
|
r_it->set_value (route_cols.get_channel (chn).label, ustring ("(none)"));
|
|
|
|
}
|
|
|
|
}
|
2009-10-14 12:10:01 -04:00
|
|
|
|
2008-09-17 08:56:00 -04:00
|
|
|
AudioPort * port = *intersection.begin();
|
|
|
|
std::map<AudioPort *, ustring>::iterator label_it = port_labels.find (port);
|
|
|
|
ustring label = label_it != port_labels.end() ? label_it->second : "error";
|
2009-10-14 12:10:01 -04:00
|
|
|
|
2008-09-17 08:56:00 -04:00
|
|
|
r_it->set_value (route_cols.get_channel (i).port, port);
|
|
|
|
r_it->set_value (route_cols.get_channel (i).label, label);
|
|
|
|
}
|
2009-10-14 12:10:01 -04:00
|
|
|
|
2008-09-17 08:56:00 -04:00
|
|
|
++i;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2009-06-09 16:21:19 -04:00
|
|
|
PortExportChannelSelector::ChannelTreeView::add_route (ARDOUR::IO * io)
|
2008-09-17 08:56:00 -04:00
|
|
|
{
|
|
|
|
Gtk::TreeModel::iterator iter = route_list->append();
|
|
|
|
Gtk::TreeModel::Row row = *iter;
|
|
|
|
|
|
|
|
row[route_cols.selected] = false;
|
2009-06-09 16:21:19 -04:00
|
|
|
row[route_cols.name] = io->name();
|
|
|
|
row[route_cols.io] = io;
|
2009-10-14 12:10:01 -04:00
|
|
|
|
2008-09-17 08:56:00 -04:00
|
|
|
/* Initialize port list */
|
2009-10-14 12:10:01 -04:00
|
|
|
|
2008-09-17 08:56:00 -04:00
|
|
|
Glib::RefPtr<Gtk::ListStore> port_list = Gtk::ListStore::create (route_cols.port_cols);
|
|
|
|
row[route_cols.port_list_col] = port_list;
|
2009-10-14 12:10:01 -04:00
|
|
|
|
2009-06-09 16:21:19 -04:00
|
|
|
uint32_t outs = io->n_ports().n_audio();
|
2008-09-17 08:56:00 -04:00
|
|
|
for (uint32_t i = 0; i < outs; ++i) {
|
|
|
|
iter = port_list->append();
|
|
|
|
row = *iter;
|
2009-10-14 12:10:01 -04:00
|
|
|
|
2008-09-17 08:56:00 -04:00
|
|
|
row[route_cols.port_cols.selected] = false;
|
2009-06-09 16:21:19 -04:00
|
|
|
row[route_cols.port_cols.port] = io->audio (i);
|
2009-10-14 12:10:01 -04:00
|
|
|
|
2008-09-17 08:56:00 -04:00
|
|
|
std::ostringstream oss;
|
|
|
|
oss << "Out-" << (i + 1);
|
2009-10-14 12:10:01 -04:00
|
|
|
|
2008-09-17 08:56:00 -04:00
|
|
|
row[route_cols.port_cols.label] = oss.str();
|
|
|
|
}
|
2009-10-14 12:10:01 -04:00
|
|
|
|
2008-09-17 08:56:00 -04:00
|
|
|
iter = port_list->append();
|
|
|
|
row = *iter;
|
2009-10-14 12:10:01 -04:00
|
|
|
|
2008-09-17 08:56:00 -04:00
|
|
|
row[route_cols.port_cols.selected] = false;
|
|
|
|
row[route_cols.port_cols.port] = 0;
|
|
|
|
row[route_cols.port_cols.label] = "(none)";
|
2009-10-14 12:10:01 -04:00
|
|
|
|
2008-09-17 08:56:00 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2008-10-11 06:14:51 -04:00
|
|
|
PortExportChannelSelector::ChannelTreeView::set_channel_count (uint32_t channels)
|
2008-09-17 08:56:00 -04:00
|
|
|
{
|
|
|
|
int offset = channels - n_channels;
|
2009-10-14 12:10:01 -04:00
|
|
|
|
2008-09-17 08:56:00 -04:00
|
|
|
while (offset > 0) {
|
|
|
|
++n_channels;
|
2009-10-14 12:10:01 -04:00
|
|
|
|
2008-09-17 08:56:00 -04:00
|
|
|
std::ostringstream oss;
|
|
|
|
oss << n_channels;
|
2009-10-14 12:10:01 -04:00
|
|
|
|
2008-09-17 08:56:00 -04:00
|
|
|
/* New column */
|
2009-10-14 12:10:01 -04:00
|
|
|
|
|
|
|
Gtk::TreeView::Column* column = Gtk::manage (new Gtk::TreeView::Column (oss.str()));
|
|
|
|
|
2008-09-17 08:56:00 -04:00
|
|
|
Gtk::CellRendererCombo* combo_renderer = Gtk::manage (new Gtk::CellRendererCombo);
|
2009-10-14 12:10:01 -04:00
|
|
|
combo_renderer->property_text_column() = 2;
|
2008-09-17 08:56:00 -04:00
|
|
|
column->pack_start (*combo_renderer);
|
2009-10-14 12:10:01 -04:00
|
|
|
|
2008-09-17 08:56:00 -04:00
|
|
|
append_column (*column);
|
2009-10-14 12:10:01 -04:00
|
|
|
|
2008-09-17 08:56:00 -04:00
|
|
|
column->add_attribute (combo_renderer->property_text(), route_cols.get_channel(n_channels).label);
|
|
|
|
column->add_attribute (combo_renderer->property_model(), route_cols.port_list_col);
|
|
|
|
column->add_attribute (combo_renderer->property_editable(), route_cols.selected);
|
2009-10-14 12:10:01 -04:00
|
|
|
|
2008-10-11 06:14:51 -04:00
|
|
|
combo_renderer->signal_edited().connect (sigc::bind (sigc::mem_fun (*this, &PortExportChannelSelector::ChannelTreeView::update_selection_text), n_channels));
|
2009-10-14 12:10:01 -04:00
|
|
|
|
2008-09-17 08:56:00 -04:00
|
|
|
/* put data into view */
|
2009-10-14 12:10:01 -04:00
|
|
|
|
2008-09-17 08:56:00 -04:00
|
|
|
for (Gtk::ListStore::Children::iterator it = route_list->children().begin(); it != route_list->children().end(); ++it) {
|
|
|
|
Glib::ustring label = it->get_value(route_cols.selected) ? "(none)" : "";
|
|
|
|
it->set_value (route_cols.get_channel (n_channels).label, label);
|
|
|
|
it->set_value (route_cols.get_channel (n_channels).port, (AudioPort *) 0);
|
|
|
|
}
|
2009-10-14 12:10:01 -04:00
|
|
|
|
2008-09-17 08:56:00 -04:00
|
|
|
/* set column width */
|
2009-10-14 12:10:01 -04:00
|
|
|
|
2008-09-17 08:56:00 -04:00
|
|
|
get_column (static_columns + n_channels - 1)->set_min_width (80);
|
2009-10-14 12:10:01 -04:00
|
|
|
|
2008-09-17 08:56:00 -04:00
|
|
|
--offset;
|
|
|
|
}
|
2009-10-14 12:10:01 -04:00
|
|
|
|
2008-09-17 08:56:00 -04:00
|
|
|
while (offset < 0) {
|
|
|
|
--n_channels;
|
2009-10-14 12:10:01 -04:00
|
|
|
|
2008-09-17 08:56:00 -04:00
|
|
|
remove_column (*get_column (n_channels + static_columns));
|
2009-10-14 12:10:01 -04:00
|
|
|
|
2008-09-17 08:56:00 -04:00
|
|
|
++offset;
|
|
|
|
}
|
2009-10-14 12:10:01 -04:00
|
|
|
|
2008-09-17 08:56:00 -04:00
|
|
|
update_config ();
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2008-10-11 06:14:51 -04:00
|
|
|
PortExportChannelSelector::ChannelTreeView::update_config ()
|
2008-09-17 08:56:00 -04:00
|
|
|
{
|
|
|
|
|
|
|
|
if (!config) { return; }
|
|
|
|
|
|
|
|
config->clear_channels();
|
|
|
|
|
|
|
|
for (uint32_t i = 1; i <= n_channels; ++i) {
|
2009-10-14 12:10:01 -04:00
|
|
|
|
2008-10-11 06:14:51 -04:00
|
|
|
ExportChannelPtr channel (new PortExportChannel ());
|
|
|
|
PortExportChannel * pec = static_cast<PortExportChannel *> (channel.get());
|
2009-10-14 12:10:01 -04:00
|
|
|
|
2008-09-17 08:56:00 -04:00
|
|
|
for (Gtk::ListStore::Children::iterator it = route_list->children().begin(); it != route_list->children().end(); ++it) {
|
|
|
|
Gtk::TreeModel::Row row = *it;
|
2009-10-14 12:10:01 -04:00
|
|
|
|
2008-09-17 08:56:00 -04:00
|
|
|
if (!row[route_cols.selected]) {
|
|
|
|
continue;
|
|
|
|
}
|
2009-10-14 12:10:01 -04:00
|
|
|
|
2008-09-17 08:56:00 -04:00
|
|
|
AudioPort * port = row[route_cols.get_channel (i).port];
|
|
|
|
if (port) {
|
2008-10-11 06:14:51 -04:00
|
|
|
pec->add_port (port);
|
2008-09-17 08:56:00 -04:00
|
|
|
}
|
|
|
|
}
|
2009-10-14 12:10:01 -04:00
|
|
|
|
2008-09-17 08:56:00 -04:00
|
|
|
config->register_channel (channel);
|
|
|
|
}
|
2009-10-14 12:10:01 -04:00
|
|
|
|
2008-09-17 08:56:00 -04:00
|
|
|
CriticalSelectionChanged ();
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2008-10-11 06:14:51 -04:00
|
|
|
PortExportChannelSelector::ChannelTreeView::update_toggle_selection (Glib::ustring const & path)
|
2008-09-17 08:56:00 -04:00
|
|
|
{
|
|
|
|
Gtk::TreeModel::iterator iter = get_model ()->get_iter (path);
|
|
|
|
bool selected = iter->get_value (route_cols.selected);
|
2009-10-14 12:10:01 -04:00
|
|
|
|
2008-09-17 08:56:00 -04:00
|
|
|
for (uint32_t i = 1; i <= n_channels; ++i) {
|
2009-10-14 12:10:01 -04:00
|
|
|
|
2008-09-17 08:56:00 -04:00
|
|
|
if (!selected) {
|
|
|
|
iter->set_value (route_cols.get_channel (i).label, Glib::ustring (""));
|
|
|
|
continue;
|
|
|
|
}
|
2009-10-14 12:10:01 -04:00
|
|
|
|
2008-09-17 08:56:00 -04:00
|
|
|
iter->set_value (route_cols.get_channel (i).label, Glib::ustring("(none)"));
|
|
|
|
iter->set_value (route_cols.get_channel (i).port, (AudioPort *) 0);
|
2009-10-14 12:10:01 -04:00
|
|
|
|
2008-09-17 08:56:00 -04:00
|
|
|
Glib::RefPtr<Gtk::ListStore> port_list = iter->get_value (route_cols.port_list_col);
|
|
|
|
Gtk::ListStore::Children::iterator port_it;
|
|
|
|
uint32_t port_number = 1;
|
2009-10-14 12:10:01 -04:00
|
|
|
|
2008-09-17 08:56:00 -04:00
|
|
|
for (port_it = port_list->children().begin(); port_it != port_list->children().end(); ++port_it) {
|
|
|
|
if (port_number == i) {
|
|
|
|
iter->set_value (route_cols.get_channel (i).label, (Glib::ustring) (*port_it)->get_value (route_cols.port_cols.label));
|
|
|
|
iter->set_value (route_cols.get_channel (i).port, (AudioPort *) (*port_it)->get_value (route_cols.port_cols.port));
|
|
|
|
}
|
2009-10-14 12:10:01 -04:00
|
|
|
|
2008-09-17 08:56:00 -04:00
|
|
|
++port_number;
|
|
|
|
}
|
|
|
|
}
|
2009-10-14 12:10:01 -04:00
|
|
|
|
2008-09-17 08:56:00 -04:00
|
|
|
update_config ();
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2008-10-11 06:14:51 -04:00
|
|
|
PortExportChannelSelector::ChannelTreeView::update_selection_text (Glib::ustring const & path, Glib::ustring const & new_text, uint32_t channel)
|
2008-09-17 08:56:00 -04:00
|
|
|
{
|
|
|
|
Gtk::TreeModel::iterator iter = get_model ()->get_iter (path);
|
|
|
|
iter->set_value (route_cols.get_channel (channel).label, new_text);
|
2009-10-14 12:10:01 -04:00
|
|
|
|
2008-09-17 08:56:00 -04:00
|
|
|
Glib::RefPtr<Gtk::ListStore> port_list = iter->get_value (route_cols.port_list_col);
|
|
|
|
Gtk::ListStore::Children::iterator port_it;
|
2009-10-14 12:10:01 -04:00
|
|
|
|
2008-09-17 08:56:00 -04:00
|
|
|
for (port_it = port_list->children().begin(); port_it != port_list->children().end(); ++port_it) {
|
|
|
|
Glib::ustring label = port_it->get_value (route_cols.port_cols.label);
|
|
|
|
if (label == new_text) {
|
|
|
|
iter->set_value (route_cols.get_channel (channel).port, (AudioPort *) (*port_it)[route_cols.port_cols.port]);
|
|
|
|
}
|
|
|
|
}
|
2009-10-14 12:10:01 -04:00
|
|
|
|
2008-09-17 08:56:00 -04:00
|
|
|
update_config ();
|
|
|
|
}
|
2008-10-11 06:14:51 -04:00
|
|
|
|
2009-12-17 13:24:23 -05:00
|
|
|
RegionExportChannelSelector::RegionExportChannelSelector (ARDOUR::Session * _session,
|
2009-03-08 06:56:40 -04:00
|
|
|
ProfileManagerPtr manager,
|
|
|
|
ARDOUR::AudioRegion const & region,
|
|
|
|
ARDOUR::AudioTrack & track) :
|
2009-12-17 13:24:23 -05:00
|
|
|
ExportChannelSelector (_session, manager),
|
2008-10-11 06:14:51 -04:00
|
|
|
region (region),
|
|
|
|
track (track),
|
|
|
|
region_chans (region.n_channels()),
|
|
|
|
track_chans (track.n_outputs().n_audio()),
|
|
|
|
|
|
|
|
raw_button (type_group),
|
2008-10-11 10:07:50 -04:00
|
|
|
fades_button (type_group),
|
2008-10-11 06:14:51 -04:00
|
|
|
processed_button (type_group)
|
|
|
|
{
|
|
|
|
pack_start (vbox);
|
|
|
|
|
2008-10-11 10:07:50 -04:00
|
|
|
raw_button.set_label (string_compose (_("Region contents without fades (channels: %1)"), region_chans));
|
2008-10-11 06:14:51 -04:00
|
|
|
raw_button.signal_toggled ().connect (sigc::mem_fun (*this, &RegionExportChannelSelector::handle_selection));
|
|
|
|
vbox.pack_start (raw_button);
|
2009-10-14 12:10:01 -04:00
|
|
|
|
2008-10-11 10:07:50 -04:00
|
|
|
fades_button.set_label (string_compose (_("Region contents with fades (channels: %1)"), region_chans));
|
|
|
|
fades_button.signal_toggled ().connect (sigc::mem_fun (*this, &RegionExportChannelSelector::handle_selection));
|
|
|
|
vbox.pack_start (fades_button);
|
2009-10-14 12:10:01 -04:00
|
|
|
|
2008-10-11 10:07:50 -04:00
|
|
|
processed_button.set_label (string_compose (_("Track output (channels: %1)"), track_chans));
|
2008-10-11 06:14:51 -04:00
|
|
|
processed_button.signal_toggled ().connect (sigc::mem_fun (*this, &RegionExportChannelSelector::handle_selection));
|
|
|
|
vbox.pack_start (processed_button);
|
2009-10-14 12:10:01 -04:00
|
|
|
|
2009-03-08 06:56:40 -04:00
|
|
|
sync_with_manager();
|
2008-10-11 06:14:51 -04:00
|
|
|
vbox.show_all_children ();
|
|
|
|
show_all_children ();
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2009-03-08 06:56:40 -04:00
|
|
|
RegionExportChannelSelector::sync_with_manager ()
|
2008-10-11 06:14:51 -04:00
|
|
|
{
|
2009-03-08 06:56:40 -04:00
|
|
|
state = manager->get_channel_configs().front();
|
2008-10-11 06:14:51 -04:00
|
|
|
handle_selection ();
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
RegionExportChannelSelector::handle_selection ()
|
|
|
|
{
|
|
|
|
if (!state) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
state->config->clear_channels ();
|
2009-10-14 12:10:01 -04:00
|
|
|
|
2008-10-11 06:14:51 -04:00
|
|
|
if (raw_button.get_active ()) {
|
2009-12-17 13:24:23 -05:00
|
|
|
factory.reset (new RegionExportChannelFactory (_session, region, track, RegionExportChannelFactory::Raw));
|
2008-10-11 10:07:50 -04:00
|
|
|
} else if (fades_button.get_active ()) {
|
2009-12-17 13:24:23 -05:00
|
|
|
factory.reset (new RegionExportChannelFactory (_session, region, track, RegionExportChannelFactory::Fades));
|
2008-10-11 06:14:51 -04:00
|
|
|
} else if (processed_button.get_active ()) {
|
2009-12-17 13:24:23 -05:00
|
|
|
factory.reset (new RegionExportChannelFactory(_session, region, track, RegionExportChannelFactory::Processed));
|
2008-10-11 10:07:50 -04:00
|
|
|
} else {
|
|
|
|
CriticalSelectionChanged ();
|
|
|
|
return;
|
|
|
|
}
|
2009-10-14 12:10:01 -04:00
|
|
|
|
2008-10-11 10:07:50 -04:00
|
|
|
for (size_t chan = 0; chan < region_chans; ++chan) {
|
|
|
|
state->config->register_channel (factory->create (chan));
|
2008-10-11 06:14:51 -04:00
|
|
|
}
|
2009-10-14 12:10:01 -04:00
|
|
|
|
2008-10-11 06:14:51 -04:00
|
|
|
CriticalSelectionChanged ();
|
|
|
|
}
|