X-Git-Url: https://main.carlh.net/gitweb/?a=blobdiff_plain;f=gtk2_ardour%2Fsend_ui.h;h=731f079790450a768f3360d95e1d3208809b1764;hb=9971e718fed4a1126d97bad69f2608638d5a5464;hp=744469b3c931461921a598f8b467e9cb8ccc07ea;hpb=209d967b1bb80a9735d690d8f4f0455ecb9970ca;p=ardour.git diff --git a/gtk2_ardour/send_ui.h b/gtk2_ardour/send_ui.h index 744469b3c9..731f079790 100644 --- a/gtk2_ardour/send_ui.h +++ b/gtk2_ardour/send_ui.h @@ -1,5 +1,5 @@ /* - Copyright (C) 2002 Paul Davis + 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 @@ -15,7 +15,6 @@ along with this program; if not, write to the Free Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. - $Id$ */ #ifndef __ardour_gtk_send_ui_h__ @@ -23,11 +22,11 @@ #include "gain_meter.h" #include "panner_ui.h" +#include "ardour_window.h" namespace ARDOUR { class Send; - class Session; - class Redirect; + class IOProcessor; } class IOSelector; @@ -35,7 +34,7 @@ class IOSelector; class SendUI : public Gtk::HBox { public: - SendUI (ARDOUR::Send&, ARDOUR::Session&); + SendUI (Gtk::Window *, boost::shared_ptr, ARDOUR::Session*); ~SendUI(); void update (); @@ -43,35 +42,34 @@ class SendUI : public Gtk::HBox IOSelector* io; + boost::shared_ptr& send() { return _send; } + private: - ARDOUR::Send& _send; - ARDOUR::Session& _session; - GainMeter gpm; - PannerUI panners; - Gtk::VBox vbox; - Gtk::VBox hbox; - - SigC::Connection screen_update_connection; - SigC::Connection fast_screen_update_connection; - - void send_going_away (ARDOUR::Redirect*); - void ins_changed (ARDOUR::IOChange, void*); + boost::shared_ptr _send; + GainMeter _gpm; + PannerUI _panners; + Gtk::VBox _vbox; + Gtk::VBox _hbox; + + sigc::connection screen_update_connection; + sigc::connection fast_screen_update_connection; + void outs_changed (ARDOUR::IOChange, void*); + PBD::ScopedConnectionList connections; }; -class SendUIWindow : public Gtk::Window +class SendUIWindow : public ArdourWindow { public: - SendUIWindow(ARDOUR::Send&, ARDOUR::Session&); + SendUIWindow(boost::shared_ptr, ARDOUR::Session*); ~SendUIWindow(); - SendUI* ui; + SendUI* ui; private: - Gtk::VBox vpacker; Gtk::HBox hpacker; - void send_going_away (ARDOUR::Redirect*); + PBD::ScopedConnection going_away_connection; }; #endif /* __ardour_gtk_send_ui_h__ */