enough with umpteen "i18n.h" files. Consolidate on pbd/i18n.h
[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/panner_manager.h"
24 #include "ardour/send.h"
25 #include "ardour/rc_configuration.h"
26
27 #include "send_ui.h"
28 #include "io_selector.h"
29 #include "timers.h"
30 #include "gui_thread.h"
31
32 #include "pbd/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(), s->gain_control());
47
48         _hbox.pack_start (_gpm, true, true);
49         set_name (X_("SendUIFrame"));
50
51         _vbox.set_spacing (5);
52         _vbox.set_border_width (5);
53
54         _vbox.pack_start (_hbox, false, false, false);
55         _vbox.pack_start (_panners, false, false);
56
57         io = Gtk::manage (new IOSelector (parent, session, s->output()));
58
59         pack_start (_vbox, false, false);
60
61         pack_start (*io, true, true);
62
63         io->show ();
64         _gpm.show_all ();
65         _panners.show_all ();
66         _vbox.show ();
67         _hbox.show ();
68
69         _send->set_metering (true);
70
71         _send->output()->changed.connect (connections, invalidator (*this), boost::bind (&SendUI::outs_changed, this, _1, _2), gui_context());
72
73         uint32_t const in = _send->pans_required();
74         uint32_t const out = _send->pan_outs();
75
76         _panners.set_width (Wide);
77         _panners.set_available_panners(PannerManager::instance().PannerManager::get_available_panners(in, out));
78         _panners.setup_pan ();
79
80         _gpm.setup_meters ();
81         _gpm.set_fader_name (X_("SendUIFader"));
82
83         // screen_update_connection = Timers::rapid_connect (
84         //              sigc::mem_fun (*this, &SendUI::update));
85         fast_screen_update_connection = Timers::super_rapid_connect (
86                         sigc::mem_fun (*this, &SendUI::fast_update));
87 }
88
89 SendUI::~SendUI ()
90 {
91         _send->set_metering (false);
92
93         /* XXX not clear that we need to do this */
94
95         screen_update_connection.disconnect();
96         fast_screen_update_connection.disconnect();
97 }
98
99 void
100 SendUI::outs_changed (IOChange change, void* /*ignored*/)
101 {
102         ENSURE_GUI_THREAD (*this, &SendUI::outs_changed, change, ignored)
103         if (change.type & IOChange::ConfigurationChanged) {
104                 uint32_t const in = _send->pans_required();
105                 uint32_t const out = _send->pan_outs();
106                 if (_panners._panner == 0) {
107                         _panners.set_panner (_send->panner_shell(), _send->panner());
108                 }
109                 _panners.set_available_panners(PannerManager::instance().PannerManager::get_available_panners(in, out));
110                 _panners.setup_pan ();
111                 _panners.show_all ();
112                 _gpm.setup_meters ();
113         }
114 }
115
116 void
117 SendUI::update ()
118 {
119 }
120
121 void
122 SendUI::fast_update ()
123 {
124         if (!is_mapped()) {
125                 return;
126         }
127
128         if (Config->get_meter_falloff() > 0.0f) {
129                 _gpm.update_meters ();
130         }
131 }
132
133 SendUIWindow::SendUIWindow (boost::shared_ptr<Send> s, Session* session)
134         : ArdourWindow (string (_("Send ")) + s->name())
135 {
136         ui = new SendUI (this, s, session);
137
138         hpacker.pack_start (*ui, true, true);
139
140         add (hpacker);
141
142         set_name ("SendUIWindow");
143
144         ui->show ();
145         hpacker.show ();
146
147 }
148
149 SendUIWindow::~SendUIWindow ()
150 {
151         delete ui;
152 }