'gtk2_ardour' - Add namespaces + casting where necessary + general bits of 'correctne...
[ardour.git] / gtk2_ardour / send_ui.cc
1 /*
2     Copyright (C) 2002 Paul Davis
3
4     This program is free software; you can redistribute it and/or modify
5     it under the terms of the GNU General Public License as published by
6     the Free Software Foundation; either version 2 of the License, or
7     (at your option) any later version.
8
9     This program is distributed in the hope that it will be useful,
10     but WITHOUT ANY WARRANTY; without even the implied warranty of
11     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12     GNU General Public License for more details.
13
14     You should have received a copy of the GNU General Public License
15     along with this program; if not, write to the Free Software
16     Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
17
18 */
19
20 #include <gtkmm2ext/doi.h>
21
22 #include "ardour/io.h"
23 #include "ardour/send.h"
24 #include "ardour/rc_configuration.h"
25
26 #include "utils.h"
27 #include "send_ui.h"
28 #include "io_selector.h"
29 #include "ardour_ui.h"
30 #include "gui_thread.h"
31
32 #include "i18n.h"
33
34 using namespace std;
35 using namespace ARDOUR;
36 using namespace PBD;
37
38 SendUI::SendUI (Gtk::Window* parent, boost::shared_ptr<Send> s, Session* session)
39         : _send (s)
40         , _gpm (session, 250)
41         , _panners (session)
42 {
43         assert (_send);
44
45         _panners.set_panner (s->panner_shell(), s->panner());
46         _gpm.set_controls (boost::shared_ptr<Route>(), s->meter(), s->amp());
47
48         _hbox.pack_start (_gpm, true, true);
49         set_name ("SendUIFrame");
50
51         _vbox.set_spacing (5);
52         _vbox.set_border_width (5);
53
54         _vbox.pack_start (_hbox, false, false, false);
55         // until sends have their own Pannable, don't show this
56         // because it controls the Route Pannable which confuses
57         // users (among others)
58         // _vbox.pack_start (_panners, false, false);
59
60         io = Gtk::manage (new IOSelector (parent, session, s->output()));
61
62         pack_start (_vbox, false, false);
63
64         pack_start (*io, true, true);
65
66         io->show ();
67         _gpm.show_all ();
68         _panners.show_all ();
69         _vbox.show ();
70         _hbox.show ();
71
72         _send->set_metering (true);
73
74         _send->output()->changed.connect (connections, invalidator (*this), boost::bind (&SendUI::outs_changed, this, _1, _2), gui_context());
75
76         _panners.set_width (Wide);
77         _panners.setup_pan ();
78
79         _gpm.setup_meters ();
80         _gpm.set_fader_name ("SendUIFrame");
81
82         // screen_update_connection = ARDOUR_UI::instance()->RapidScreenUpdate.connect (
83         //              sigc::mem_fun (*this, &SendUI::update));
84         fast_screen_update_connection = ARDOUR_UI::instance()->SuperRapidScreenUpdate.connect (
85                         sigc::mem_fun (*this, &SendUI::fast_update));
86 }
87
88 SendUI::~SendUI ()
89 {
90         _send->set_metering (false);
91
92         /* XXX not clear that we need to do this */
93
94         screen_update_connection.disconnect();
95         fast_screen_update_connection.disconnect();
96 }
97
98 void
99 SendUI::outs_changed (IOChange change, void* /*ignored*/)
100 {
101         ENSURE_GUI_THREAD (*this, &SendUI::outs_changed, change, ignored)
102         if (change.type & IOChange::ConfigurationChanged) {
103                 _panners.setup_pan ();
104                 _gpm.setup_meters ();
105         }
106 }
107
108 void
109 SendUI::update ()
110 {
111 }
112
113 void
114 SendUI::fast_update ()
115 {
116         if (!is_mapped()) {
117                 return;
118         }
119
120         if (Config->get_meter_falloff() > 0.0f) {
121                 _gpm.update_meters ();
122         }
123 }
124
125 SendUIWindow::SendUIWindow (boost::shared_ptr<Send> s, Session* session)
126         : ArdourWindow (string (_("Send ")) + s->name())
127 {
128         ui = new SendUI (this, s, session);
129
130         hpacker.pack_start (*ui, true, true);
131
132         add (hpacker);
133
134         set_name ("SendUIWindow");
135
136         ui->show ();
137         hpacker.show ();
138
139         s->DropReferences.connect (going_away_connection, invalidator (*this), boost::bind (&SendUIWindow::send_going_away, this), gui_context());
140 }
141
142 SendUIWindow::~SendUIWindow ()
143 {
144         delete ui;
145 }
146
147 void
148 SendUIWindow::send_going_away ()
149 {
150         ENSURE_GUI_THREAD (*this, &SendUIWindow::send_going_away)
151         going_away_connection.disconnect ();
152         delete_when_idle (this);
153 }
154