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