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