X-Git-Url: https://main.carlh.net/gitweb/?a=blobdiff_plain;f=gtk2_ardour%2Fsend_ui.h;h=171b9137026b20ab12aa307252ec7834e665ecea;hb=a1e0dc13df3cdc7033c940f0f3311a2bd47d3b2e;hp=2d041bb4fe82a2184d28c97e9f81339dcf4ab0df;hpb=6edccc3070b813157ffcd4014ec8dd7fa6ed9ce7;p=ardour.git diff --git a/gtk2_ardour/send_ui.h b/gtk2_ardour/send_ui.h index 2d041bb4fe..171b913702 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 @@ -22,11 +22,11 @@ #include "gain_meter.h" #include "panner_ui.h" +#include "ardour_dialog.h" namespace ARDOUR { class Send; - class Session; - class Redirect; + class IOProcessor; } class IOSelector; @@ -34,7 +34,7 @@ class IOSelector; class SendUI : public Gtk::HBox { public: - SendUI (boost::shared_ptr, ARDOUR::Session&); + SendUI (Gtk::Window *, boost::shared_ptr, ARDOUR::Session*); ~SendUI(); void update (); @@ -42,34 +42,36 @@ class SendUI : public Gtk::HBox IOSelector* io; + boost::shared_ptr& send() { return _send; } + private: boost::shared_ptr _send; - ARDOUR::Session& _session; - GainMeter gpm; - PannerUI panners; - Gtk::VBox vbox; - Gtk::VBox hbox; + GainMeter _gpm; + PannerUI _panners; + Gtk::VBox _vbox; + Gtk::VBox _hbox; sigc::connection screen_update_connection; sigc::connection fast_screen_update_connection; - + void ins_changed (ARDOUR::IOChange, void*); void outs_changed (ARDOUR::IOChange, void*); + PBD::ScopedConnectionList connections; }; -class SendUIWindow : public Gtk::Window +class SendUIWindow : public ArdourDialog { public: - SendUIWindow(boost::shared_ptr, ARDOUR::Session&); + SendUIWindow(boost::shared_ptr, ARDOUR::Session*); ~SendUIWindow(); - SendUI* ui; + SendUI* ui; private: - Gtk::VBox vpacker; Gtk::HBox hpacker; void send_going_away (); + PBD::ScopedConnection going_away_connection; }; #endif /* __ardour_gtk_send_ui_h__ */