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.
|
|
|
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <ardour/send.h>
|
2005-09-25 16:33:00 -04:00
|
|
|
#include <gtkmm2ext/doi.h>
|
2005-09-25 14:42:24 -04:00
|
|
|
|
|
|
|
#include "utils.h"
|
|
|
|
#include "send_ui.h"
|
|
|
|
#include "io_selector.h"
|
|
|
|
#include "ardour_ui.h"
|
|
|
|
#include "gui_thread.h"
|
|
|
|
|
|
|
|
using namespace ARDOUR;
|
2006-06-21 19:01:03 -04:00
|
|
|
using namespace PBD;
|
2005-09-25 14:42:24 -04:00
|
|
|
|
2006-07-27 12:52:14 -04:00
|
|
|
SendUI::SendUI (boost::shared_ptr<Send> s, Session& se)
|
2005-09-25 14:42:24 -04:00
|
|
|
: _send (s),
|
|
|
|
_session (se),
|
2007-06-23 16:13:13 -04:00
|
|
|
gpm (s->io(), se),
|
|
|
|
panners (s->io(), se)
|
2005-09-25 14:42:24 -04:00
|
|
|
{
|
|
|
|
hbox.pack_start (gpm, true, true);
|
|
|
|
set_name ("SendUIFrame");
|
|
|
|
|
|
|
|
vbox.set_spacing (5);
|
|
|
|
vbox.set_border_width (5);
|
|
|
|
|
|
|
|
vbox.pack_start (hbox, false, false, false);
|
|
|
|
vbox.pack_start (panners, false,false);
|
|
|
|
|
2007-06-23 16:13:13 -04:00
|
|
|
io = new IOSelector (se, s->io(), false);
|
2005-09-25 14:42:24 -04:00
|
|
|
|
|
|
|
pack_start (vbox, false, false);
|
|
|
|
|
|
|
|
pack_start (*io, true, true);
|
|
|
|
|
|
|
|
show_all ();
|
|
|
|
|
2006-07-27 12:52:14 -04:00
|
|
|
_send->set_metering (true);
|
2005-09-25 14:42:24 -04:00
|
|
|
|
2007-10-11 18:07:47 -04:00
|
|
|
_send->io()->input_changed.connect (mem_fun (*this, &SendUI::ins_changed));
|
2007-06-23 16:13:13 -04:00
|
|
|
_send->io()->output_changed.connect (mem_fun (*this, &SendUI::outs_changed));
|
2005-09-25 14:42:24 -04:00
|
|
|
|
|
|
|
panners.set_width (Wide);
|
|
|
|
panners.setup_pan ();
|
|
|
|
|
|
|
|
gpm.setup_meters ();
|
|
|
|
gpm.set_fader_name ("SendUIFrame");
|
|
|
|
|
2006-04-09 23:54:00 -04:00
|
|
|
// screen_update_connection = ARDOUR_UI::instance()->RapidScreenUpdate.connect (mem_fun (*this, &SendUI::update));
|
2005-09-25 17:19:23 -04:00
|
|
|
fast_screen_update_connection = ARDOUR_UI::instance()->SuperRapidScreenUpdate.connect (mem_fun (*this, &SendUI::fast_update));
|
2005-09-25 14:42:24 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
SendUI::~SendUI ()
|
|
|
|
{
|
2006-07-27 12:52:14 -04:00
|
|
|
_send->set_metering (false);
|
2005-09-25 14:42:24 -04:00
|
|
|
|
|
|
|
/* XXX not clear that we need to do this */
|
|
|
|
|
|
|
|
screen_update_connection.disconnect();
|
|
|
|
fast_screen_update_connection.disconnect();
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
SendUI::ins_changed (IOChange change, void* ignored)
|
|
|
|
{
|
2005-09-25 17:19:23 -04:00
|
|
|
ENSURE_GUI_THREAD(bind (mem_fun (*this, &SendUI::ins_changed), change, ignored));
|
2005-09-25 14:42:24 -04:00
|
|
|
if (change & ConfigurationChanged) {
|
|
|
|
panners.setup_pan ();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
SendUI::outs_changed (IOChange change, void* ignored)
|
|
|
|
{
|
2005-09-25 17:19:23 -04:00
|
|
|
ENSURE_GUI_THREAD(bind (mem_fun (*this, &SendUI::outs_changed), change, ignored));
|
2005-09-25 14:42:24 -04:00
|
|
|
if (change & ConfigurationChanged) {
|
|
|
|
panners.setup_pan ();
|
|
|
|
gpm.setup_meters ();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
SendUI::update ()
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
SendUI::fast_update ()
|
|
|
|
{
|
2006-09-25 17:24:00 -04:00
|
|
|
if (Config->get_meter_falloff() > 0.0f) {
|
2006-04-09 23:54:00 -04:00
|
|
|
gpm.update_meters ();
|
2005-09-25 14:42:24 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2006-07-27 12:52:14 -04:00
|
|
|
SendUIWindow::SendUIWindow (boost::shared_ptr<Send> s, Session& ss)
|
2005-09-25 14:42:24 -04:00
|
|
|
{
|
|
|
|
ui = new SendUI (s, ss);
|
|
|
|
|
|
|
|
vpacker.set_border_width (5);
|
|
|
|
|
|
|
|
hpacker.pack_start (*ui, true, true);
|
|
|
|
|
|
|
|
vpacker.pack_start (hpacker);
|
|
|
|
|
|
|
|
add (vpacker);
|
|
|
|
set_name ("SendUIWindow");
|
|
|
|
|
2006-07-27 12:52:14 -04:00
|
|
|
s->GoingAway.connect (mem_fun (*this, &SendUIWindow::send_going_away));
|
2005-09-25 14:42:24 -04:00
|
|
|
|
2005-10-06 00:59:20 -04:00
|
|
|
signal_delete_event().connect (bind (ptr_fun (just_hide_it), reinterpret_cast<Window *> (this)));
|
2005-09-25 14:42:24 -04:00
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
SendUIWindow::~SendUIWindow ()
|
|
|
|
{
|
|
|
|
delete ui;
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2006-08-24 21:07:15 -04:00
|
|
|
SendUIWindow::send_going_away ()
|
2005-09-25 14:42:24 -04:00
|
|
|
{
|
2006-08-24 21:07:15 -04:00
|
|
|
ENSURE_GUI_THREAD (mem_fun (*this, &SendUIWindow::send_going_away));
|
2006-10-18 13:42:59 -04:00
|
|
|
delete_when_idle (this);
|
2005-09-25 14:42:24 -04:00
|
|
|
}
|
|
|
|
|