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