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