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