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