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