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