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