X-Git-Url: https://main.carlh.net/gitweb/?a=blobdiff_plain;f=gtk2_ardour%2Fsend_ui.h;h=0d6356970e78309f9bc1624d46fc555d2d19fbdf;hb=deb2033a346d5a4638b9ee4e8eba66cd1b9a54e4;hp=744469b3c931461921a598f8b467e9cb8ccc07ea;hpb=209d967b1bb80a9735d690d8f4f0455ecb9970ca;p=ardour.git diff --git a/gtk2_ardour/send_ui.h b/gtk2_ardour/send_ui.h index 744469b3c9..0d6356970e 100644 --- a/gtk2_ardour/send_ui.h +++ b/gtk2_ardour/send_ui.h @@ -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,12 @@ #include "gain_meter.h" #include "panner_ui.h" +#include "ardour_dialog.h" namespace ARDOUR { class Send; class Session; - class Redirect; + class IOProcessor; } class IOSelector; @@ -35,7 +35,7 @@ class IOSelector; class SendUI : public Gtk::HBox { public: - SendUI (ARDOUR::Send&, ARDOUR::Session&); + SendUI (boost::shared_ptr, ARDOUR::Session&); ~SendUI(); void update (); @@ -43,35 +43,36 @@ class SendUI : public Gtk::HBox IOSelector* io; + boost::shared_ptr& send() { return _send; } + private: - ARDOUR::Send& _send; + boost::shared_ptr _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; + sigc::connection screen_update_connection; + sigc::connection fast_screen_update_connection; - void send_going_away (ARDOUR::Redirect*); void ins_changed (ARDOUR::IOChange, void*); void outs_changed (ARDOUR::IOChange, void*); }; -class SendUIWindow : public Gtk::Window +class SendUIWindow : public ArdourDialog { public: - SendUIWindow(ARDOUR::Send&, ARDOUR::Session&); + SendUIWindow(boost::shared_ptr, ARDOUR::Session&); ~SendUIWindow(); SendUI* ui; private: - Gtk::VBox vpacker; Gtk::HBox hpacker; - void send_going_away (ARDOUR::Redirect*); + void send_going_away (); + sigc::connection going_away_connection; }; #endif /* __ardour_gtk_send_ui_h__ */