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