David Robillard
6fa6514cfd
It's slightly possible that this causes trivial build failures on different configurations, but otherwise shouldn't cause any problems (i.e. no actual changes other than include/naming/namespace stuff). I deliberately avoided removing libardour-config.h since this can mysteriously break things, though a few of those do seem to be unnecessary. This commit only targets includes of ardour/*.h. There is also a very large number of unnecessary includes of stuff in gtk2_ardour; tackling that should also give a big improvement in build time when things are modified. git-svn-id: svn://localhost/ardour2/branches/3.0@12420 d708f5d6-7413-0410-9779-e7cbd77b26cf
130 lines
3.3 KiB
C++
130 lines
3.3 KiB
C++
/*
|
|
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 <gtkmm2ext/doi.h>
|
|
|
|
#include "ardour/io.h"
|
|
#include "ardour/rc_configuration.h"
|
|
#include "ardour/return.h"
|
|
|
|
#include "utils.h"
|
|
#include "return_ui.h"
|
|
#include "io_selector.h"
|
|
#include "ardour_ui.h"
|
|
#include "gui_thread.h"
|
|
|
|
#include "i18n.h"
|
|
|
|
using namespace std;
|
|
using namespace ARDOUR;
|
|
using namespace PBD;
|
|
|
|
ReturnUI::ReturnUI (Gtk::Window* parent, boost::shared_ptr<Return> r, Session* session)
|
|
:_return (r)
|
|
, _gpm (session, 250)
|
|
{
|
|
_gpm.set_controls (boost::shared_ptr<Route>(), r->meter(), r->amp());
|
|
|
|
_hbox.pack_start (_gpm, true, true);
|
|
set_name ("ReturnUIFrame");
|
|
|
|
_vbox.set_spacing (5);
|
|
_vbox.set_border_width (5);
|
|
|
|
_vbox.pack_start (_hbox, false, false, false);
|
|
|
|
io = manage (new IOSelector (parent, session, r->output()));
|
|
|
|
pack_start (_vbox, false, false);
|
|
|
|
pack_start (*io, true, true);
|
|
|
|
show_all ();
|
|
|
|
_return->set_metering (true);
|
|
_return->input()->changed.connect (input_change_connection, invalidator (*this), boost::bind (&ReturnUI::ins_changed, this, _1, _2), gui_context());
|
|
|
|
_gpm.setup_meters ();
|
|
_gpm.set_fader_name ("ReturnUIFrame");
|
|
|
|
// screen_update_connection = ARDOUR_UI::instance()->RapidScreenUpdate.connect (sigc::mem_fun (*this, &ReturnUI::update));
|
|
fast_screen_update_connection = ARDOUR_UI::instance()->SuperRapidScreenUpdate.connect (sigc::mem_fun (*this, &ReturnUI::fast_update));
|
|
}
|
|
|
|
ReturnUI::~ReturnUI ()
|
|
{
|
|
_return->set_metering (false);
|
|
|
|
/* XXX not clear that we need to do this */
|
|
|
|
screen_update_connection.disconnect();
|
|
fast_screen_update_connection.disconnect();
|
|
}
|
|
|
|
void
|
|
ReturnUI::ins_changed (IOChange change, void* /*ignored*/)
|
|
{
|
|
ENSURE_GUI_THREAD (*this, &ReturnUI::ins_changed, change, ignored)
|
|
if (change.type & IOChange::ConfigurationChanged) {
|
|
_gpm.setup_meters ();
|
|
}
|
|
}
|
|
|
|
void
|
|
ReturnUI::update ()
|
|
{
|
|
}
|
|
|
|
void
|
|
ReturnUI::fast_update ()
|
|
{
|
|
if (Config->get_meter_falloff() > 0.0f) {
|
|
_gpm.update_meters ();
|
|
}
|
|
}
|
|
|
|
ReturnUIWindow::ReturnUIWindow (boost::shared_ptr<Return> r, ARDOUR::Session* s)
|
|
: ArdourWindow (string(_("Return ")) + r->name())
|
|
{
|
|
ui = new ReturnUI (this, r, s);
|
|
|
|
hpacker.pack_start (*ui, true, true);
|
|
|
|
add (hpacker);
|
|
|
|
set_name ("ReturnUIWindow");
|
|
|
|
r->DropReferences.connect (going_away_connection, invalidator (*this), boost::bind (&ReturnUIWindow::return_going_away, this), gui_context());
|
|
signal_delete_event().connect (sigc::bind (sigc::ptr_fun (just_hide_it), reinterpret_cast<Window *> (this)));
|
|
}
|
|
|
|
ReturnUIWindow::~ReturnUIWindow ()
|
|
{
|
|
delete ui;
|
|
}
|
|
|
|
void
|
|
ReturnUIWindow::return_going_away ()
|
|
{
|
|
ENSURE_GUI_THREAD (*this, &ReturnUIWindow::return_going_away)
|
|
going_away_connection.disconnect ();
|
|
delete_when_idle (this);
|
|
}
|
|
|