goodbye toggle buttons for autoplay, autoinput, click and autoreturn; move nudge...
[ardour.git] / gtk2_ardour / ardour_ui2.cc
1 /*
2     Copyright (C) 1999 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 #ifdef WAF_BUILD
21 #include "gtk2ardour-config.h"
22 #endif
23
24 #include <fcntl.h>
25 #include <signal.h>
26 #include <unistd.h>
27 #include <cerrno>
28 #include <iostream>
29 #include <cmath>
30
31 #include <sigc++/bind.h>
32 #include "pbd/error.h"
33 #include "pbd/basename.h"
34 #include "pbd/fastlog.h"
35 #include <gtkmm2ext/utils.h>
36 #include <gtkmm2ext/click_box.h>
37 #include <gtkmm2ext/tearoff.h>
38
39 #include "ardour/session.h"
40 #include "ardour/audioengine.h"
41 #include "ardour/ardour.h"
42 #include "ardour/profile.h"
43 #include "ardour/route.h"
44
45 #include "ardour_ui.h"
46 #include "keyboard.h"
47 #include "public_editor.h"
48 #include "audio_clock.h"
49 #include "actions.h"
50 #include "utils.h"
51 #include "theme_manager.h"
52 #include "midi_tracer.h"
53 #include "global_port_matrix.h"
54 #include "location_ui.h"
55 #include "rc_option_editor.h"
56
57 #include "i18n.h"
58
59 using namespace std;
60 using namespace ARDOUR;
61 using namespace PBD;
62 using namespace Gtkmm2ext;
63 using namespace Gtk;
64 using namespace Glib;
65
66 int
67 ARDOUR_UI::setup_windows ()
68 {
69         if (create_editor ()) {
70                 error << _("UI: cannot setup editor") << endmsg;
71                 return -1;
72         }
73
74         if (create_mixer ()) {
75                 error << _("UI: cannot setup mixer") << endmsg;
76                 return -1;
77         }
78
79         /* all other dialogs are created conditionally */
80
81         we_have_dependents ();
82
83         theme_manager->signal_unmap().connect (sigc::bind (sigc::ptr_fun(&ActionManager::uncheck_toggleaction), X_("<Actions>/Common/ToggleThemeManager")));
84
85 #ifdef TOP_MENUBAR
86         HBox* status_bar_packer = manage (new HBox);
87         EventBox* status_bar_event_box = manage (new EventBox);
88
89         status_bar_event_box->add (status_bar_label);
90         status_bar_event_box->add_events (Gdk::BUTTON_PRESS_MASK|Gdk::BUTTON_RELEASE_MASK);
91         status_bar_label.set_size_request (300, -1);
92         status_bar_packer->pack_start (*status_bar_event_box, true, true, 6);
93         status_bar_packer->pack_start (error_log_button, false, false);
94
95         status_bar_label.show ();
96         status_bar_event_box->show ();
97         status_bar_packer->show ();
98         error_log_button.show ();
99
100         error_log_button.signal_clicked().connect (mem_fun (*this, &UI::toggle_errors));
101         status_bar_event_box->signal_button_press_event().connect (mem_fun (*this, &ARDOUR_UI::status_bar_button_press));
102
103         editor->get_status_bar_packer().pack_start (*status_bar_packer, true, true);
104         editor->get_status_bar_packer().pack_start (menu_bar_base, false, false, 6);
105 #else
106         top_packer.pack_start (menu_bar_base, false, false);
107 #endif
108
109         top_packer.pack_start (transport_frame, false, false);
110
111         editor->add_toplevel_controls (top_packer);
112
113         setup_transport();
114         build_menu_bar ();
115
116         setup_tooltips ();
117
118         return 0;
119 }
120
121 void
122 ARDOUR_UI::setup_tooltips ()
123 {
124         set_tip (roll_button, _("Play from playhead"));
125         set_tip (stop_button, _("Stop playback"));
126         set_tip (rec_button, _("Toggle record"));
127         set_tip (play_selection_button, _("Play range/selection"));
128         set_tip (join_play_range_button, _("Always play range/selection"));
129         set_tip (goto_start_button, _("Go to start of session"));
130         set_tip (goto_end_button, _("Go to end of session"));
131         set_tip (auto_loop_button, _("Play loop range"));
132
133         set_tip (auto_return_button, _("Return to last playback start when stopped"));
134         set_tip (auto_play_button, _("Start playback after any locate"));
135         set_tip (auto_input_button, _("Be sensible about input monitoring"));
136         set_tip (punch_in_button, _("Start recording at auto-punch start"));
137         set_tip (punch_out_button, _("Stop recording at auto-punch end"));
138         set_tip (click_button, _("Enable/Disable audio click"));
139         set_tip (time_master_button, string_compose (_("Does %1 control the time?"), PROGRAM_NAME));
140         set_tip (shuttle_box, _("Shuttle speed control"));
141         set_tip (shuttle_units_button, _("Select semitones or %%-age for speed display"));
142         set_tip (speed_display_box, _("Current transport speed"));
143         set_tip (solo_alert_button, _("When active, something is soloed.\nClick to de-solo everything"));
144         set_tip (auditioning_alert_button, _("When active, auditioning is taking place\nClick to stop the audition"));
145         set_tip (primary_clock, _("Primary Clock"));
146         set_tip (secondary_clock, _("Secondary Clock"));
147
148         synchronize_sync_source_and_video_pullup ();
149
150         editor->setup_tooltips ();
151 }
152
153 bool
154 ARDOUR_UI::status_bar_button_press (GdkEventButton* ev)
155 {
156         bool handled = false;
157
158         switch (ev->button) {
159         case 1:
160                 status_bar_label.set_text ("");
161                 handled = true;
162                 break;
163         default:
164                 break;
165         }
166
167         return handled;
168 }
169
170 void
171 ARDOUR_UI::display_message (const char *prefix, gint prefix_len, RefPtr<TextBuffer::Tag> ptag, RefPtr<TextBuffer::Tag> mtag, const char *msg)
172 {
173         string text;
174
175         UI::display_message (prefix, prefix_len, ptag, mtag, msg);
176 #ifdef TOP_MENUBAR
177
178         if (strcmp (prefix, _("[ERROR]: ")) == 0) {
179                 text = "<span color=\"red\" weight=\"bold\">";
180         } else if (strcmp (prefix, _("[WARNING]: ")) == 0) {
181                 text = "<span color=\"yellow\" weight=\"bold\">";
182         } else if (strcmp (prefix, _("[INFO]: ")) == 0) {
183                 text = "<span color=\"green\" weight=\"bold\">";
184         } else {
185                 text = "<span color=\"white\" weight=\"bold\">???";
186         }
187
188         text += prefix;
189         text += "</span>";
190         text += msg;
191
192         status_bar_label.set_markup (text);
193 #endif
194 }
195
196 XMLNode*
197 ARDOUR_UI::tearoff_settings (const char* name) const
198 {
199         XMLNode* ui_node = Config->extra_xml(X_("UI"));
200         
201         if (ui_node) {
202                 XMLNode* tearoff_node = ui_node->child (X_("Tearoffs"));
203                 if (tearoff_node) {
204                         XMLNode* mnode = tearoff_node->child (name);
205                         return mnode;
206                 }
207         }
208
209         return 0;
210 }
211
212 void
213 ARDOUR_UI::setup_transport ()
214 {
215         transport_tearoff = manage (new TearOff (transport_tearoff_hbox));
216         transport_tearoff->set_name ("TransportBase");
217         transport_tearoff->tearoff_window().signal_key_press_event().connect (sigc::bind (sigc::ptr_fun (relay_key_press), &transport_tearoff->tearoff_window()), false);
218
219         if (Profile->get_sae()) {
220                 transport_tearoff->set_can_be_torn_off (false);
221         }
222
223         transport_hbox.pack_start (*transport_tearoff, true, false);
224
225         transport_base.set_name ("TransportBase");
226         transport_base.add (transport_hbox);
227
228         transport_frame.set_shadow_type (SHADOW_OUT);
229         transport_frame.set_name ("BaseFrame");
230         transport_frame.add (transport_base);
231
232         transport_tearoff->Detach.connect (sigc::bind (sigc::mem_fun(*this, &ARDOUR_UI::detach_tearoff), static_cast<Box*>(&top_packer),
233                                                  static_cast<Widget*>(&transport_frame)));
234         transport_tearoff->Attach.connect (sigc::bind (sigc::mem_fun(*this, &ARDOUR_UI::reattach_tearoff), static_cast<Box*> (&top_packer),
235                                                  static_cast<Widget*> (&transport_frame), 1));
236         transport_tearoff->Hidden.connect (sigc::bind (sigc::mem_fun(*this, &ARDOUR_UI::detach_tearoff), static_cast<Box*>(&top_packer),
237                                                  static_cast<Widget*>(&transport_frame)));
238         transport_tearoff->Visible.connect (sigc::bind (sigc::mem_fun(*this, &ARDOUR_UI::reattach_tearoff), static_cast<Box*> (&top_packer),
239                                                   static_cast<Widget*> (&transport_frame), 1));
240
241         shuttle_box.set_name ("TransportButton");
242         goto_start_button.set_name ("TransportButton");
243         goto_end_button.set_name ("TransportButton");
244         roll_button.set_name ("TransportButton");
245         stop_button.set_name ("TransportButton");
246         play_selection_button.set_name ("TransportButton");
247         rec_button.set_name ("TransportRecButton");
248         auto_loop_button.set_name ("TransportButton");
249         join_play_range_button.set_name ("TransportButton");
250
251         auto_return_button.set_name ("TransportButton");
252         auto_play_button.set_name ("TransportButton");
253         auto_input_button.set_name ("TransportButton");
254         punch_in_button.set_name ("TransportButton");
255         punch_out_button.set_name ("TransportButton");
256         click_button.set_name ("TransportButton");
257         time_master_button.set_name ("TransportButton");
258         sync_button.set_name ("TransportSyncButton");
259
260         stop_button.set_size_request(29, -1);
261         roll_button.set_size_request(29, -1);
262         auto_loop_button.set_size_request(29, -1);
263         play_selection_button.set_size_request(29, -1);
264         goto_start_button.set_size_request(29, -1);
265         goto_end_button.set_size_request(29, -1);
266         rec_button.set_size_request(29, -1);
267
268         Widget* w;
269
270         stop_button.set_visual_state (1);
271
272         w = manage (new Image (get_icon (X_("transport_start"))));
273         w->show();
274         goto_start_button.add (*w);
275         w = manage (new Image (get_icon (X_("transport_end"))));
276         w->show();
277         goto_end_button.add (*w);
278         w = manage (new Image (get_icon (X_("transport_play"))));
279         w->show();
280         roll_button.add (*w);
281         w = manage (new Image (get_icon (X_("transport_stop"))));
282         w->show();
283         stop_button.add (*w);
284         w = manage (new Image (get_icon (X_("transport_range"))));
285         w->show();
286         play_selection_button.add (*w);
287         w = manage (new Image (get_icon (X_("transport_record"))));
288         w->show();
289         rec_button.add (*w);
290         w = manage (new Image (get_icon (X_("transport_loop"))));
291         w->show();
292         auto_loop_button.add (*w);
293         w = manage (new Image (get_icon (X_("join_tools"))));
294         w->show ();
295         join_play_range_button.add (*w);
296
297         RefPtr<Action> act;
298
299         act = ActionManager::get_action (X_("Transport"), X_("Stop"));
300         act->connect_proxy (stop_button);
301         act = ActionManager::get_action (X_("Transport"), X_("Roll"));
302         act->connect_proxy (roll_button);
303         act = ActionManager::get_action (X_("Transport"), X_("Record"));
304         act->connect_proxy (rec_button);
305         act = ActionManager::get_action (X_("Transport"), X_("GotoStart"));
306         act->connect_proxy (goto_start_button);
307         act = ActionManager::get_action (X_("Transport"), X_("GotoEnd"));
308         act->connect_proxy (goto_end_button);
309         act = ActionManager::get_action (X_("Transport"), X_("Loop"));
310         act->connect_proxy (auto_loop_button);
311         act = ActionManager::get_action (X_("Transport"), X_("PlaySelection"));
312         act->connect_proxy (play_selection_button);
313         act = ActionManager::get_action (X_("Transport"), X_("ToggleTimeMaster"));
314         act->connect_proxy (time_master_button);
315         act = ActionManager::get_action (X_("Transport"), X_("ToggleExternalSync"));
316         act->connect_proxy (sync_button);
317
318         shuttle_box.set_flags (CAN_FOCUS);
319         shuttle_box.add_events (Gdk::ENTER_NOTIFY_MASK|Gdk::LEAVE_NOTIFY_MASK|Gdk::BUTTON_RELEASE_MASK|Gdk::BUTTON_PRESS_MASK|Gdk::POINTER_MOTION_MASK|Gdk::SCROLL_MASK);
320         shuttle_box.set_size_request (100, 15);
321
322         shuttle_box.signal_button_press_event().connect (sigc::mem_fun(*this, &ARDOUR_UI::shuttle_box_button_press));
323         shuttle_box.signal_button_release_event().connect (sigc::mem_fun(*this, &ARDOUR_UI::shuttle_box_button_release));
324         shuttle_box.signal_scroll_event().connect (sigc::mem_fun(*this, &ARDOUR_UI::shuttle_box_scroll));
325         shuttle_box.signal_motion_notify_event().connect (sigc::mem_fun(*this, &ARDOUR_UI::shuttle_box_motion));
326         shuttle_box.signal_expose_event().connect (sigc::mem_fun(*this, &ARDOUR_UI::shuttle_box_expose));
327
328         /* clocks, etc. */
329
330         ARDOUR_UI::Clock.connect (sigc::bind (sigc::mem_fun (primary_clock, &AudioClock::set), 'p'));
331         ARDOUR_UI::Clock.connect (sigc::bind (sigc::mem_fun (secondary_clock, &AudioClock::set), 's'));
332
333         primary_clock.ValueChanged.connect (sigc::mem_fun(*this, &ARDOUR_UI::primary_clock_value_changed));
334         secondary_clock.ValueChanged.connect (sigc::mem_fun(*this, &ARDOUR_UI::secondary_clock_value_changed));
335         big_clock.ValueChanged.connect (sigc::mem_fun(*this, &ARDOUR_UI::big_clock_value_changed));
336
337         ActionManager::get_action ("Transport", "ToggleAutoReturn")->connect_proxy (auto_return_button);
338         ActionManager::get_action ("Transport", "ToggleAutoPlay")->connect_proxy (auto_play_button);
339         ActionManager::get_action ("Transport", "ToggleAutoInput")->connect_proxy (auto_input_button);
340         ActionManager::get_action ("Transport", "ToggleClick")->connect_proxy (click_button);
341         ActionManager::get_action ("Transport", "TogglePunchIn")->connect_proxy (punch_in_button);
342         ActionManager::get_action ("Transport", "TogglePunchOut")->connect_proxy (punch_out_button);
343
344         click_button.signal_button_press_event().connect (sigc::mem_fun (*this, &ARDOUR_UI::click_button_clicked), false);
345
346         preroll_button.set_name ("TransportButton");
347         postroll_button.set_name ("TransportButton");
348
349         preroll_clock.set_mode (AudioClock::MinSec);
350         preroll_clock.set_name ("TransportClockDisplay");
351         postroll_clock.set_mode (AudioClock::MinSec);
352         postroll_clock.set_name ("TransportClockDisplay");
353
354         /* alerts */
355
356         /* CANNOT sigc::bind these to clicked or toggled, must use pressed or released */
357
358         solo_alert_button.set_name ("TransportSoloAlert");
359         solo_alert_button.signal_button_press_event().connect (sigc::mem_fun(*this,&ARDOUR_UI::solo_alert_press), false);
360         auditioning_alert_button.set_name ("TransportAuditioningAlert");
361         auditioning_alert_button.signal_button_press_event().connect (sigc::mem_fun(*this,&ARDOUR_UI::audition_alert_press), false);
362
363         alert_box.pack_start (solo_alert_button, false, false);
364         alert_box.pack_start (auditioning_alert_button, false, false);
365
366         transport_tearoff_hbox.set_border_width (3);
367
368         transport_tearoff_hbox.pack_start (goto_start_button, false, false);
369         transport_tearoff_hbox.pack_start (goto_end_button, false, false);
370
371         Frame* sframe = manage (new Frame);
372         VBox*  svbox = manage (new VBox);
373         HBox*  shbox = manage (new HBox);
374
375         sframe->set_shadow_type (SHADOW_IN);
376         sframe->add (shuttle_box);
377
378         shuttle_box.set_name (X_("ShuttleControl"));
379
380         speed_display_box.add (speed_display_label);
381         speed_display_box.set_name (X_("ShuttleDisplay"));
382         set_size_request_to_display_given_text (speed_display_label, X_("> 24.0"), 2, 2);
383
384         shuttle_units_button.set_name (X_("ShuttleButton"));
385         shuttle_units_button.signal_clicked().connect (sigc::mem_fun(*this, &ARDOUR_UI::shuttle_unit_clicked));
386
387         shuttle_style_button.set_name (X_("ShuttleStyleButton"));
388
389         vector<string> shuttle_strings;
390         shuttle_strings.push_back (_("sprung"));
391         shuttle_strings.push_back (_("wheel"));
392         set_popdown_strings (shuttle_style_button, shuttle_strings, true);
393         shuttle_style_button.signal_changed().connect (sigc::mem_fun (*this, &ARDOUR_UI::shuttle_style_changed));
394
395         Frame* sdframe = manage (new Frame);
396
397         sdframe->set_shadow_type (SHADOW_IN);
398         sdframe->add (speed_display_box);
399
400         /* translators: Egternal is "External" with a descender character */
401         set_size_request_to_display_given_text (sync_button, X_("Egternal"), 4, 10);
402
403         shbox->pack_start (*sdframe, false, false);
404         shbox->pack_start (shuttle_units_button, true, true);
405         shbox->pack_start (shuttle_style_button, false, false);
406
407         svbox->pack_start (*sframe, false, false);
408         svbox->pack_start (*shbox, false, false);
409
410         transport_tearoff_hbox.pack_start (*svbox, false, false, 3);
411
412         if (Profile->get_sae()) {
413                 transport_tearoff_hbox.pack_start (auto_loop_button);
414                 transport_tearoff_hbox.pack_start (roll_button);
415         } else {
416                 transport_tearoff_hbox.pack_start (auto_loop_button, false, false);
417                 play_range_hbox.pack_start (play_selection_button, false, false);
418                 play_range_hbox.pack_start (roll_button, false, false);
419                 play_range_vbox.pack_start (play_range_hbox, false, false);
420                 play_range_vbox.pack_start (join_play_range_button, false, false);
421                 transport_tearoff_hbox.pack_start (play_range_vbox, false, false);
422         }
423         transport_tearoff_hbox.pack_start (stop_button, false, false);
424         transport_tearoff_hbox.pack_start (rec_button, false, false, 6);
425
426         HBox* clock_box = manage (new HBox);
427         clock_box->pack_start (primary_clock, false, false);
428         if (!ARDOUR::Profile->get_small_screen()) {
429                 clock_box->pack_start (secondary_clock, false, false);
430         }
431
432         if (!Profile->get_sae()) {
433                 VBox* time_controls_box = manage (new VBox);
434                 time_controls_box->pack_start (sync_button, false, false);
435                 time_controls_box->pack_start (time_master_button, false, false);
436                 clock_box->pack_start (*time_controls_box, false, false, 1);
437         }
438
439         transport_tearoff_hbox.pack_start (*clock_box, false, false, 0);
440
441         HBox* toggle_box = manage(new HBox);
442
443         VBox* punch_box = manage (new VBox);
444         punch_box->pack_start (punch_in_button, false, false);
445         punch_box->pack_start (punch_out_button, false, false);
446         toggle_box->pack_start (*punch_box, false, false);
447
448         VBox* auto_box = manage (new VBox);
449         auto_box->pack_start (auto_play_button, false, false);
450         auto_box->pack_start (auto_return_button, false, false);
451         // toggle_box->pack_start (*auto_box, false, false);
452
453         VBox* io_box = manage (new VBox);
454         io_box->pack_start (auto_input_button, false, false);
455         io_box->pack_start (click_button, false, false);
456         //toggle_box->pack_start (*io_box, false, false);
457
458         /* desensitize */
459
460         set_transport_sensitivity (false);
461
462 //      toggle_box->pack_start (preroll_button, false, false);
463 //      toggle_box->pack_start (preroll_clock, false, false);
464
465 //      toggle_box->pack_start (postroll_button, false, false);
466 //      toggle_box->pack_start (postroll_clock, false, false);
467
468         transport_tearoff_hbox.pack_start (*toggle_box, false, false, 4);
469         transport_tearoff_hbox.pack_start (_editor_transport_box, false, false, 4);
470         transport_tearoff_hbox.pack_start (alert_box, false, false);
471
472         if (Profile->get_sae()) {
473                 Image* img = manage (new Image ((::get_icon (X_("sae")))));
474                 transport_tearoff_hbox.pack_end (*img, false, false, 6);
475         }
476
477         XMLNode* tnode = tearoff_settings ("transport");
478         if (tnode) {
479                 transport_tearoff->set_state (*tnode);
480         }
481 }
482
483 void
484 ARDOUR_UI::manage_window (Window& win)
485 {
486         win.signal_delete_event().connect (sigc::bind (sigc::ptr_fun (just_hide_it), &win));
487         win.signal_enter_notify_event().connect (sigc::bind (sigc::mem_fun (Keyboard::the_keyboard(), &Keyboard::enter_window), &win));
488         win.signal_leave_notify_event().connect (sigc::bind (sigc::mem_fun (Keyboard::the_keyboard(), &Keyboard::leave_window), &win));
489 }
490
491 void
492 ARDOUR_UI::detach_tearoff (Box* b, Widget* w)
493 {
494 //      editor->ensure_float (transport_tearoff->tearoff_window());
495         b->remove (*w);
496 }
497
498 void
499 ARDOUR_UI::reattach_tearoff (Box* b, Widget* w, int32_t n)
500 {
501         b->pack_start (*w);
502         b->reorder_child (*w, n);
503 }
504
505 void
506 ARDOUR_UI::soloing_changed (bool onoff)
507 {
508         if (solo_alert_button.get_active() != onoff) {
509                 solo_alert_button.set_active (onoff);
510         }
511 }
512
513 void
514 ARDOUR_UI::_auditioning_changed (bool onoff)
515 {
516         if (auditioning_alert_button.get_active() != onoff) {
517                 auditioning_alert_button.set_active (onoff);
518                 set_transport_sensitivity (!onoff);
519         }
520 }
521
522 void
523 ARDOUR_UI::auditioning_changed (bool onoff)
524 {
525         UI::instance()->call_slot (MISSING_INVALIDATOR, boost::bind (&ARDOUR_UI::_auditioning_changed, this, onoff));
526 }
527
528 bool
529 ARDOUR_UI::audition_alert_press (GdkEventButton*)
530 {
531         if (_session) {
532                 _session->cancel_audition();
533         }
534         return true;
535 }
536
537 bool
538 ARDOUR_UI::solo_alert_press (GdkEventButton*)
539 {
540         if (_session) {
541                 if (_session->soloing()) {
542                         _session->set_solo (_session->get_routes(), false);
543                 } else if (_session->listening()) {
544                         _session->set_listen (_session->get_routes(), false);
545                 }
546         }
547         return true;
548 }
549
550 void
551 ARDOUR_UI::solo_blink (bool onoff)
552 {
553         if (_session == 0) {
554                 return;
555         }
556
557         if (_session->soloing() || _session->listening()) {
558                 if (onoff) {
559                         solo_alert_button.set_state (STATE_ACTIVE);
560                 } else {
561                         solo_alert_button.set_state (STATE_NORMAL);
562                 }
563         } else {
564                 solo_alert_button.set_active (false);
565                 solo_alert_button.set_state (STATE_NORMAL);
566         }
567 }
568
569 void
570 ARDOUR_UI::sync_blink (bool onoff)
571 {
572         if (_session == 0 || !_session->config.get_external_sync()) {
573                 /* internal sync */
574                 sync_button.set_visual_state (0);
575                 return;
576         }
577
578         if (!_session->transport_locked()) {
579                 /* not locked, so blink on and off according to the onoff argument */
580
581                 if (onoff) {
582                         sync_button.set_visual_state (1); // "-active"
583                 } else {
584                         sync_button.set_visual_state (0); // normal
585                 }
586         } else {
587                 /* locked */
588                 sync_button.set_visual_state (1); // "-active"
589         }
590 }
591
592 void
593 ARDOUR_UI::audition_blink (bool onoff)
594 {
595         if (_session == 0) {
596                 return;
597         }
598
599         if (_session->is_auditioning()) {
600                 if (onoff) {
601                         auditioning_alert_button.set_state (STATE_ACTIVE);
602                 } else {
603                         auditioning_alert_button.set_state (STATE_NORMAL);
604                 }
605         } else {
606                 auditioning_alert_button.set_active (false);
607                 auditioning_alert_button.set_state (STATE_NORMAL);
608         }
609 }
610
611 void
612 ARDOUR_UI::build_shuttle_context_menu ()
613 {
614         using namespace Menu_Helpers;
615
616         shuttle_context_menu = new Menu();
617         MenuList& items = shuttle_context_menu->items();
618
619         Menu* speed_menu = manage (new Menu());
620         MenuList& speed_items = speed_menu->items();
621
622         RadioMenuItem::Group group;
623
624         speed_items.push_back (RadioMenuElem (group, "8", sigc::bind (sigc::mem_fun (*this, &ARDOUR_UI::set_shuttle_max_speed), 8.0f)));
625         if (shuttle_max_speed == 8.0) {
626                 static_cast<RadioMenuItem*>(&speed_items.back())->set_active ();
627         }
628         speed_items.push_back (RadioMenuElem (group, "6", sigc::bind (sigc::mem_fun (*this, &ARDOUR_UI::set_shuttle_max_speed), 6.0f)));
629         if (shuttle_max_speed == 6.0) {
630                 static_cast<RadioMenuItem*>(&speed_items.back())->set_active ();
631         }
632         speed_items.push_back (RadioMenuElem (group, "4", sigc::bind (sigc::mem_fun (*this, &ARDOUR_UI::set_shuttle_max_speed), 4.0f)));
633         if (shuttle_max_speed == 4.0) {
634                 static_cast<RadioMenuItem*>(&speed_items.back())->set_active ();
635         }
636         speed_items.push_back (RadioMenuElem (group, "3", sigc::bind (sigc::mem_fun (*this, &ARDOUR_UI::set_shuttle_max_speed), 3.0f)));
637         if (shuttle_max_speed == 3.0) {
638                 static_cast<RadioMenuItem*>(&speed_items.back())->set_active ();
639         }
640         speed_items.push_back (RadioMenuElem (group, "2", sigc::bind (sigc::mem_fun (*this, &ARDOUR_UI::set_shuttle_max_speed), 2.0f)));
641         if (shuttle_max_speed == 2.0) {
642                 static_cast<RadioMenuItem*>(&speed_items.back())->set_active ();
643         }
644         speed_items.push_back (RadioMenuElem (group, "1.5", sigc::bind (sigc::mem_fun (*this, &ARDOUR_UI::set_shuttle_max_speed), 1.5f)));
645         if (shuttle_max_speed == 1.5) {
646                 static_cast<RadioMenuItem*>(&speed_items.back())->set_active ();
647         }
648
649         items.push_back (MenuElem (_("Maximum speed"), *speed_menu));
650 }
651
652 void
653 ARDOUR_UI::show_shuttle_context_menu ()
654 {
655         if (shuttle_context_menu == 0) {
656                 build_shuttle_context_menu ();
657         }
658
659         shuttle_context_menu->popup (1, gtk_get_current_event_time());
660 }
661
662 void
663 ARDOUR_UI::set_shuttle_max_speed (float speed)
664 {
665         shuttle_max_speed = speed;
666 }
667
668 gint
669 ARDOUR_UI::shuttle_box_button_press (GdkEventButton* ev)
670 {
671         if (!_session) {
672                 return true;
673         }
674
675         if (shuttle_controller_binding_proxy.button_press_handler (ev)) {
676                 return true;
677         }
678
679         if (Keyboard::is_context_menu_event (ev)) {
680                 show_shuttle_context_menu ();
681                 return true;
682         }
683
684         switch (ev->button) {
685         case 1:
686                 shuttle_box.add_modal_grab ();
687                 shuttle_grabbed = true;
688                 mouse_shuttle (ev->x, true);
689                 break;
690
691         case 2:
692         case 3:
693                 return true;
694                 break;
695         }
696
697         return true;
698 }
699
700 gint
701 ARDOUR_UI::shuttle_box_button_release (GdkEventButton* ev)
702 {
703         if (!_session) {
704                 return true;
705         }
706
707         switch (ev->button) {
708         case 1:
709                 mouse_shuttle (ev->x, true);
710                 shuttle_grabbed = false;
711                 shuttle_box.remove_modal_grab ();
712                 if (Config->get_shuttle_behaviour() == Sprung) {
713                         if (_session->config.get_auto_play() || roll_button.get_visual_state()) {
714                                 shuttle_fract = SHUTTLE_FRACT_SPEED1;
715                                 _session->request_transport_speed (1.0);
716                                 stop_button.set_visual_state (0);
717                                 roll_button.set_visual_state (1);
718                         } else {
719                                 shuttle_fract = 0;
720                                 _session->request_transport_speed (0.0);
721                         }
722                         shuttle_box.queue_draw ();
723                 }
724                 return true;
725
726         case 2:
727                 if (_session->transport_rolling()) {
728                         shuttle_fract = SHUTTLE_FRACT_SPEED1;
729                         _session->request_transport_speed (1.0);
730                         stop_button.set_visual_state (0);
731                         roll_button.set_visual_state (1);
732                 } else {
733                         shuttle_fract = 0;
734                 }
735                 shuttle_box.queue_draw ();
736                 return true;
737
738         case 3:
739         default:
740                 return true;
741
742         }
743
744         use_shuttle_fract (true);
745
746         return true;
747 }
748
749 gint
750 ARDOUR_UI::shuttle_box_scroll (GdkEventScroll* ev)
751 {
752         if (!_session) {
753                 return true;
754         }
755
756         switch (ev->direction) {
757
758         case GDK_SCROLL_UP:
759                 shuttle_fract += 0.005;
760                 break;
761         case GDK_SCROLL_DOWN:
762                 shuttle_fract -= 0.005;
763                 break;
764         default:
765                 /* scroll left/right */
766                 return false;
767         }
768
769         use_shuttle_fract (true);
770
771         return true;
772 }
773
774 gint
775 ARDOUR_UI::shuttle_box_motion (GdkEventMotion* ev)
776 {
777         if (!_session || !shuttle_grabbed) {
778                 return true;
779         }
780
781         return mouse_shuttle (ev->x, false);
782 }
783
784 gint
785 ARDOUR_UI::mouse_shuttle (double x, bool force)
786 {
787         double const half_width = shuttle_box.get_width() / 2.0;
788         double distance = x - half_width;
789
790         if (distance > 0) {
791                 distance = min (distance, half_width);
792         } else {
793                 distance = max (distance, -half_width);
794         }
795
796         shuttle_fract = distance / half_width;
797         use_shuttle_fract (force);
798         return true;
799 }
800
801 void
802 ARDOUR_UI::set_shuttle_fract (double f)
803 {
804         shuttle_fract = f;
805         use_shuttle_fract (false);
806 }
807
808 void
809 ARDOUR_UI::use_shuttle_fract (bool force)
810 {
811         microseconds_t now = get_microseconds();
812
813         /* do not attempt to submit a motion-driven transport speed request
814            more than once per process cycle.
815          */
816
817         if (!force && (last_shuttle_request - now) < (microseconds_t) engine->usecs_per_cycle()) {
818                 return;
819         }
820
821         last_shuttle_request = now;
822
823         double speed = 0;
824
825         if (Config->get_shuttle_units() == Semitones) {
826
827                 double const step = 1.0 / 24.0; // range is 24 semitones up & down
828                 double const semitones = round (shuttle_fract / step);
829                 speed = pow (2.0, (semitones / 12.0));
830
831         } else {
832
833                 bool const neg = (shuttle_fract < 0.0);
834                 double fract = 1 - sqrt (1 - (shuttle_fract * shuttle_fract)); // Formula A1
835
836                 if (neg) {
837                         fract = -fract;
838                 }
839
840                 speed = shuttle_max_speed * fract;
841         }
842         
843         _session->request_transport_speed_nonzero (speed);
844         
845         shuttle_box.queue_draw ();
846 }
847
848 gint
849 ARDOUR_UI::shuttle_box_expose (GdkEventExpose* event)
850 {
851         gint x;
852         Glib::RefPtr<Gdk::Window> win (shuttle_box.get_window());
853
854         /* redraw the background */
855
856         win->draw_rectangle (shuttle_box.get_style()->get_bg_gc (shuttle_box.get_state()),
857                              true,
858                              event->area.x, event->area.y,
859                              event->area.width, event->area.height);
860
861
862         x = (gint) floor ((shuttle_box.get_width() / 2.0) + (0.5 * (shuttle_box.get_width() * shuttle_fract)));
863
864         /* draw line */
865
866         win->draw_line (shuttle_box.get_style()->get_fg_gc (shuttle_box.get_state()),
867                         x,
868                         0,
869                         x,
870                         shuttle_box.get_height());
871         return true;
872 }
873
874 void
875 ARDOUR_UI::shuttle_unit_clicked ()
876 {
877         if (shuttle_unit_menu == 0) {
878                 shuttle_unit_menu = dynamic_cast<Menu*> (ActionManager::get_widget ("/ShuttleUnitPopup"));
879         }
880         shuttle_unit_menu->popup (1, gtk_get_current_event_time());
881 }
882
883 void
884 ARDOUR_UI::shuttle_style_changed ()
885 {
886         string str = shuttle_style_button.get_active_text ();
887
888         if (str == _("sprung")) {
889                 Config->set_shuttle_behaviour (Sprung);
890         } else if (str == _("wheel")) {
891                 Config->set_shuttle_behaviour (Wheel);
892         }
893 }
894
895 void
896 ARDOUR_UI::update_speed_display ()
897 {
898         if (!_session) {
899                 if (last_speed_displayed != 0) {
900                         speed_display_label.set_text (_("stop"));
901                         last_speed_displayed = 0;
902                 }
903                 return;
904         }
905
906         char buf[32];
907         float x = _session->transport_speed ();
908
909         if (x != last_speed_displayed) {
910
911                 if (x != 0) {
912                         if (Config->get_shuttle_units() == Percentage) {
913                                 snprintf (buf, sizeof (buf), "%d", (int) round (x * 100));
914                         } else {
915
916                                 if (x < 0) {
917                                         snprintf (buf, sizeof (buf), "< %d", (int) round (12.0 * fast_log2 (-x)));
918                                 } else {
919                                         snprintf (buf, sizeof (buf), "> %d", (int) round (12.0 * fast_log2 (x)));
920                                 }
921                         }
922                         speed_display_label.set_text (buf);
923                 } else {
924                         speed_display_label.set_text (_("stop"));
925                 }
926
927                 last_speed_displayed = x;
928         }
929 }
930
931 void
932 ARDOUR_UI::set_transport_sensitivity (bool yn)
933 {
934         ActionManager::set_sensitive (ActionManager::transport_sensitive_actions, yn);
935         shuttle_box.set_sensitive (yn);
936 }
937
938 void
939 ARDOUR_UI::editor_realized ()
940 {
941         boost::function<void (string)> pc (boost::bind (&ARDOUR_UI::parameter_changed, this, _1));
942         Config->map_parameters (pc);
943
944         set_size_request_to_display_given_text (speed_display_box, _("-0.55"), 2, 2);
945         reset_dpi ();
946 }
947
948 void
949 ARDOUR_UI::maximise_editing_space ()
950 {
951         if (!editor) {
952                 return;
953         }
954
955         transport_tearoff->set_visible (false);
956         editor->maximise_editing_space ();
957         if (Config->get_keep_tearoffs()) {
958                 transport_tearoff->set_visible (true);
959         }
960 }
961
962 void
963 ARDOUR_UI::restore_editing_space ()
964 {
965         if (!editor) {
966                 return;
967         }
968
969         transport_tearoff->set_visible (true);
970         editor->restore_editing_space ();
971 }
972
973 bool
974 ARDOUR_UI::click_button_clicked (GdkEventButton* ev)
975 {
976         if (ev->button != 3) {
977                 /* this handler is just for button-3 clicks */
978                 return false;
979         }
980
981         RefPtr<Action> act = ActionManager::get_action (X_("Common"), X_("ToggleRCOptionsEditor"));
982         assert (act);
983
984         RefPtr<ToggleAction> tact = RefPtr<ToggleAction>::cast_dynamic (act);
985         tact->set_active ();
986
987         rc_option_editor->set_current_page (_("Misc"));
988         return true;
989 }