Merge branch 'master' into saveas
[ardour.git] / gtk2_ardour / panner_ui.cc
1 /*
2   Copyright (C) 2004 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 #include <limits.h>
20
21 #include <gtkmm2ext/utils.h>
22
23 #include "pbd/fastlog.h"
24
25 #include "ardour/pannable.h"
26 #include "ardour/panner.h"
27 #include "ardour/panner_shell.h"
28 #include "ardour/session.h"
29
30 #include "ardour_ui.h"
31 #include "panner_ui.h"
32 #include "panner2d.h"
33 #include "gui_thread.h"
34 #include "stereo_panner.h"
35 #include "timers.h"
36 #include "mono_panner.h"
37
38 #include "i18n.h"
39
40 using namespace std;
41 using namespace ARDOUR;
42 using namespace PBD;
43 using namespace Gtkmm2ext;
44 using namespace Gtk;
45
46 const int PannerUI::pan_bar_height = 35;
47
48 PannerUI::PannerUI (Session* s)
49         : _current_nouts (-1)
50         , _current_nins (-1)
51         , _current_uri ("")
52         , _send_mode (false)
53         , pan_automation_style_button ("")
54         , pan_automation_state_button ("")
55         , _panner_list()
56 {
57         set_session (s);
58
59         ignore_toggle = false;
60         pan_menu = 0;
61         pan_astate_menu = 0;
62         pan_astyle_menu = 0;
63         in_pan_update = false;
64         _stereo_panner = 0;
65         _mono_panner = 0;
66         _ignore_width_change = false;
67         _ignore_position_change = false;
68
69         pan_automation_style_button.set_name ("MixerAutomationModeButton");
70         pan_automation_state_button.set_name ("MixerAutomationPlaybackButton");
71
72         ARDOUR_UI::instance()->set_tip (pan_automation_state_button, _("Pan automation mode"));
73         ARDOUR_UI::instance()->set_tip (pan_automation_style_button, _("Pan automation type"));
74
75         //set_size_request_to_display_given_text (pan_automation_state_button, X_("O"), 2, 2);
76         //set_size_request_to_display_given_text (pan_automation_style_button, X_("0"), 2, 2);
77
78         pan_automation_style_button.unset_flags (Gtk::CAN_FOCUS);
79         pan_automation_state_button.unset_flags (Gtk::CAN_FOCUS);
80
81         pan_automation_style_button.signal_button_press_event().connect (sigc::mem_fun(*this, &PannerUI::pan_automation_style_button_event), false);
82         pan_automation_state_button.signal_button_press_event().connect (sigc::mem_fun(*this, &PannerUI::pan_automation_state_button_event), false);
83
84         pan_vbox.set_spacing (2);
85         pack_start (pan_vbox, true, true);
86
87         twod_panner = 0;
88         big_window = 0;
89
90         set_width(Narrow);
91 }
92
93 void
94 PannerUI::set_panner (boost::shared_ptr<PannerShell> ps, boost::shared_ptr<Panner> p)
95 {
96         /* note that the panshell might not change here (i.e. ps == _panshell)
97          */
98
99         connections.drop_connections ();
100
101         delete pan_astyle_menu;
102         pan_astyle_menu = 0;
103
104         delete pan_astate_menu;
105         pan_astate_menu = 0;
106
107         _panshell = ps;
108         _panner = p;
109
110         delete twod_panner;
111         twod_panner = 0;
112
113         delete _stereo_panner;
114         _stereo_panner = 0;
115
116         delete _mono_panner;
117         _mono_panner = 0;
118
119         if (!_panner) {
120                 return;
121         }
122
123         _panshell->Changed.connect (connections, invalidator (*this), boost::bind (&PannerUI::panshell_changed, this), gui_context());
124
125         /* new panner object, force complete reset of panner GUI
126          */
127
128         _current_nouts = 0;
129         _current_nins = 0;
130
131         setup_pan ();
132         update_pan_sensitive ();
133         pan_automation_state_changed ();
134 }
135
136 void
137 PannerUI::build_astate_menu ()
138 {
139         using namespace Menu_Helpers;
140
141         if (pan_astate_menu == 0) {
142                 pan_astate_menu = new Menu;
143                 pan_astate_menu->set_name ("ArdourContextMenu");
144         } else {
145                 pan_astate_menu->items().clear ();
146         }
147
148         /** TRANSLATORS: this is `Manual' in the sense of automation not being played,
149             so that changes to pan must be done by hand.
150         */
151         pan_astate_menu->items().push_back (MenuElem (S_("Automation|Manual"), sigc::bind (
152                         sigc::mem_fun (_panner.get(), &Panner::set_automation_state),
153                         (AutoState) ARDOUR::Off)));
154         pan_astate_menu->items().push_back (MenuElem (_("Play"), sigc::bind (
155                         sigc::mem_fun (_panner.get(), &Panner::set_automation_state),
156                         (AutoState) Play)));
157         pan_astate_menu->items().push_back (MenuElem (_("Write"), sigc::bind (
158                         sigc::mem_fun (_panner.get(), &Panner::set_automation_state),
159                         (AutoState) Write)));
160         pan_astate_menu->items().push_back (MenuElem (_("Touch"), sigc::bind (
161                         sigc::mem_fun (_panner.get(), &Panner::set_automation_state),
162                         (AutoState) Touch)));
163
164 }
165
166 void
167 PannerUI::build_astyle_menu ()
168 {
169         using namespace Menu_Helpers;
170
171         if (pan_astyle_menu == 0) {
172                 pan_astyle_menu = new Menu;
173                 pan_astyle_menu->set_name ("ArdourContextMenu");
174         } else {
175                 pan_astyle_menu->items().clear();
176         }
177
178         pan_astyle_menu->items().push_back (MenuElem (_("Trim")));
179         pan_astyle_menu->items().push_back (MenuElem (_("Abs")));
180 }
181
182 void
183 PannerUI::on_size_allocate (Allocation& a)
184 {
185         HBox::on_size_allocate (a);
186 }
187
188 void
189 PannerUI::set_width (Width w)
190 {
191         _width = w;
192 }
193
194 PannerUI::~PannerUI ()
195 {
196         delete twod_panner;
197         delete big_window;
198         delete pan_menu;
199         delete pan_astyle_menu;
200         delete pan_astate_menu;
201         delete _stereo_panner;
202         delete _mono_panner;
203 }
204
205 void
206 PannerUI::panshell_changed ()
207 {
208         set_panner (_panshell, _panshell->panner());
209         setup_pan ();
210 }
211
212 void
213 PannerUI::setup_pan ()
214 {
215         int const nouts = _panner ? _panner->out().n_audio() : -1;
216         int const nins = _panner ? _panner->in().n_audio() : -1;
217
218         if (nouts == _current_nouts
219                         && nins == _current_nins
220                         && _current_uri == _panshell->panner_gui_uri()
221                         )
222         {
223                 return;
224         }
225
226         _current_nins = nins;
227         _current_nouts = nouts;
228         _current_uri = _panshell->panner_gui_uri();
229
230         container_clear (pan_vbox);
231
232         delete twod_panner;
233         twod_panner = 0;
234         delete _stereo_panner;
235         _stereo_panner = 0;
236         delete _mono_panner;
237         _mono_panner = 0;
238
239         if (!_panner) {
240                 delete big_window;
241                 big_window = 0;
242                 return;
243         }
244
245         if (_current_uri == "http://ardour.org/plugin/panner_2in2out#ui")
246         {
247                 delete big_window;
248                 big_window = 0;
249
250                 boost::shared_ptr<Pannable> pannable = _panner->pannable();
251
252                 _stereo_panner = new StereoPanner (_panshell);
253                 _stereo_panner->set_size_request (-1, pan_bar_height);
254                 _stereo_panner->set_send_drawing_mode (_send_mode);
255                 pan_vbox.pack_start (*_stereo_panner, false, false);
256
257                 boost::shared_ptr<AutomationControl> ac;
258
259                 ac = pannable->pan_azimuth_control;
260                 _stereo_panner->StartPositionGesture.connect (sigc::bind (sigc::mem_fun (*this, &PannerUI::start_touch),
261                                         boost::weak_ptr<AutomationControl> (ac)));
262                 _stereo_panner->StopPositionGesture.connect (sigc::bind (sigc::mem_fun (*this, &PannerUI::stop_touch),
263                                         boost::weak_ptr<AutomationControl>(ac)));
264
265                 ac = pannable->pan_width_control;
266                 _stereo_panner->StartWidthGesture.connect (sigc::bind (sigc::mem_fun (*this, &PannerUI::start_touch),
267                                         boost::weak_ptr<AutomationControl> (ac)));
268                 _stereo_panner->StopWidthGesture.connect (sigc::bind (sigc::mem_fun (*this, &PannerUI::stop_touch),
269                                         boost::weak_ptr<AutomationControl>(ac)));
270                 _stereo_panner->signal_button_release_event().connect (sigc::mem_fun(*this, &PannerUI::pan_button_event));
271         }
272         else if (_current_uri == "http://ardour.org/plugin/panner_1in2out#ui"
273                         || _current_uri == "http://ardour.org/plugin/panner_balance#ui")
274         {
275                 delete big_window;
276                 big_window = 0;
277                 boost::shared_ptr<Pannable> pannable = _panner->pannable();
278                 boost::shared_ptr<AutomationControl> ac = pannable->pan_azimuth_control;
279
280                 _mono_panner = new MonoPanner (_panshell);
281
282                 _mono_panner->StartGesture.connect (sigc::bind (sigc::mem_fun (*this, &PannerUI::start_touch),
283                                         boost::weak_ptr<AutomationControl> (ac)));
284                 _mono_panner->StopGesture.connect (sigc::bind (sigc::mem_fun (*this, &PannerUI::stop_touch),
285                                         boost::weak_ptr<AutomationControl>(ac)));
286
287                 _mono_panner->signal_button_release_event().connect (sigc::mem_fun(*this, &PannerUI::pan_button_event));
288
289                 _mono_panner->set_size_request (-1, pan_bar_height);
290                 _mono_panner->set_send_drawing_mode (_send_mode);
291
292                 update_pan_sensitive ();
293                 pan_vbox.pack_start (*_mono_panner, false, false);
294         }
295         else if (_current_uri == "http://ardour.org/plugin/panner_vbap#ui")
296         {
297                 if (!twod_panner) {
298                         twod_panner = new Panner2d (_panshell, 61);
299                         twod_panner->set_name ("MixerPanZone");
300                         twod_panner->show ();
301                         twod_panner->signal_button_press_event().connect (sigc::mem_fun(*this, &PannerUI::pan_button_event), false);
302                 }
303
304                 update_pan_sensitive ();
305                 twod_panner->reset (nins);
306                 if (big_window) {
307                         big_window->reset (nins);
308                 }
309                 twod_panner->set_size_request (-1, 61);
310                 twod_panner->set_send_drawing_mode (_send_mode);
311
312                 /* and finally, add it to the panner frame */
313
314                 pan_vbox.pack_start (*twod_panner, false, false);
315         }
316         else
317         {
318                 /* stick something into the panning viewport so that it redraws */
319                 EventBox* eb = manage (new EventBox());
320                 pan_vbox.pack_start (*eb, false, false);
321
322                 delete big_window;
323                 big_window = 0;
324         }
325
326         pan_vbox.show_all ();
327 }
328
329 void
330 PannerUI::set_send_drawing_mode (bool onoff)
331 {
332         if (_stereo_panner) {
333                 _stereo_panner->set_send_drawing_mode (onoff);
334         } else if (_mono_panner) {
335                 _mono_panner->set_send_drawing_mode (onoff);
336         } else if (twod_panner) {
337                 twod_panner->set_send_drawing_mode (onoff);
338         }
339         _send_mode = onoff;
340 }
341
342 void
343 PannerUI::start_touch (boost::weak_ptr<AutomationControl> wac)
344 {
345         boost::shared_ptr<AutomationControl> ac = wac.lock();
346         if (!ac) {
347                 return;
348         }
349         ac->start_touch (ac->session().transport_frame());
350 }
351
352 void
353 PannerUI::stop_touch (boost::weak_ptr<AutomationControl> wac)
354 {
355         boost::shared_ptr<AutomationControl> ac = wac.lock();
356         if (!ac) {
357                 return;
358         }
359         ac->stop_touch (false, ac->session().transport_frame());
360 }
361
362 bool
363 PannerUI::pan_button_event (GdkEventButton* ev)
364 {
365         switch (ev->button) {
366         case 1:
367                 if (twod_panner && ev->type == GDK_2BUTTON_PRESS) {
368                         if (!big_window) {
369                                 big_window = new Panner2dWindow (_panshell, 400, _panner->in().n_audio());
370                         }
371                         big_window->show ();
372                         return true;
373                 }
374                 break;
375
376         case 3:
377                 if (pan_menu == 0) {
378                         pan_menu = manage (new Menu);
379                         pan_menu->set_name ("ArdourContextMenu");
380                 }
381                 build_pan_menu ();
382                 pan_menu->popup (1, ev->time);
383                 return true;
384                 break;
385         default:
386                 return false;
387         }
388
389         return false; // what's wrong with gcc?
390 }
391
392 void
393 PannerUI::build_pan_menu ()
394 {
395         using namespace Menu_Helpers;
396         MenuList& items (pan_menu->items());
397
398         items.clear ();
399
400         items.push_back (CheckMenuElem (_("Bypass"), sigc::mem_fun(*this, &PannerUI::pan_bypass_toggle)));
401         bypass_menu_item = static_cast<Gtk::CheckMenuItem*> (&items.back());
402
403         /* set state first, connect second */
404
405         bypass_menu_item->set_active (_panshell->bypassed());
406         bypass_menu_item->signal_toggled().connect (sigc::mem_fun(*this, &PannerUI::pan_bypass_toggle));
407
408         if (!_panshell->bypassed()) {
409                 items.push_back (MenuElem (_("Reset"), sigc::mem_fun (*this, &PannerUI::pan_reset)));
410                 items.push_back (MenuElem (_("Edit..."), sigc::mem_fun (*this, &PannerUI::pan_edit)));
411         }
412
413         if (_panner_list.size() > 1 && !_panshell->bypassed()) {
414                 RadioMenuItem::Group group;
415                 items.push_back (SeparatorElem());
416
417                 _suspend_menu_callbacks = true;
418                 for (std::map<std::string,std::string>::const_iterator p = _panner_list.begin(); p != _panner_list.end(); ++p) {
419                         items.push_back (RadioMenuElem (group, p->second,
420                                                 sigc::bind(sigc::mem_fun (*this, &PannerUI::pan_set_custom_type), p->first)));
421                         RadioMenuItem* i = dynamic_cast<RadioMenuItem *> (&items.back ());
422                         i->set_active (_panshell->current_panner_uri() == p->first);
423                 }
424                 _suspend_menu_callbacks = false;
425         }
426 }
427
428 void
429 PannerUI::pan_bypass_toggle ()
430 {
431         if (bypass_menu_item && (_panshell->bypassed() != bypass_menu_item->get_active())) {
432                 _panshell->set_bypassed (!_panshell->bypassed());
433         }
434 }
435
436 void
437 PannerUI::pan_edit ()
438 {
439         if (_panshell->bypassed()) {
440                 return;
441         }
442         if (_mono_panner) {
443                 _mono_panner->edit ();
444         } else if (_stereo_panner) {
445                 _stereo_panner->edit ();
446         } else if (twod_panner) {
447                 if (!big_window) {
448                         big_window = new Panner2dWindow (_panshell, 400, _panner->in().n_audio());
449                 }
450                 big_window->show ();
451         }
452 }
453
454 void
455 PannerUI::pan_reset ()
456 {
457         if (_panshell->bypassed()) {
458                 return;
459         }
460         _panner->reset ();
461 }
462
463 void
464 PannerUI::pan_set_custom_type (std::string uri) {
465         if (_suspend_menu_callbacks) return;
466         _panshell->select_panner_by_uri(uri);
467 }
468
469 void
470 PannerUI::effective_pan_display ()
471 {
472         if (_stereo_panner) {
473                 _stereo_panner->queue_draw ();
474         } else if (_mono_panner) {
475                 _mono_panner->queue_draw ();
476         } else if (twod_panner) {
477                 twod_panner->queue_draw ();
478         }
479 }
480
481 void
482 PannerUI::update_pan_sensitive ()
483 {
484         bool const sensitive = !(_panner->pannable()->automation_state() & Play);
485
486         pan_vbox.set_sensitive (sensitive);
487
488         if (big_window) {
489                 big_window->set_sensitive (sensitive);
490         }
491 }
492
493 gint
494 PannerUI::pan_automation_state_button_event (GdkEventButton *ev)
495 {
496         using namespace Menu_Helpers;
497
498         if (ev->type == GDK_BUTTON_RELEASE) {
499                 return TRUE;
500         }
501
502         switch (ev->button) {
503         case 1:
504                 if (pan_astate_menu == 0) {
505                         build_astate_menu ();
506                 }
507                 pan_astate_menu->popup (1, ev->time);
508                 break;
509         default:
510                 break;
511         }
512
513         return TRUE;
514 }
515
516 gint
517 PannerUI::pan_automation_style_button_event (GdkEventButton *ev)
518 {
519         if (ev->type == GDK_BUTTON_RELEASE) {
520                 return TRUE;
521         }
522
523         switch (ev->button) {
524         case 1:
525                 if (pan_astyle_menu == 0) {
526                         build_astyle_menu ();
527                 }
528                 pan_astyle_menu->popup (1, ev->time);
529                 break;
530         default:
531                 break;
532         }
533         return TRUE;
534 }
535
536 void
537 PannerUI::pan_automation_style_changed ()
538 {
539         ENSURE_GUI_THREAD (*this, &PannerUI::pan_automation_style_changed)
540
541         switch (_width) {
542         case Wide:
543                 pan_automation_style_button.set_label (astyle_string(_panner->automation_style()));
544                 break;
545         case Narrow:
546                 pan_automation_style_button.set_label (short_astyle_string(_panner->automation_style()));
547                 break;
548         }
549 }
550
551 void
552 PannerUI::pan_automation_state_changed ()
553 {
554         boost::shared_ptr<Pannable> pannable (_panner->pannable());
555
556         switch (_width) {
557         case Wide:
558                 pan_automation_state_button.set_label (astate_string(pannable->automation_state()));
559                 break;
560         case Narrow:
561                 pan_automation_state_button.set_label (short_astate_string(pannable->automation_state()));
562                 break;
563         }
564
565         bool x = (pannable->automation_state() != ARDOUR::Off);
566
567         if (pan_automation_state_button.get_active() != x) {
568                 ignore_toggle = true;
569                 pan_automation_state_button.set_active (x);
570                 ignore_toggle = false;
571         }
572
573         update_pan_sensitive ();
574
575         /* start watching automation so that things move */
576
577         pan_watching.disconnect();
578
579         if (x) {
580                 pan_watching = Timers::rapid_connect (sigc::mem_fun (*this, &PannerUI::effective_pan_display));
581         }
582 }
583
584 string
585 PannerUI::astate_string (AutoState state)
586 {
587         return _astate_string (state, false);
588 }
589
590 string
591 PannerUI::short_astate_string (AutoState state)
592 {
593         return _astate_string (state, true);
594 }
595
596 string
597 PannerUI::_astate_string (AutoState state, bool shrt)
598 {
599         string sstr;
600
601         switch (state) {
602         case ARDOUR::Off:
603                 sstr = (shrt ? "M" : S_("Manual|M"));
604                 break;
605         case Play:
606                 sstr = (shrt ? "P" : S_("Play|P"));
607                 break;
608         case Touch:
609                 sstr = (shrt ? "T" : S_("Touch|T"));
610                 break;
611         case Write:
612                 sstr = (shrt ? "W" : S_("Write|W"));
613                 break;
614         }
615
616         return sstr;
617 }
618
619 string
620 PannerUI::astyle_string (AutoStyle style)
621 {
622         return _astyle_string (style, false);
623 }
624
625 string
626 PannerUI::short_astyle_string (AutoStyle style)
627 {
628         return _astyle_string (style, true);
629 }
630
631 string
632 PannerUI::_astyle_string (AutoStyle style, bool shrt)
633 {
634         if (style & Trim) {
635                 return _("Trim");
636         } else {
637                 /* XXX it might different in different languages */
638
639                 return (shrt ? _("Abs") : _("Abs"));
640         }
641 }
642
643 void
644 PannerUI::show_width ()
645 {
646 }
647
648 void
649 PannerUI::width_adjusted ()
650 {
651 }
652
653 void
654 PannerUI::show_position ()
655 {
656 }
657
658 void
659 PannerUI::position_adjusted ()
660 {
661 }
662
663 void
664 PannerUI::set_available_panners(std::map<std::string,std::string> p)
665 {
666         _panner_list = p;
667 }