2005-09-25 14:42:24 -04:00
|
|
|
/*
|
2019-08-02 17:26:43 -04:00
|
|
|
* Copyright (C) 2005 Taybin Rutkin <taybin@taybin.com>
|
|
|
|
* Copyright (C) 2006-2009 Paul Davis <paul@linuxaudiosystems.com>
|
|
|
|
* Copyright (C) 2007-2011 David Robillard <d@drobilla.net>
|
|
|
|
* Copyright (C) 2009-2011 Carl Hetherington <carl@carlh.net>
|
|
|
|
*
|
|
|
|
* 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.
|
|
|
|
*/
|
2005-09-25 14:42:24 -04:00
|
|
|
|
|
|
|
#ifndef __ardour_gtk_send_ui_h__
|
|
|
|
#define __ardour_gtk_send_ui_h__
|
|
|
|
|
|
|
|
#include "gain_meter.h"
|
|
|
|
#include "panner_ui.h"
|
2011-11-18 19:56:35 -05:00
|
|
|
#include "ardour_window.h"
|
2005-09-25 14:42:24 -04:00
|
|
|
|
|
|
|
namespace ARDOUR {
|
|
|
|
class Send;
|
2007-06-27 16:23:48 -04:00
|
|
|
class IOProcessor;
|
2005-09-25 14:42:24 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
class IOSelector;
|
|
|
|
|
|
|
|
class SendUI : public Gtk::HBox
|
|
|
|
{
|
|
|
|
public:
|
2009-12-17 13:24:23 -05:00
|
|
|
SendUI (Gtk::Window *, boost::shared_ptr<ARDOUR::Send>, ARDOUR::Session*);
|
2005-09-25 14:42:24 -04:00
|
|
|
~SendUI();
|
|
|
|
|
|
|
|
void update ();
|
|
|
|
void fast_update ();
|
|
|
|
|
2008-09-10 11:03:30 -04:00
|
|
|
boost::shared_ptr<ARDOUR::Send>& send() { return _send; }
|
|
|
|
|
2005-09-25 14:42:24 -04:00
|
|
|
private:
|
2006-07-27 12:52:14 -04:00
|
|
|
boost::shared_ptr<ARDOUR::Send> _send;
|
2009-05-07 13:31:18 -04:00
|
|
|
GainMeter _gpm;
|
|
|
|
PannerUI _panners;
|
|
|
|
Gtk::VBox _vbox;
|
|
|
|
Gtk::VBox _hbox;
|
2019-09-29 15:03:27 -04:00
|
|
|
IOSelector* _io;
|
2005-09-25 14:42:24 -04:00
|
|
|
|
2005-09-25 16:33:00 -04:00
|
|
|
sigc::connection screen_update_connection;
|
|
|
|
sigc::connection fast_screen_update_connection;
|
2009-10-14 12:10:01 -04:00
|
|
|
|
2005-09-25 14:42:24 -04:00
|
|
|
void outs_changed (ARDOUR::IOChange, void*);
|
2009-12-19 15:26:31 -05:00
|
|
|
PBD::ScopedConnectionList connections;
|
2005-09-25 14:42:24 -04:00
|
|
|
};
|
|
|
|
|
2011-11-18 19:56:35 -05:00
|
|
|
class SendUIWindow : public ArdourWindow
|
2005-09-25 14:42:24 -04:00
|
|
|
{
|
|
|
|
public:
|
2009-12-17 13:24:23 -05:00
|
|
|
SendUIWindow(boost::shared_ptr<ARDOUR::Send>, ARDOUR::Session*);
|
2005-09-25 14:42:24 -04:00
|
|
|
~SendUIWindow();
|
|
|
|
|
2009-05-07 13:31:18 -04:00
|
|
|
SendUI* ui;
|
2005-09-25 14:42:24 -04:00
|
|
|
|
|
|
|
private:
|
|
|
|
Gtk::HBox hpacker;
|
|
|
|
|
2009-12-21 13:23:07 -05:00
|
|
|
PBD::ScopedConnection going_away_connection;
|
2005-09-25 14:42:24 -04:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif /* __ardour_gtk_send_ui_h__ */
|
|
|
|
|
|
|
|
|