Revert "properly track, update, maintain and set auto return state"
[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/cairocell.h>
36 #include <gtkmm2ext/utils.h>
37 #include <gtkmm2ext/click_box.h>
38 #include <gtkmm2ext/tearoff.h>
39
40 #include "ardour/profile.h"
41 #include "ardour/session.h"
42 #include "ardour/types.h"
43
44 #include "ardour_ui.h"
45 #include "keyboard.h"
46 #include "public_editor.h"
47 #include "audio_clock.h"
48 #include "actions.h"
49 #include "main_clock.h"
50 #include "utils.h"
51 #include "theme_manager.h"
52 #include "midi_tracer.h"
53 #include "shuttle_control.h"
54 #include "global_port_matrix.h"
55 #include "location_ui.h"
56 #include "rc_option_editor.h"
57 #include "time_info_box.h"
58
59 #include "i18n.h"
60
61 using namespace std;
62 using namespace ARDOUR;
63 using namespace PBD;
64 using namespace Gtkmm2ext;
65 using namespace Gtk;
66 using namespace Glib;
67 using namespace ARDOUR_UI_UTILS;
68
69 int
70 ARDOUR_UI::setup_windows ()
71 {
72         if (create_editor ()) {
73                 error << _("UI: cannot setup editor") << endmsg;
74                 return -1;
75         }
76
77         if (create_mixer ()) {
78                 error << _("UI: cannot setup mixer") << endmsg;
79                 return -1;
80         }
81
82         if (create_meterbridge ()) {
83                 error << _("UI: cannot setup meterbridge") << endmsg;
84                 return -1;
85         }
86
87         /* all other dialogs are created conditionally */
88
89         we_have_dependents ();
90
91 #ifdef TOP_MENUBAR
92         HBox* status_bar_packer = manage (new HBox);
93         EventBox* status_bar_event_box = manage (new EventBox);
94
95         status_bar_event_box->add (status_bar_label);
96         status_bar_event_box->add_events (Gdk::BUTTON_PRESS_MASK|Gdk::BUTTON_RELEASE_MASK);
97         status_bar_label.set_size_request (300, -1);
98         status_bar_packer->pack_start (*status_bar_event_box, true, true, 6);
99
100         status_bar_label.show ();
101         status_bar_event_box->show ();
102         status_bar_packer->show ();
103
104         status_bar_event_box->signal_button_press_event().connect (mem_fun (*this, &ARDOUR_UI::status_bar_button_press));
105
106         editor->get_status_bar_packer().pack_start (*status_bar_packer, true, true);
107         editor->get_status_bar_packer().pack_start (menu_bar_base, false, false, 2);
108 #else
109         top_packer.pack_start (menu_bar_base, false, false);
110 #endif
111
112         editor->add_toplevel_menu (top_packer);
113
114         editor->add_transport_frame (transport_frame);
115
116         setup_transport();
117
118         build_menu_bar ();
119
120         setup_tooltips ();
121
122         return 0;
123 }
124
125 void
126 ARDOUR_UI::setup_tooltips ()
127 {
128         set_tip (roll_button, _("Play from playhead"));
129         set_tip (stop_button, _("Stop playback"));
130         set_tip (rec_button, _("Toggle record"));
131         set_tip (play_selection_button, _("Play range/selection"));
132         set_tip (goto_start_button, _("Go to start of session"));
133         set_tip (goto_end_button, _("Go to end of session"));
134         set_tip (auto_loop_button, _("Play loop range"));
135         set_tip (midi_panic_button, _("MIDI Panic\nSend note off and reset controller messages on all MIDI channels"));
136         set_tip (follow_edits_button, _("Playhead follows Range Selections and Edits"));
137         set_tip (auto_input_button, _("Be sensible about input monitoring"));
138         set_tip (click_button, _("Enable/Disable audio click"));
139         set_tip (solo_alert_button, _("When active, something is soloed.\nClick to de-solo everything"));
140         set_tip (auditioning_alert_button, _("When active, auditioning is taking place\nClick to stop the audition"));
141         set_tip (feedback_alert_button, _("When active, there is a feedback loop."));
142         set_tip (primary_clock, _("<b>Primary Clock</b> right-click to set display mode. Click to edit, click+drag a digit or mouse-over+scroll wheel to modify.\nText edits: right-to-left overwrite <tt>Esc</tt>: cancel; <tt>Enter</tt>: confirm; postfix the edit with '+' or '-' to enter delta times.\n"));
143         set_tip (secondary_clock, _("<b>Secondary Clock</b> right-click to set display mode. Click to edit, click+drag a digit or mouse-over+scroll wheel to modify.\nText edits: right-to-left overwrite <tt>Esc</tt>: cancel; <tt>Enter</tt>: confirm; postfix the edit with '+' or '-' to enter delta times.\n"));
144         set_tip (editor_meter_peak_display, _("Reset All Peak Indicators"));
145         set_tip (error_alert_button, _("Show Error Log and acknowledge warnings"));
146
147         synchronize_sync_source_and_video_pullup ();
148
149         editor->setup_tooltips ();
150 }
151
152 bool
153 ARDOUR_UI::status_bar_button_press (GdkEventButton* ev)
154 {
155         bool handled = false;
156
157         switch (ev->button) {
158         case 1:
159                 status_bar_label.set_text ("");
160                 handled = true;
161                 break;
162         default:
163                 break;
164         }
165
166         return handled;
167 }
168
169 void
170 ARDOUR_UI::display_message (const char *prefix, gint prefix_len, RefPtr<TextBuffer::Tag> ptag, RefPtr<TextBuffer::Tag> mtag, const char *msg)
171 {
172         string text;
173
174         UI::display_message (prefix, prefix_len, ptag, mtag, msg);
175
176         ArdourLogLevel ll = LogLevelNone;
177
178         if (strcmp (prefix, _("[ERROR]: ")) == 0) {
179                 text = "<span color=\"red\" weight=\"bold\">";
180                 ll = LogLevelError;
181         } else if (strcmp (prefix, _("[WARNING]: ")) == 0) {
182                 text = "<span color=\"yellow\" weight=\"bold\">";
183                 ll = LogLevelWarning;
184         } else if (strcmp (prefix, _("[INFO]: ")) == 0) {
185                 text = "<span color=\"green\" weight=\"bold\">";
186                 ll = LogLevelInfo;
187         } else {
188                 text = "<span color=\"white\" weight=\"bold\">???";
189         }
190
191         _log_not_acknowledged = std::max(_log_not_acknowledged, ll);
192
193 #ifdef TOP_MENUBAR
194         text += prefix;
195         text += "</span>";
196         text += msg;
197
198         status_bar_label.set_markup (text);
199 #endif
200 }
201
202 XMLNode*
203 ARDOUR_UI::tearoff_settings (const char* name) const
204 {
205         XMLNode* ui_node = Config->extra_xml(X_("UI"));
206
207         if (ui_node) {
208                 XMLNode* tearoff_node = ui_node->child (X_("Tearoffs"));
209                 if (tearoff_node) {
210                         XMLNode* mnode = tearoff_node->child (name);
211                         return mnode;
212                 }
213         }
214
215         return 0;
216 }
217
218 #define PX_SCALE(px) std::max((float)px, rintf((float)px * ARDOUR_UI::ui_scale))
219
220 void
221 ARDOUR_UI::setup_transport ()
222 {
223         RefPtr<Action> act;
224
225         transport_tearoff_hbox.set_border_width (PX_SCALE(3));
226         transport_tearoff_hbox.set_spacing (PX_SCALE(3));
227
228         transport_tearoff = manage (new TearOff (transport_tearoff_hbox));
229         transport_tearoff->set_name ("TransportBase");
230         transport_tearoff->tearoff_window().signal_key_press_event().connect (sigc::bind (sigc::ptr_fun (relay_key_press), &transport_tearoff->tearoff_window()), false);
231
232         if (Profile->get_sae() || Profile->get_mixbus()) {
233                 transport_tearoff->set_can_be_torn_off (false);
234         }
235
236         transport_hbox.pack_start (*transport_tearoff, true, false);
237
238         transport_base.set_name ("TransportBase");
239         transport_base.add (transport_hbox);
240
241         transport_frame.set_shadow_type (SHADOW_OUT);
242         transport_frame.set_name ("BaseFrame");
243         transport_frame.add (transport_base);
244
245         transport_tearoff->Detach.connect (sigc::bind (sigc::mem_fun(*this, &ARDOUR_UI::detach_tearoff), static_cast<Box*>(&top_packer),
246                                                  static_cast<Widget*>(&transport_frame)));
247         transport_tearoff->Attach.connect (sigc::bind (sigc::mem_fun(*this, &ARDOUR_UI::reattach_tearoff), static_cast<Box*> (&top_packer),
248                                                  static_cast<Widget*> (&transport_frame), 1));
249         transport_tearoff->Hidden.connect (sigc::bind (sigc::mem_fun(*this, &ARDOUR_UI::detach_tearoff), static_cast<Box*>(&top_packer),
250                                                  static_cast<Widget*>(&transport_frame)));
251         transport_tearoff->Visible.connect (sigc::bind (sigc::mem_fun(*this, &ARDOUR_UI::reattach_tearoff), static_cast<Box*> (&top_packer),
252                                                   static_cast<Widget*> (&transport_frame), 1));
253
254         /* build auto-return dropdown */
255
256         auto_return_dropdown.set_text (_("Auto Return"));
257
258         auto_return_last_locate = manage (new CheckMenuItem (_("Play from last roll")));
259         auto_return_last_locate->signal_toggled().connect (sigc::bind (sigc::mem_fun (*this, &ARDOUR_UI::toggle_auto_return_state), LastLocate));
260         auto_return_last_locate->show ();
261         auto_return_dropdown.AddMenuElem (Gtk::Menu_Helpers::CheckMenuElem (*auto_return_last_locate));
262
263         auto_return_region_selection = manage (new CheckMenuItem (_("Play from region selection")));
264         auto_return_region_selection->signal_toggled().connect (sigc::bind (sigc::mem_fun (*this, &ARDOUR_UI::toggle_auto_return_state), RegionSelectionStart));
265         auto_return_region_selection->show ();
266         auto_return_dropdown.AddMenuElem (Gtk::Menu_Helpers::CheckMenuElem (*auto_return_region_selection));
267
268         follow_edits_button.set_text(_("Follow Edits"));
269
270 //      auto_input_button.set_text (_("Auto Input"));
271
272         click_button.set_icon (ArdourIcon::TransportMetronom);
273
274         act = ActionManager::get_action ("Transport", "ToggleClick");
275         click_button.set_related_action (act);
276         click_button.signal_button_press_event().connect (sigc::mem_fun (*this, &ARDOUR_UI::click_button_clicked), false);
277
278         follow_edits_button.set_name ("transport option button");
279         auto_input_button.set_name ("transport option button");
280
281         /* these have to provide a clear indication of active state */
282
283         click_button.set_name ("transport button");
284         sync_button.set_name ("transport active option button");
285
286         stop_button.set_active (true);
287
288         goto_start_button.set_icon (ArdourIcon::TransportStart);
289         goto_end_button.set_icon (ArdourIcon::TransportEnd);
290         roll_button.set_icon (ArdourIcon::TransportPlay);
291         stop_button.set_icon (ArdourIcon::TransportStop);
292         play_selection_button.set_icon (ArdourIcon::TransportRange);
293         auto_loop_button.set_icon (ArdourIcon::TransportLoop);
294         rec_button.set_icon (ArdourIcon::RecButton);
295         midi_panic_button.set_icon (ArdourIcon::TransportPanic);
296
297         act = ActionManager::get_action (X_("Transport"), X_("Stop"));
298         stop_button.set_related_action (act);
299         act = ActionManager::get_action (X_("Transport"), X_("Roll"));
300         roll_button.set_related_action (act);
301         act = ActionManager::get_action (X_("Transport"), X_("Record"));
302         rec_button.set_related_action (act);
303         act = ActionManager::get_action (X_("Transport"), X_("GotoStart"));
304         goto_start_button.set_related_action (act);
305         act = ActionManager::get_action (X_("Transport"), X_("GotoEnd"));
306         goto_end_button.set_related_action (act);
307         act = ActionManager::get_action (X_("Transport"), X_("Loop"));
308         auto_loop_button.set_related_action (act);
309         act = ActionManager::get_action (X_("Transport"), X_("PlaySelection"));
310         play_selection_button.set_related_action (act);
311         act = ActionManager::get_action (X_("MIDI"), X_("panic"));
312         midi_panic_button.set_related_action (act);
313         act = ActionManager::get_action (X_("Transport"), X_("ToggleExternalSync"));
314         sync_button.set_related_action (act);
315
316         /* clocks, etc. */
317
318         ARDOUR_UI::Clock.connect (sigc::mem_fun (primary_clock, &AudioClock::set));
319         ARDOUR_UI::Clock.connect (sigc::mem_fun (secondary_clock, &AudioClock::set));
320
321         primary_clock->ValueChanged.connect (sigc::mem_fun(*this, &ARDOUR_UI::primary_clock_value_changed));
322         secondary_clock->ValueChanged.connect (sigc::mem_fun(*this, &ARDOUR_UI::secondary_clock_value_changed));
323         big_clock->ValueChanged.connect (sigc::mem_fun(*this, &ARDOUR_UI::big_clock_value_changed));
324
325         act = ActionManager::get_action (X_("Transport"), X_("ToggleFollowEdits"));
326         follow_edits_button.set_related_action (act);
327         act = ActionManager::get_action ("Transport", "ToggleAutoInput");
328         auto_input_button.set_related_action (act);
329
330         /* alerts */
331
332         /* CANNOT sigc::bind these to clicked or toggled, must use pressed or released */
333
334         solo_alert_button.set_name ("rude solo");
335         solo_alert_button.signal_button_press_event().connect (sigc::mem_fun(*this,&ARDOUR_UI::solo_alert_press), false);
336         auditioning_alert_button.set_name ("rude audition");
337         auditioning_alert_button.signal_button_press_event().connect (sigc::mem_fun(*this,&ARDOUR_UI::audition_alert_press), false);
338         feedback_alert_button.set_name ("feedback alert");
339         feedback_alert_button.signal_button_press_event().connect (sigc::mem_fun (*this, &ARDOUR_UI::feedback_alert_press), false);
340         error_alert_button.set_name ("error alert");
341         error_alert_button.signal_button_release_event().connect (sigc::mem_fun(*this,&ARDOUR_UI::error_alert_press), false);
342         act = ActionManager::get_action (X_("Editor"), X_("toggle-log-window"));
343         error_alert_button.set_related_action(act);
344         error_alert_button.set_fallthrough_to_parent(true);
345
346         alert_box.set_homogeneous (true);
347         alert_box.set_spacing (PX_SCALE(2));
348         alert_box.pack_start (solo_alert_button, true, true);
349         alert_box.pack_start (auditioning_alert_button, true, true);
350         alert_box.pack_start (feedback_alert_button, true, true);
351
352         /* all transport buttons should be the same size vertically and
353          * horizontally 
354          */
355
356         Glib::RefPtr<SizeGroup> transport_button_size_group = SizeGroup::create (SIZE_GROUP_BOTH);
357         transport_button_size_group->add_widget (goto_start_button);
358         transport_button_size_group->add_widget (goto_end_button);
359         transport_button_size_group->add_widget (auto_loop_button);
360         transport_button_size_group->add_widget (rec_button);
361         transport_button_size_group->add_widget (play_selection_button);
362         transport_button_size_group->add_widget (roll_button);
363         transport_button_size_group->add_widget (stop_button);
364
365         /* the icon for this has an odd aspect ratio, so fatten up the button */
366         midi_panic_button.set_size_request (PX_SCALE(25), -1);
367         goto_start_button.set_size_request (PX_SCALE(28), PX_SCALE(44));
368         click_button.set_size_request (PX_SCALE(32), PX_SCALE(44));
369
370
371         HBox* tbox1 = manage (new HBox);
372         HBox* tbox2 = manage (new HBox);
373         HBox* tbox = manage (new HBox);
374
375         VBox* vbox1 = manage (new VBox);
376         VBox* vbox2 = manage (new VBox);
377
378         Alignment* a1 = manage (new Alignment);
379         Alignment* a2 = manage (new Alignment);
380
381         tbox1->set_spacing (PX_SCALE(2));
382         tbox2->set_spacing (PX_SCALE(2));
383         tbox->set_spacing (PX_SCALE(2));
384
385         if (!Profile->get_trx()) {
386                 tbox1->pack_start (midi_panic_button, true, true, 5);
387                 tbox1->pack_start (click_button, true, true, 5);
388         }
389
390         tbox1->pack_start (goto_start_button, true, true);
391         tbox1->pack_start (goto_end_button, true, true);
392         tbox1->pack_start (auto_loop_button, true, true);
393
394         if (!Profile->get_trx()) {
395                 tbox2->pack_start (play_selection_button, true, true);
396         }
397         tbox2->pack_start (roll_button, true, true);
398         tbox2->pack_start (stop_button, true, true);
399         tbox2->pack_start (rec_button, true, true, 5);
400
401         vbox1->pack_start (*tbox1, true, true);
402         vbox2->pack_start (*tbox2, true, true);
403
404         a1->add (*vbox1);
405         a1->set (0.5, 0.5, 0.0, 1.0);
406         a2->add (*vbox2);
407         a2->set (0.5, 0.5, 0.0, 1.0);
408
409         tbox->pack_start (*a1, false, false);
410         tbox->pack_start (*a2, false, false);
411
412         HBox* clock_box = manage (new HBox);
413
414         clock_box->pack_start (*primary_clock, false, false);
415         if (!ARDOUR::Profile->get_small_screen() && !ARDOUR::Profile->get_trx()) {
416                 clock_box->pack_start (*secondary_clock, false, false);
417         }
418         clock_box->set_spacing (PX_SCALE(3));
419
420         shuttle_box = manage (new ShuttleControl);
421         shuttle_box->show ();
422         
423         VBox* transport_vbox = manage (new VBox);
424         transport_vbox->set_name ("TransportBase");
425         transport_vbox->set_border_width (0);
426         transport_vbox->set_spacing (PX_SCALE(3));
427         transport_vbox->pack_start (*tbox, true, true, 0);
428
429         if (!Profile->get_trx()) {
430                 transport_vbox->pack_start (*shuttle_box, false, false, 0);
431         }
432
433         time_info_box = manage (new TimeInfoBox);
434
435         if (ARDOUR::Profile->get_trx()) {
436                 transport_tearoff_hbox.pack_start (*time_info_box, false, false);
437         }
438
439         transport_tearoff_hbox.pack_start (*transport_vbox, false, false);
440
441         /* transport related toggle controls */
442
443         VBox* auto_box = manage (new VBox);
444         auto_box->set_homogeneous (true);
445         auto_box->set_spacing (PX_SCALE(2));
446         auto_box->pack_start (sync_button, true, true);
447         if (!ARDOUR::Profile->get_trx()) {
448                 auto_box->pack_start (follow_edits_button, true, true);
449                 auto_box->pack_start (auto_return_dropdown, true, true);
450         }
451
452         if (!ARDOUR::Profile->get_trx()) {
453                 transport_tearoff_hbox.pack_start (*auto_box, false, false);
454         }
455         transport_tearoff_hbox.pack_start (*clock_box, true, true);
456
457         if (ARDOUR::Profile->get_trx()) {
458                 transport_tearoff_hbox.pack_start (*auto_box, false, false);
459         }
460
461         if (!ARDOUR::Profile->get_trx()) {
462                 transport_tearoff_hbox.pack_start (*time_info_box, false, false);
463         }
464
465         if (!ARDOUR::Profile->get_trx()) {
466                 transport_tearoff_hbox.pack_start (alert_box, false, false);
467                 transport_tearoff_hbox.pack_start (meter_box, false, false);
468                 transport_tearoff_hbox.pack_start (editor_meter_peak_display, false, false);
469         }
470
471         if (Profile->get_sae()) {
472                 Image* img = manage (new Image ((::get_icon (X_("sae")))));
473                 transport_tearoff_hbox.pack_end (*img, false, false);
474         }
475
476         /* desensitize */
477
478         set_transport_sensitivity (false);
479
480         XMLNode* tnode = tearoff_settings ("transport");
481         if (tnode) {
482                 transport_tearoff->set_state (*tnode);
483         }
484 }
485 #undef PX_SCALE
486
487 void
488 ARDOUR_UI::detach_tearoff (Box* b, Widget* w)
489 {
490 //      editor->ensure_float (transport_tearoff->tearoff_window());
491         b->remove (*w);
492 }
493
494 void
495 ARDOUR_UI::reattach_tearoff (Box* b, Widget* w, int32_t n)
496 {
497         b->pack_start (*w);
498         b->reorder_child (*w, n);
499 }
500
501 void
502 ARDOUR_UI::reattach_all_tearoffs ()
503 {
504         if (transport_tearoff) transport_tearoff->put_it_back();
505         if (editor) editor->reattach_all_tearoffs ();
506 }
507
508 void
509 ARDOUR_UI::soloing_changed (bool onoff)
510 {
511         if (solo_alert_button.get_active() != onoff) {
512                 solo_alert_button.set_active (onoff);
513         }
514 }
515
516 void
517 ARDOUR_UI::_auditioning_changed (bool onoff)
518 {
519         auditioning_alert_button.set_active (onoff);
520         set_transport_sensitivity (!onoff);
521 }
522
523 void
524 ARDOUR_UI::auditioning_changed (bool onoff)
525 {
526         UI::instance()->call_slot (MISSING_INVALIDATOR, boost::bind (&ARDOUR_UI::_auditioning_changed, this, onoff));
527 }
528
529 bool
530 ARDOUR_UI::audition_alert_press (GdkEventButton*)
531 {
532         if (_session) {
533                 _session->cancel_audition();
534         }
535         return true;
536 }
537
538 bool
539 ARDOUR_UI::solo_alert_press (GdkEventButton*)
540 {
541         if (_session) {
542                 if (_session->soloing()) {
543                         _session->set_solo (_session->get_routes(), false);
544                 } else if (_session->listening()) {
545                         _session->set_listen (_session->get_routes(), false);
546                 }
547         }
548         return true;
549 }
550
551 bool
552 ARDOUR_UI::feedback_alert_press (GdkEventButton *)
553 {
554         return true;
555 }
556
557 bool
558 ARDOUR_UI::error_alert_press (GdkEventButton* ev)
559 {
560         bool do_toggle = true;
561         if (ev->button == 1) {
562                 if (_log_not_acknowledged == LogLevelError) {
563                         // just acknowledge the error, don't hide the log if it's already visible
564                         RefPtr<Action> act = ActionManager::get_action (X_("Editor"), X_("toggle-log-window"));
565                         Glib::RefPtr<ToggleAction> tact = Glib::RefPtr<ToggleAction>::cast_dynamic (act);
566                         if (tact && tact->get_active()) {
567                                 do_toggle = false;
568                         }
569                 }
570                 _log_not_acknowledged = LogLevelNone;
571                 error_blink (false); // immediate acknowledge
572         }
573         // maybe fall through to to button toggle
574         return !do_toggle;
575 }
576
577 void
578 ARDOUR_UI::solo_blink (bool onoff)
579 {
580         if (_session == 0) {
581                 return;
582         }
583
584         if (_session->soloing() || _session->listening()) {
585                 if (onoff) {
586                         solo_alert_button.set_active (true);
587                 } else {
588                         solo_alert_button.set_active (false);
589                 }
590         } else {
591                 solo_alert_button.set_active (false);
592         }
593 }
594
595 void
596 ARDOUR_UI::sync_blink (bool onoff)
597 {
598         if (_session == 0 || !_session->config.get_external_sync()) {
599                 /* internal sync */
600                 sync_button.set_active (false);
601                 return;
602         }
603
604         if (!_session->transport_locked()) {
605                 /* not locked, so blink on and off according to the onoff argument */
606
607                 if (onoff) {
608                         sync_button.set_active (true);
609                 } else {
610                         sync_button.set_active (false);
611                 }
612         } else {
613                 /* locked */
614                 sync_button.set_active (true);
615         }
616 }
617
618 void
619 ARDOUR_UI::audition_blink (bool onoff)
620 {
621         if (_session == 0) {
622                 return;
623         }
624
625         if (_session->is_auditioning()) {
626                 if (onoff) {
627                         auditioning_alert_button.set_active (true);
628                 } else {
629                         auditioning_alert_button.set_active (false);
630                 }
631         } else {
632                 auditioning_alert_button.set_active (false);
633         }
634 }
635
636 void
637 ARDOUR_UI::feedback_blink (bool onoff)
638 {
639         if (_feedback_exists) {
640                 if (onoff) {
641                         feedback_alert_button.set_active (true);
642                 } else {
643                         feedback_alert_button.set_active (false);
644                 }
645         } else {
646                 feedback_alert_button.set_active (false);
647         }
648 }
649
650 void
651 ARDOUR_UI::error_blink (bool onoff)
652 {
653         switch (_log_not_acknowledged) {
654                 case LogLevelError:
655                         // blink
656                         if (onoff) {
657                                 error_alert_button.set_custom_led_color(0xff0000ff); // bright red
658                         } else {
659                                 error_alert_button.set_custom_led_color(0x880000ff); // dark red
660                         }
661                         break;
662                 case LogLevelWarning:
663                         error_alert_button.set_custom_led_color(0xccaa00ff); // yellow
664                         break;
665                 case LogLevelInfo:
666                         error_alert_button.set_custom_led_color(0x88cc00ff); // lime green
667                         break;
668                 default:
669                         error_alert_button.set_custom_led_color(0x333333ff); // gray
670                         break;
671         }
672 }
673
674
675
676 void
677 ARDOUR_UI::set_transport_sensitivity (bool yn)
678 {
679         ActionManager::set_sensitive (ActionManager::transport_sensitive_actions, yn);
680         shuttle_box->set_sensitive (yn);
681 }
682
683 void
684 ARDOUR_UI::editor_realized ()
685 {
686         boost::function<void (string)> pc (boost::bind (&ARDOUR_UI::parameter_changed, this, _1));
687         Config->map_parameters (pc);
688
689         reset_dpi ();
690 }
691
692 void
693 ARDOUR_UI::update_tearoff_visibility ()
694 {
695         if (editor) {
696                 editor->update_tearoff_visibility ();
697         }
698 }
699
700 void
701 ARDOUR_UI::maximise_editing_space ()
702 {
703         if (editor) {
704                 editor->maximise_editing_space ();
705         }
706 }
707
708 void
709 ARDOUR_UI::restore_editing_space ()
710 {
711         if (editor) {
712                 editor->restore_editing_space ();
713         }
714 }
715
716 void
717 ARDOUR_UI::show_ui_prefs ()
718 {
719         RefPtr<Action> act = ActionManager::get_action (X_("Window"), X_("toggle-rc-options-editor"));
720         assert (act);
721
722         act->activate();
723
724         rc_option_editor->set_current_page (_("GUI"));
725 }
726
727
728 bool
729 ARDOUR_UI::click_button_clicked (GdkEventButton* ev)
730 {
731         if (ev->button != 3) {
732                 /* this handler is just for button-3 clicks */
733                 return false;
734         }
735
736         RefPtr<Action> act = ActionManager::get_action (X_("Window"), X_("toggle-rc-options-editor"));
737         assert (act);
738
739         act->activate();
740
741         rc_option_editor->set_current_page (_("Misc"));
742         return true;
743 }
744
745 void
746 ARDOUR_UI::toggle_follow_edits ()
747 {
748         RefPtr<Action> act = ActionManager::get_action (X_("Transport"), X_("ToggleFollowEdits"));
749         assert (act);
750
751         RefPtr<ToggleAction> tact = RefPtr<ToggleAction>::cast_dynamic (act);
752         assert (tact);
753
754         ui_config->set_follow_edits (tact->get_active ());
755 }
756
757