always pack the log-LED into the status widget.
[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 (auto_return_button, _("Return to last playback start when stopped"));
137         set_tip (follow_edits_button, _("Playhead follows Range Selections and Edits"));
138         set_tip (auto_input_button, _("Be sensible about input monitoring"));
139         set_tip (click_button, _("Enable/Disable audio click"));
140         set_tip (solo_alert_button, _("When active, something is soloed.\nClick to de-solo everything"));
141         set_tip (auditioning_alert_button, _("When active, auditioning is taking place\nClick to stop the audition"));
142         set_tip (feedback_alert_button, _("When active, there is a feedback loop."));
143         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"));
144         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"));
145         set_tip (editor_meter_peak_display, _("Reset All Peak Indicators"));
146         set_tip (error_alert_button, _("Show Error Log and acknowledge warnings"));
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
177         ArdourLogLevel ll = LogLevelNone;
178
179         if (strcmp (prefix, _("[ERROR]: ")) == 0) {
180                 text = "<span color=\"red\" weight=\"bold\">";
181                 ll = LogLevelError;
182         } else if (strcmp (prefix, _("[WARNING]: ")) == 0) {
183                 text = "<span color=\"yellow\" weight=\"bold\">";
184                 ll = LogLevelWarning;
185         } else if (strcmp (prefix, _("[INFO]: ")) == 0) {
186                 text = "<span color=\"green\" weight=\"bold\">";
187                 ll = LogLevelInfo;
188         } else {
189                 text = "<span color=\"white\" weight=\"bold\">???";
190         }
191
192         _log_not_acknowledged = std::max(_log_not_acknowledged, ll);
193
194 #ifdef TOP_MENUBAR
195         text += prefix;
196         text += "</span>";
197         text += msg;
198
199         status_bar_label.set_markup (text);
200 #endif
201 }
202
203 XMLNode*
204 ARDOUR_UI::tearoff_settings (const char* name) const
205 {
206         XMLNode* ui_node = Config->extra_xml(X_("UI"));
207
208         if (ui_node) {
209                 XMLNode* tearoff_node = ui_node->child (X_("Tearoffs"));
210                 if (tearoff_node) {
211                         XMLNode* mnode = tearoff_node->child (name);
212                         return mnode;
213                 }
214         }
215
216         return 0;
217 }
218
219 void
220 ARDOUR_UI::setup_transport ()
221 {
222         RefPtr<Action> act;
223
224         transport_tearoff_hbox.set_border_width (3);
225         transport_tearoff_hbox.set_spacing (3);
226
227         transport_tearoff = manage (new TearOff (transport_tearoff_hbox));
228         transport_tearoff->set_name ("TransportBase");
229         transport_tearoff->tearoff_window().signal_key_press_event().connect (sigc::bind (sigc::ptr_fun (relay_key_press), &transport_tearoff->tearoff_window()), false);
230
231         if (Profile->get_sae() || Profile->get_mixbus()) {
232                 transport_tearoff->set_can_be_torn_off (false);
233         }
234
235         transport_hbox.pack_start (*transport_tearoff, true, false);
236
237         transport_base.set_name ("TransportBase");
238         transport_base.add (transport_hbox);
239
240         transport_frame.set_shadow_type (SHADOW_OUT);
241         transport_frame.set_name ("BaseFrame");
242         transport_frame.add (transport_base);
243
244         transport_tearoff->Detach.connect (sigc::bind (sigc::mem_fun(*this, &ARDOUR_UI::detach_tearoff), static_cast<Box*>(&top_packer),
245                                                  static_cast<Widget*>(&transport_frame)));
246         transport_tearoff->Attach.connect (sigc::bind (sigc::mem_fun(*this, &ARDOUR_UI::reattach_tearoff), static_cast<Box*> (&top_packer),
247                                                  static_cast<Widget*> (&transport_frame), 1));
248         transport_tearoff->Hidden.connect (sigc::bind (sigc::mem_fun(*this, &ARDOUR_UI::detach_tearoff), static_cast<Box*>(&top_packer),
249                                                  static_cast<Widget*>(&transport_frame)));
250         transport_tearoff->Visible.connect (sigc::bind (sigc::mem_fun(*this, &ARDOUR_UI::reattach_tearoff), static_cast<Box*> (&top_packer),
251                                                   static_cast<Widget*> (&transport_frame), 1));
252
253         auto_return_button.set_text(_("Auto Return"));
254
255         follow_edits_button.set_text(_("Follow Edits"));
256
257 //      auto_input_button.set_text (_("Auto Input"));
258
259         click_button.set_image (get_icon (X_("metronome")));
260         act = ActionManager::get_action ("Transport", "ToggleClick");
261         click_button.set_related_action (act);
262         click_button.signal_button_press_event().connect (sigc::mem_fun (*this, &ARDOUR_UI::click_button_clicked), false);
263
264         auto_return_button.set_name ("transport option button");
265         follow_edits_button.set_name ("transport option button");
266         auto_input_button.set_name ("transport option button");
267
268         /* these have to provide a clear indication of active state */
269
270         click_button.set_name ("transport button");
271         sync_button.set_name ("transport active option button");
272
273         stop_button.set_active (true);
274
275         goto_start_button.set_image (get_icon (X_("transport_start")));
276         goto_end_button.set_image (get_icon (X_("transport_end")));
277         roll_button.set_image (get_icon (X_("transport_play")));
278         stop_button.set_image (get_icon (X_("transport_stop")));
279         play_selection_button.set_image (get_icon (X_("transport_range")));
280         auto_loop_button.set_image (get_icon (X_("transport_loop")));
281
282         rec_button.set_elements ((ArdourButton::Element) (ArdourButton::Edge|ArdourButton::Body|ArdourButton::RecButton));
283
284         midi_panic_button.set_image (get_icon (X_("midi_panic")));
285         /* the icon for this has an odd aspect ratio, so fatten up the button */
286         midi_panic_button.set_size_request (25, -1);
287         
288         act = ActionManager::get_action (X_("Transport"), X_("Stop"));
289         stop_button.set_related_action (act);
290         act = ActionManager::get_action (X_("Transport"), X_("Roll"));
291         roll_button.set_related_action (act);
292         act = ActionManager::get_action (X_("Transport"), X_("Record"));
293         rec_button.set_related_action (act);
294         act = ActionManager::get_action (X_("Transport"), X_("GotoStart"));
295         goto_start_button.set_related_action (act);
296         act = ActionManager::get_action (X_("Transport"), X_("GotoEnd"));
297         goto_end_button.set_related_action (act);
298         act = ActionManager::get_action (X_("Transport"), X_("Loop"));
299         auto_loop_button.set_related_action (act);
300         act = ActionManager::get_action (X_("Transport"), X_("PlaySelection"));
301         play_selection_button.set_related_action (act);
302         act = ActionManager::get_action (X_("MIDI"), X_("panic"));
303         midi_panic_button.set_related_action (act);
304         act = ActionManager::get_action (X_("Transport"), X_("ToggleExternalSync"));
305         sync_button.set_related_action (act);
306
307         /* clocks, etc. */
308
309         ARDOUR_UI::Clock.connect (sigc::mem_fun (primary_clock, &AudioClock::set));
310         ARDOUR_UI::Clock.connect (sigc::mem_fun (secondary_clock, &AudioClock::set));
311
312         primary_clock->ValueChanged.connect (sigc::mem_fun(*this, &ARDOUR_UI::primary_clock_value_changed));
313         secondary_clock->ValueChanged.connect (sigc::mem_fun(*this, &ARDOUR_UI::secondary_clock_value_changed));
314         big_clock->ValueChanged.connect (sigc::mem_fun(*this, &ARDOUR_UI::big_clock_value_changed));
315
316         act = ActionManager::get_action ("Transport", "ToggleAutoReturn");
317         auto_return_button.set_related_action (act);
318         act = ActionManager::get_action (X_("Transport"), X_("ToggleFollowEdits"));
319         follow_edits_button.set_related_action (act);
320         act = ActionManager::get_action ("Transport", "ToggleAutoInput");
321         auto_input_button.set_related_action (act);
322
323         /* alerts */
324
325         /* CANNOT sigc::bind these to clicked or toggled, must use pressed or released */
326
327         solo_alert_button.set_name ("rude solo");
328         solo_alert_button.signal_button_press_event().connect (sigc::mem_fun(*this,&ARDOUR_UI::solo_alert_press), false);
329         auditioning_alert_button.set_name ("rude audition");
330         auditioning_alert_button.signal_button_press_event().connect (sigc::mem_fun(*this,&ARDOUR_UI::audition_alert_press), false);
331         feedback_alert_button.set_name ("feedback alert");
332         feedback_alert_button.signal_button_press_event().connect (sigc::mem_fun (*this, &ARDOUR_UI::feedback_alert_press), false);
333         error_alert_button.set_name ("error alert");
334         error_alert_button.signal_button_press_event().connect (sigc::mem_fun(*this,&ARDOUR_UI::error_alert_press), false);
335
336         alert_box.set_homogeneous (true);
337         alert_box.set_spacing (2);
338         alert_box.pack_start (solo_alert_button, true, true);
339         alert_box.pack_start (auditioning_alert_button, true, true);
340         alert_box.pack_start (feedback_alert_button, true, true);
341
342         /* all transport buttons should be the same size vertically and
343          * horizontally 
344          */
345
346         Glib::RefPtr<SizeGroup> transport_button_size_group = SizeGroup::create (SIZE_GROUP_BOTH);
347         transport_button_size_group->add_widget (goto_start_button);
348         transport_button_size_group->add_widget (goto_end_button);
349         transport_button_size_group->add_widget (auto_loop_button);
350         transport_button_size_group->add_widget (rec_button);
351         transport_button_size_group->add_widget (play_selection_button);
352         transport_button_size_group->add_widget (roll_button);
353         transport_button_size_group->add_widget (stop_button);
354
355         goto_start_button.set_size_request (-1, 40);
356
357         HBox* tbox1 = manage (new HBox);
358         HBox* tbox2 = manage (new HBox);
359         HBox* tbox = manage (new HBox);
360
361         VBox* vbox1 = manage (new VBox);
362         VBox* vbox2 = manage (new VBox);
363
364         Alignment* a1 = manage (new Alignment);
365         Alignment* a2 = manage (new Alignment);
366
367         tbox1->set_spacing (2);
368         tbox2->set_spacing (2);
369         tbox->set_spacing (2);
370
371         if (!Profile->get_trx()) {
372                 tbox1->pack_start (midi_panic_button, true, true, 5);
373                 tbox1->pack_start (click_button, true, true, 5);
374         }
375
376         tbox1->pack_start (goto_start_button, true, true);
377         tbox1->pack_start (goto_end_button, true, true);
378         tbox1->pack_start (auto_loop_button, true, true);
379
380         if (!Profile->get_trx()) {
381                 tbox2->pack_start (play_selection_button, true, true);
382         }
383         tbox2->pack_start (roll_button, true, true);
384         tbox2->pack_start (stop_button, true, true);
385         tbox2->pack_start (rec_button, true, true, 5);
386
387         vbox1->pack_start (*tbox1, true, true);
388         vbox2->pack_start (*tbox2, true, true);
389
390         a1->add (*vbox1);
391         a1->set (0.5, 0.5, 0.0, 1.0);
392         a2->add (*vbox2);
393         a2->set (0.5, 0.5, 0.0, 1.0);
394
395         tbox->pack_start (*a1, false, false);
396         tbox->pack_start (*a2, false, false);
397
398         HBox* clock_box = manage (new HBox);
399
400         clock_box->pack_start (*primary_clock, false, false);
401         if (!ARDOUR::Profile->get_small_screen() && !ARDOUR::Profile->get_trx()) {
402                 clock_box->pack_start (*secondary_clock, false, false);
403         }
404         clock_box->set_spacing (3);
405
406         shuttle_box = manage (new ShuttleControl);
407         shuttle_box->show ();
408         
409         VBox* transport_vbox = manage (new VBox);
410         transport_vbox->set_name ("TransportBase");
411         transport_vbox->set_border_width (0);
412         transport_vbox->set_spacing (3);
413         transport_vbox->pack_start (*tbox, true, true, 0);
414
415         if (!Profile->get_trx()) {
416                 transport_vbox->pack_start (*shuttle_box, false, false, 0);
417         }
418
419         time_info_box = manage (new TimeInfoBox);
420
421         if (ARDOUR::Profile->get_trx()) {
422                 transport_tearoff_hbox.pack_start (*time_info_box, false, false);
423         }
424
425         transport_tearoff_hbox.pack_start (*transport_vbox, false, false);
426
427         /* transport related toggle controls */
428
429         VBox* auto_box = manage (new VBox);
430         auto_box->set_homogeneous (true);
431         auto_box->set_spacing (2);
432         auto_box->pack_start (sync_button, true, true);
433         if (!ARDOUR::Profile->get_trx()) {
434                 auto_box->pack_start (follow_edits_button, true, true);
435                 auto_box->pack_start (auto_return_button, true, true);
436         }
437
438         if (!ARDOUR::Profile->get_trx()) {
439                 transport_tearoff_hbox.pack_start (*auto_box, false, false);
440         }
441         transport_tearoff_hbox.pack_start (*clock_box, true, true);
442
443         if (ARDOUR::Profile->get_trx()) {
444                 transport_tearoff_hbox.pack_start (*auto_box, false, false);
445         }
446
447         if (!ARDOUR::Profile->get_trx()) {
448                 transport_tearoff_hbox.pack_start (*time_info_box, false, false);
449         }
450
451         if (ARDOUR::Profile->get_small_screen()) {
452                 transport_tearoff_hbox.pack_start (_editor_transport_box, false, false);
453         }
454
455         if (!ARDOUR::Profile->get_trx()) {
456                 transport_tearoff_hbox.pack_start (alert_box, false, false);
457                 transport_tearoff_hbox.pack_start (meter_box, false, false);
458                 transport_tearoff_hbox.pack_start (editor_meter_peak_display, false, false);
459         }
460
461         if (Profile->get_sae()) {
462                 Image* img = manage (new Image ((::get_icon (X_("sae")))));
463                 transport_tearoff_hbox.pack_end (*img, false, false);
464         }
465
466         /* desensitize */
467
468         set_transport_sensitivity (false);
469
470         XMLNode* tnode = tearoff_settings ("transport");
471         if (tnode) {
472                 transport_tearoff->set_state (*tnode);
473         }
474 }
475
476 void
477 ARDOUR_UI::detach_tearoff (Box* b, Widget* w)
478 {
479 //      editor->ensure_float (transport_tearoff->tearoff_window());
480         b->remove (*w);
481 }
482
483 void
484 ARDOUR_UI::reattach_tearoff (Box* b, Widget* w, int32_t n)
485 {
486         b->pack_start (*w);
487         b->reorder_child (*w, n);
488 }
489
490 void
491 ARDOUR_UI::reattach_all_tearoffs ()
492 {
493         if (transport_tearoff) transport_tearoff->put_it_back();
494         if (editor) editor->reattach_all_tearoffs ();
495 }
496
497 void
498 ARDOUR_UI::soloing_changed (bool onoff)
499 {
500         if (solo_alert_button.get_active() != onoff) {
501                 solo_alert_button.set_active (onoff);
502         }
503 }
504
505 void
506 ARDOUR_UI::_auditioning_changed (bool onoff)
507 {
508         auditioning_alert_button.set_active (onoff);
509         set_transport_sensitivity (!onoff);
510 }
511
512 void
513 ARDOUR_UI::auditioning_changed (bool onoff)
514 {
515         UI::instance()->call_slot (MISSING_INVALIDATOR, boost::bind (&ARDOUR_UI::_auditioning_changed, this, onoff));
516 }
517
518 bool
519 ARDOUR_UI::audition_alert_press (GdkEventButton*)
520 {
521         if (_session) {
522                 _session->cancel_audition();
523         }
524         return true;
525 }
526
527 bool
528 ARDOUR_UI::solo_alert_press (GdkEventButton*)
529 {
530         if (_session) {
531                 if (_session->soloing()) {
532                         _session->set_solo (_session->get_routes(), false);
533                 } else if (_session->listening()) {
534                         _session->set_listen (_session->get_routes(), false);
535                 }
536         }
537         return true;
538 }
539
540 bool
541 ARDOUR_UI::feedback_alert_press (GdkEventButton *)
542 {
543         return true;
544 }
545
546 bool
547 ARDOUR_UI::error_alert_press (GdkEventButton*)
548 {
549         _log_not_acknowledged = LogLevelNone;
550         error_blink (false); // immediate acknowledge
551         UI::show_errors();
552         return true;
553 }
554
555 void
556 ARDOUR_UI::solo_blink (bool onoff)
557 {
558         if (_session == 0) {
559                 return;
560         }
561
562         if (_session->soloing() || _session->listening()) {
563                 if (onoff) {
564                         solo_alert_button.set_active (true);
565                 } else {
566                         solo_alert_button.set_active (false);
567                 }
568         } else {
569                 solo_alert_button.set_active (false);
570         }
571 }
572
573 void
574 ARDOUR_UI::sync_blink (bool onoff)
575 {
576         if (_session == 0 || !_session->config.get_external_sync()) {
577                 /* internal sync */
578                 sync_button.set_active (false);
579                 return;
580         }
581
582         if (!_session->transport_locked()) {
583                 /* not locked, so blink on and off according to the onoff argument */
584
585                 if (onoff) {
586                         sync_button.set_active (true);
587                 } else {
588                         sync_button.set_active (false);
589                 }
590         } else {
591                 /* locked */
592                 sync_button.set_active (true);
593         }
594 }
595
596 void
597 ARDOUR_UI::audition_blink (bool onoff)
598 {
599         if (_session == 0) {
600                 return;
601         }
602
603         if (_session->is_auditioning()) {
604                 if (onoff) {
605                         auditioning_alert_button.set_active (true);
606                 } else {
607                         auditioning_alert_button.set_active (false);
608                 }
609         } else {
610                 auditioning_alert_button.set_active (false);
611         }
612 }
613
614 void
615 ARDOUR_UI::feedback_blink (bool onoff)
616 {
617         if (_feedback_exists) {
618                 if (onoff) {
619                         feedback_alert_button.set_active (true);
620                 } else {
621                         feedback_alert_button.set_active (false);
622                 }
623         } else {
624                 feedback_alert_button.set_active (false);
625         }
626 }
627
628 void
629 ARDOUR_UI::error_blink (bool onoff)
630 {
631         switch (_log_not_acknowledged) {
632                 case LogLevelError:
633                         // blink
634                         if (onoff) {
635                                 error_alert_button.set_custom_led_color(0xff0000ff); // bright red
636                                 error_alert_button.set_active (true);
637                         } else {
638                                 error_alert_button.set_custom_led_color(0x880000ff); // dark red
639                                 error_alert_button.set_active (false);
640                         }
641                         break;
642                 case LogLevelWarning:
643                         error_alert_button.set_custom_led_color(0xccaa00ff); // yellow
644                         error_alert_button.set_active (true);
645                         break;
646                 case LogLevelInfo:
647                         error_alert_button.set_custom_led_color(0x88cc00ff); // lime green
648                         error_alert_button.set_active (true);
649                         break;
650                 default:
651                         error_alert_button.set_custom_led_color(0x333333ff); // gray
652                         error_alert_button.set_active (false);
653                         break;
654         }
655 }
656
657
658
659 void
660 ARDOUR_UI::set_transport_sensitivity (bool yn)
661 {
662         ActionManager::set_sensitive (ActionManager::transport_sensitive_actions, yn);
663         shuttle_box->set_sensitive (yn);
664 }
665
666 void
667 ARDOUR_UI::editor_realized ()
668 {
669         boost::function<void (string)> pc (boost::bind (&ARDOUR_UI::parameter_changed, this, _1));
670         Config->map_parameters (pc);
671
672         reset_dpi ();
673 }
674
675 void
676 ARDOUR_UI::update_tearoff_visibility ()
677 {
678         if (editor) {
679                 editor->update_tearoff_visibility ();
680         }
681 }
682
683 void
684 ARDOUR_UI::maximise_editing_space ()
685 {
686         if (editor) {
687                 editor->maximise_editing_space ();
688         }
689 }
690
691 void
692 ARDOUR_UI::restore_editing_space ()
693 {
694         if (editor) {
695                 editor->restore_editing_space ();
696         }
697 }
698
699 void
700 ARDOUR_UI::show_ui_prefs ()
701 {
702         RefPtr<Action> act = ActionManager::get_action (X_("Window"), X_("toggle-rc-options-editor"));
703         assert (act);
704
705         act->activate();
706
707         rc_option_editor->set_current_page (_("GUI"));
708 }
709
710
711 bool
712 ARDOUR_UI::click_button_clicked (GdkEventButton* ev)
713 {
714         if (ev->button != 3) {
715                 /* this handler is just for button-3 clicks */
716                 return false;
717         }
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 (_("Misc"));
725         return true;
726 }
727
728 void
729 ARDOUR_UI::toggle_follow_edits ()
730 {
731         RefPtr<Action> act = ActionManager::get_action (X_("Transport"), X_("ToggleFollowEdits"));
732         assert (act);
733
734         RefPtr<ToggleAction> tact = RefPtr<ToggleAction>::cast_dynamic (act);
735         assert (tact);
736
737         ui_config->set_follow_edits (tact->get_active ());
738 }
739
740