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