Theme latency-disable-button
[ardour.git] / gtk2_ardour / ardour_ui2.cc
1 /*
2  * Copyright (C) 2005-2006 Taybin Rutkin <taybin@taybin.com>
3  * Copyright (C) 2005-2015 Tim Mayberry <mojofunk@gmail.com>
4  * Copyright (C) 2005-2018 Paul Davis <paul@linuxaudiosystems.com>
5  * Copyright (C) 2006-2007 Doug McLain <doug@nostar.net>
6  * Copyright (C) 2006-2012 David Robillard <d@drobilla.net>
7  * Copyright (C) 2006 Karsten Wiese <fzuuzf@googlemail.com>
8  * Copyright (C) 2006 Nick Mainsbridge <mainsbridge@gmail.com>
9  * Copyright (C) 2007-2012 Carl Hetherington <carl@carlh.net>
10  * Copyright (C) 2008 Hans Baier <hansfbaier@googlemail.com>
11  * Copyright (C) 2012-2019 Robin Gareus <robin@gareus.org>
12  * Copyright (C) 2014-2018 Ben Loftis <ben@harrisonconsoles.com>
13  *
14  * This program is free software; you can redistribute it and/or modify
15  * it under the terms of the GNU General Public License as published by
16  * the Free Software Foundation; either version 2 of the License, or
17  * (at your option) any later version.
18  *
19  * This program is distributed in the hope that it will be useful,
20  * but WITHOUT ANY WARRANTY; without even the implied warranty of
21  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
22  * GNU General Public License for more details.
23  *
24  * You should have received a copy of the GNU General Public License along
25  * with this program; if not, write to the Free Software Foundation, Inc.,
26  * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
27  */
28
29 #ifdef WAF_BUILD
30 #include "gtk2ardour-config.h"
31 #endif
32
33 #include <fcntl.h>
34 #include <signal.h>
35 #include <unistd.h>
36 #include <cerrno>
37 #include <iostream>
38 #include <cmath>
39
40 #include <sigc++/bind.h>
41 #include <gtkmm/settings.h>
42
43 #include "canvas/canvas.h"
44
45 #include "pbd/error.h"
46 #include "pbd/basename.h"
47 #include "pbd/fastlog.h"
48
49 #include "gtkmm2ext/utils.h"
50 #include "gtkmm2ext/window_title.h"
51
52 #include "ardour/profile.h"
53 #include "ardour/session.h"
54 #include "ardour/types.h"
55
56 #include "ardour_ui.h"
57 #include "keyboard.h"
58 #include "public_editor.h"
59 #include "audio_clock.h"
60 #include "actions.h"
61 #include "main_clock.h"
62 #include "mixer_ui.h"
63 #include "utils.h"
64 #include "time_info_box.h"
65 #include "midi_tracer.h"
66 #include "global_port_matrix.h"
67 #include "location_ui.h"
68 #include "rc_option_editor.h"
69
70 #include "pbd/i18n.h"
71
72 using namespace std;
73 using namespace ARDOUR;
74 using namespace PBD;
75 using namespace Gtkmm2ext;
76 using namespace ArdourWidgets;
77 using namespace Gtk;
78 using namespace Glib;
79 using namespace ARDOUR_UI_UTILS;
80
81 void
82 ARDOUR_UI::setup_tooltips ()
83 {
84         ArdourCanvas::Canvas::set_tooltip_timeout (Gtk::Settings::get_default()->property_gtk_tooltip_timeout ());
85
86         set_tip (auto_return_button, _("Return to last playback start when stopped"));
87         set_tip (follow_edits_button, _("Playhead follows Range tool clicks, and Range selections"));
88         set_tip (auto_input_button, _("Track Input Monitoring automatically follows transport state"));
89         parameter_changed("click-gain");
90         set_tip (solo_alert_button, _("When active, something is soloed.\nClick to de-solo everything"));
91         set_tip (auditioning_alert_button, _("When active, auditioning is taking place.\nClick to stop the audition"));
92         set_tip (feedback_alert_button, _("When active, there is a feedback loop."));
93         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"));
94         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"));
95         set_tip (editor_meter_peak_display, _("Reset All Peak Meters"));
96         set_tip (error_alert_button, _("Show Error Log and acknowledge warnings"));
97
98         set_tip (latency_disable_button, _("Disable all latency compensation. This will result in playback and monitoring to not be out of sync."));
99
100         synchronize_sync_source_and_video_pullup ();
101
102         editor->setup_tooltips ();
103 }
104
105 bool
106 ARDOUR_UI::status_bar_button_press (GdkEventButton* ev)
107 {
108         bool handled = false;
109
110         switch (ev->button) {
111         case 1:
112                 status_bar_label.set_text ("");
113                 handled = true;
114                 break;
115         default:
116                 break;
117         }
118
119         return handled;
120 }
121
122 void
123 ARDOUR_UI::display_message (const char* prefix, gint prefix_len, RefPtr<TextBuffer::Tag> ptag, RefPtr<TextBuffer::Tag> mtag, const char* msg)
124 {
125         UI::display_message (prefix, prefix_len, ptag, mtag, msg);
126
127         ArdourLogLevel ll = LogLevelNone;
128
129         if (strcmp (prefix, _("[ERROR]: ")) == 0) {
130                 ll = LogLevelError;
131         } else if (strcmp (prefix, _("[WARNING]: ")) == 0) {
132                 ll = LogLevelWarning;
133         } else if (strcmp (prefix, _("[INFO]: ")) == 0) {
134                 ll = LogLevelInfo;
135         }
136
137         _log_not_acknowledged = std::max(_log_not_acknowledged, ll);
138 }
139
140 XMLNode*
141 ARDOUR_UI::tearoff_settings (const char* name) const
142 {
143         XMLNode* ui_node = Config->extra_xml(X_("UI"));
144
145         if (ui_node) {
146                 XMLNode* tearoff_node = ui_node->child (X_("Tearoffs"));
147                 if (tearoff_node) {
148                         XMLNode* mnode = tearoff_node->child (name);
149                         return mnode;
150                 }
151         }
152
153         return 0;
154 }
155
156 #define PX_SCALE(px) std::max((float)px, rintf((float)px * UIConfiguration::instance().get_ui_scale()))
157
158 static
159 bool drag_failed (const Glib::RefPtr<Gdk::DragContext>& context, DragResult result, Tabbable* tab)
160 {
161         if (result == Gtk::DRAG_RESULT_NO_TARGET) {
162                 tab->detach ();
163                 return true;
164         }
165         return false;
166 }
167
168 void
169 ARDOUR_UI::repack_transport_hbox ()
170 {
171         if (time_info_box) {
172                 if (time_info_box->get_parent()) {
173                         transport_hbox.remove (*time_info_box);
174                 }
175                 if (UIConfiguration::instance().get_show_toolbar_selclock ()) {
176                         transport_hbox.pack_start (*time_info_box, false, false);
177                         time_info_box->show();
178                 }
179         }
180
181         if (mini_timeline.get_parent()) {
182                 transport_hbox.remove (mini_timeline);
183         }
184         if (UIConfiguration::instance().get_show_mini_timeline ()) {
185                 transport_hbox.pack_start (mini_timeline, true, true);
186                 mini_timeline.show();
187         }
188
189         if (editor_meter) {
190                 if (editor_meter_table.get_parent()) {
191                         transport_hbox.remove (editor_meter_table);
192                 }
193                 if (meterbox_spacer.get_parent()) {
194                         transport_hbox.remove (meterbox_spacer);
195                         transport_hbox.remove (meterbox_spacer2);
196                 }
197
198                 if (UIConfiguration::instance().get_show_editor_meter()) {
199                         transport_hbox.pack_end (meterbox_spacer, false, false, 3);
200                         transport_hbox.pack_end (editor_meter_table, false, false);
201                         transport_hbox.pack_end (meterbox_spacer2, false, false, 3);
202                         editor_meter_table.show();
203                         meterbox_spacer.show();
204                         meterbox_spacer2.show();
205                 }
206         }
207
208         bool show_mon = UIConfiguration::instance().get_show_toolbar_monitoring ();
209         if (show_mon) {
210                 monitor_in_button.show ();
211                 monitor_disk_button.show ();
212                 auto_input_button.show ();
213                 monitoring_spacer.show ();
214         } else {
215                 monitor_in_button.hide ();
216                 monitor_disk_button.hide ();
217                 auto_input_button.hide ();
218                 monitoring_spacer.hide ();
219         }
220
221         bool show_rec = UIConfiguration::instance().get_show_toolbar_recpunch ();
222         if (show_rec) {
223                 punch_label.show ();
224                 layered_label.show ();
225                 punch_in_button.show ();
226                 punch_out_button.show ();
227                 layered_button.show ();
228                 recpunch_spacer.show ();
229         } else {
230                 punch_label.hide ();
231                 layered_label.hide ();
232                 punch_in_button.hide ();
233                 punch_out_button.hide ();
234                 layered_button.hide ();
235                 recpunch_spacer.hide ();
236         }
237
238         bool show_pdc = UIConfiguration::instance().get_show_toolbar_latency ();
239         if (show_pdc) {
240                 latency_disable_button.show ();
241                 route_latency_value.show ();
242                 io_latency_value.show ();
243                 latency_spacer.show ();
244         } else {
245                 latency_disable_button.hide ();
246                 route_latency_value.hide ();
247                 io_latency_value.hide ();
248                 latency_spacer.hide ();
249         }
250 }
251
252 void
253 ARDOUR_UI::update_clock_visibility ()
254 {
255         if (ARDOUR::Profile->get_small_screen()) {
256                 return;
257         }
258         if (UIConfiguration::instance().get_show_secondary_clock ()) {
259                 secondary_clock->show();
260                 secondary_clock->left_btn()->show();
261                 secondary_clock->right_btn()->show();
262                 if (secondary_clock_spacer) {
263                         secondary_clock_spacer->show();
264                 }
265         } else {
266                 secondary_clock->hide();
267                 secondary_clock->left_btn()->hide();
268                 secondary_clock->right_btn()->hide();
269                 if (secondary_clock_spacer) {
270                         secondary_clock_spacer->hide();
271                 }
272         }
273 }
274
275 void
276 ARDOUR_UI::setup_transport ()
277 {
278         RefPtr<Action> act;
279         /* setup actions */
280
281         act = ActionManager::get_action (X_("Transport"), X_("ToggleExternalSync"));
282         sync_button.set_related_action (act);
283         sync_button.signal_button_press_event().connect (sigc::mem_fun (*this, &ARDOUR_UI::sync_button_clicked), false);
284
285         sync_button.set_sizing_text (S_("LogestSync|M-Clk"));
286
287         /* CANNOT sigc::bind these to clicked or toggled, must use pressed or released */
288         act = ActionManager::get_action (X_("Main"), X_("cancel-solo"));
289         solo_alert_button.set_related_action (act);
290         auditioning_alert_button.signal_clicked.connect (sigc::mem_fun(*this,&ARDOUR_UI::audition_alert_clicked));
291         error_alert_button.signal_button_release_event().connect (sigc::mem_fun(*this,&ARDOUR_UI::error_alert_press), false);
292         act = ActionManager::get_action (X_("Editor"), X_("toggle-log-window"));
293         error_alert_button.set_related_action(act);
294         error_alert_button.set_fallthrough_to_parent(true);
295
296         layered_button.signal_clicked.connect (sigc::mem_fun(*this,&ARDOUR_UI::layered_button_clicked));
297
298         editor_visibility_button.set_related_action (ActionManager::get_action (X_("Common"), X_("change-editor-visibility")));
299         mixer_visibility_button.set_related_action (ActionManager::get_action (X_("Common"), X_("change-mixer-visibility")));
300         prefs_visibility_button.set_related_action (ActionManager::get_action (X_("Common"), X_("change-preferences-visibility")));
301
302         act = ActionManager::get_action ("Transport", "ToggleAutoReturn");
303         auto_return_button.set_related_action (act);
304         act = ActionManager::get_action (X_("Transport"), X_("ToggleFollowEdits"));
305         follow_edits_button.set_related_action (act);
306         act = ActionManager::get_action ("Transport", "ToggleAutoInput");
307         auto_input_button.set_related_action (act);
308
309         act = ActionManager::get_action ("Transport", "TogglePunchIn");
310         punch_in_button.set_related_action (act);
311         act = ActionManager::get_action ("Transport", "TogglePunchOut");
312         punch_out_button.set_related_action (act);
313
314         act = ActionManager::get_action ("Transport", "SessionMonitorIn");
315         monitor_in_button.set_related_action (act);
316         act = ActionManager::get_action ("Transport", "SessionMonitorDisk");
317         monitor_disk_button.set_related_action (act);
318
319         act = ActionManager::get_action ("Main", "ToggleLatencyCompensation");
320         latency_disable_button.set_related_action (act);
321
322         set_size_request_to_display_given_text (route_latency_value, "1000 spl", 0, 0);
323         set_size_request_to_display_given_text (io_latency_value, "1000 spl", 0, 0);
324
325         /* connect signals */
326         ARDOUR_UI::Clock.connect (sigc::bind (sigc::mem_fun (primary_clock, &MainClock::set), false, 0));
327         ARDOUR_UI::Clock.connect (sigc::bind (sigc::mem_fun (secondary_clock, &MainClock::set), false, 0));
328
329         primary_clock->ValueChanged.connect (sigc::mem_fun(*this, &ARDOUR_UI::primary_clock_value_changed));
330         secondary_clock->ValueChanged.connect (sigc::mem_fun(*this, &ARDOUR_UI::secondary_clock_value_changed));
331         big_clock->ValueChanged.connect (sigc::mem_fun(*this, &ARDOUR_UI::big_clock_value_changed));
332
333         editor_visibility_button.signal_drag_failed().connect (sigc::bind (sigc::ptr_fun (drag_failed), editor));
334         mixer_visibility_button.signal_drag_failed().connect (sigc::bind (sigc::ptr_fun (drag_failed), mixer));
335         prefs_visibility_button.signal_drag_failed().connect (sigc::bind (sigc::ptr_fun (drag_failed), rc_option_editor));
336
337         /* catch context clicks so that we can show a menu on these buttons */
338
339         editor_visibility_button.signal_button_press_event().connect (sigc::bind (sigc::mem_fun (*this, &ARDOUR_UI::tabbable_visibility_button_press), X_("editor")), false);
340         mixer_visibility_button.signal_button_press_event().connect (sigc::bind (sigc::mem_fun (*this, &ARDOUR_UI::tabbable_visibility_button_press), X_("mixer")), false);
341         prefs_visibility_button.signal_button_press_event().connect (sigc::bind (sigc::mem_fun (*this, &ARDOUR_UI::tabbable_visibility_button_press), X_("preferences")), false);
342
343         /* setup widget style/name */
344
345         auto_return_button.set_name ("transport option button");
346         follow_edits_button.set_name ("transport option button");
347
348         solo_alert_button.set_name ("rude solo");
349         auditioning_alert_button.set_name ("rude audition");
350         feedback_alert_button.set_name ("feedback alert");
351         error_alert_button.set_name ("error alert");
352
353         solo_alert_button.set_elements (ArdourButton::Element(ArdourButton::Body|ArdourButton::Text));
354         auditioning_alert_button.set_elements (ArdourButton::Element(ArdourButton::Body|ArdourButton::Text));
355         feedback_alert_button.set_elements (ArdourButton::Element(ArdourButton::Body|ArdourButton::Text));
356
357         solo_alert_button.set_layout_font (UIConfiguration::instance().get_SmallerFont());
358         auditioning_alert_button.set_layout_font (UIConfiguration::instance().get_SmallerFont());
359         feedback_alert_button.set_layout_font (UIConfiguration::instance().get_SmallerFont());
360
361         editor_visibility_button.set_name (X_("page switch button"));
362         mixer_visibility_button.set_name (X_("page switch button"));
363         prefs_visibility_button.set_name (X_("page switch button"));
364
365         punch_in_button.set_name ("punch button");
366         punch_out_button.set_name ("punch button");
367         layered_button.set_name (("layered button"));
368
369         monitor_in_button.set_name ("monitor button");
370         monitor_disk_button.set_name ("monitor button");
371         auto_input_button.set_name ("transport option button");
372
373         latency_disable_button.set_name ("latency button");
374
375         sync_button.set_name ("transport active option button");
376
377         /* and widget text */
378         auto_return_button.set_text(_("Auto Return"));
379         follow_edits_button.set_text(_("Follow Range"));
380         punch_in_button.set_text (_("In"));
381         punch_out_button.set_text (_("Out"));
382         layered_button.set_text (_("Non-Layered"));
383
384         monitor_in_button.set_text (_("All In"));
385         monitor_disk_button.set_text (_("All Disk"));
386         auto_input_button.set_text (_("Auto-Input"));
387
388         latency_disable_button.set_text (_("Disable PDC"));
389         io_latency_label.set_text (_("I/O Latency:"));
390
391         punch_label.set_text (_("Punch:"));
392         layered_label.set_text (_("Rec:"));
393
394         /* and tooltips */
395
396         Gtkmm2ext::UI::instance()->set_tip (editor_visibility_button,
397                                             string_compose (_("Drag this tab to the desktop to show %1 in its own window\n\n"
398                                                               "To re-attach the window, use the Window > %1 > Attach menu action"), editor->name()));
399
400         Gtkmm2ext::UI::instance()->set_tip (mixer_visibility_button,
401                                             string_compose (_("Drag this tab to the desktop to show %1 in its own window\n\n"
402                                                               "To re-attach the window, use the Window > %1 > Attach menu action"), mixer->name()));
403
404         Gtkmm2ext::UI::instance()->set_tip (prefs_visibility_button,
405                                             string_compose (_("Drag this tab to the desktop to show %1 in its own window\n\n"
406                                                               "To re-attach the window, use the Window > %1 > Attach menu action"), rc_option_editor->name()));
407
408         Gtkmm2ext::UI::instance()->set_tip (punch_in_button, _("Start recording at auto-punch start"));
409         Gtkmm2ext::UI::instance()->set_tip (punch_out_button, _("Stop recording at auto-punch end"));
410
411         Gtkmm2ext::UI::instance()->set_tip (monitor_in_button, _("Force all tracks to monitor Input, unless they are explicitly set to monitor Disk"));
412         Gtkmm2ext::UI::instance()->set_tip (monitor_disk_button, _("Force all tracks to monitor Disk playback, unless they are explicitly set to Input"));
413
414         /* transport control size-group */
415
416         Glib::RefPtr<SizeGroup> punch_button_size_group = SizeGroup::create (Gtk::SIZE_GROUP_HORIZONTAL);
417         punch_button_size_group->add_widget (punch_in_button);
418         punch_button_size_group->add_widget (punch_out_button);
419
420         Glib::RefPtr<SizeGroup> monitor_button_size_group = SizeGroup::create (Gtk::SIZE_GROUP_HORIZONTAL);
421         monitor_button_size_group->add_widget (monitor_in_button);
422         monitor_button_size_group->add_widget (monitor_disk_button);
423
424         /* and now the layout... */
425
426         /* top level packing */
427         transport_table.set_spacings (0);
428         transport_table.set_row_spacings (4);
429         transport_table.set_border_width (0);
430
431         transport_frame.set_name ("TransportFrame");
432         transport_frame.set_shadow_type (Gtk::SHADOW_NONE);
433
434         /* An event box to hold the table. We use this because we want specific
435            control over the background color, and without this event box,
436            nothing inside the transport_frame actually draws a background. We
437            would therefore end up seeing the background of the parent widget,
438            which is probably some default color. Adding the EventBox adds a
439            widget that will draw the background, using a style based on
440            the parent, "TransportFrame".
441         */
442         Gtk::EventBox* ebox = manage (new Gtk::EventBox);
443         transport_frame.add (*ebox);
444         ebox->add (transport_table);
445
446         /* alert box sub-group */
447         VBox* alert_box = manage (new VBox);
448         alert_box->set_homogeneous (true);
449         alert_box->set_spacing (1);
450         alert_box->set_border_width (0);
451         alert_box->pack_start (solo_alert_button, true, true);
452         alert_box->pack_start (auditioning_alert_button, true, true);
453         alert_box->pack_start (feedback_alert_button, true, true);
454
455         /* clock button size groups */
456         Glib::RefPtr<SizeGroup> button_height_size_group = SizeGroup::create (Gtk::SIZE_GROUP_VERTICAL);
457         button_height_size_group->add_widget (follow_edits_button);
458         button_height_size_group->add_widget (*primary_clock->left_btn());
459         button_height_size_group->add_widget (*primary_clock->right_btn());
460         button_height_size_group->add_widget (*secondary_clock->left_btn());
461         button_height_size_group->add_widget (*secondary_clock->right_btn());
462
463         button_height_size_group->add_widget (transport_ctrl.size_button ());
464 //      button_height_size_group->add_widget (sync_button);
465         button_height_size_group->add_widget (auto_return_button);
466
467         //tab selections
468         button_height_size_group->add_widget (editor_visibility_button);
469         button_height_size_group->add_widget (mixer_visibility_button);
470
471         //punch section
472         button_height_size_group->add_widget (punch_in_button);
473         button_height_size_group->add_widget (punch_out_button);
474         button_height_size_group->add_widget (layered_button);
475
476         //input monitoring section
477         button_height_size_group->add_widget (monitor_in_button);
478         button_height_size_group->add_widget (monitor_disk_button);
479         button_height_size_group->add_widget (auto_input_button);
480
481         Glib::RefPtr<SizeGroup> clock1_size_group = SizeGroup::create (SIZE_GROUP_HORIZONTAL);
482         clock1_size_group->add_widget (*primary_clock->left_btn());
483         clock1_size_group->add_widget (*primary_clock->right_btn());
484
485         Glib::RefPtr<SizeGroup> clock2_size_group = SizeGroup::create (SIZE_GROUP_HORIZONTAL);
486         clock2_size_group->add_widget (*secondary_clock->left_btn());
487         clock2_size_group->add_widget (*secondary_clock->right_btn());
488
489         /* sub-layout for Sync | Shuttle (grow) */
490         HBox* ssbox = manage (new HBox);
491         ssbox->set_spacing (PX_SCALE(2));
492         ssbox->pack_start (sync_button, false, false, 0);
493         ssbox->pack_start (shuttle_box, true, true, 0);
494         ssbox->pack_start (*shuttle_box.info_button(), false, false, 0);
495
496
497         /* and the main table layout */
498         int vpadding = 1;
499         int hpadding = 2;
500         int col = 0;
501 #define TCOL col, col + 1
502
503         transport_table.attach (transport_ctrl, TCOL, 0, 1 , SHRINK, SHRINK, 0, 0);
504         transport_table.attach (*ssbox, TCOL, 1, 2 , FILL, SHRINK, 0, 0);
505         ++col;
506
507         transport_table.attach (*(manage (new ArdourVSpacer ())), TCOL, 0, 2 , SHRINK, EXPAND|FILL, 3, 0);
508         ++col;
509
510         transport_table.attach (punch_label, TCOL, 0, 1 , FILL, SHRINK, 3, 0);
511         transport_table.attach (layered_label, TCOL, 1, 2 , FILL, SHRINK, 3, 0);
512         ++col;
513
514         transport_table.attach (punch_in_button,  col,      col + 1, 0, 1 , FILL, SHRINK, hpadding, vpadding);
515         transport_table.attach (punch_space,      col + 1,  col + 2, 0, 1 , FILL, SHRINK, 0, vpadding);
516         transport_table.attach (punch_out_button, col + 2,  col + 3, 0, 1 , FILL, SHRINK, hpadding, vpadding);
517         transport_table.attach (layered_button,   col,      col + 3, 1, 2 , FILL, SHRINK, hpadding, vpadding);
518         col += 3;
519
520         transport_table.attach (recpunch_spacer, TCOL, 0, 2 , SHRINK, EXPAND|FILL, 3, 0);
521         ++col;
522
523         transport_table.attach (auto_input_button,   col,     col + 3, 0, 1 , FILL, SHRINK, hpadding, vpadding);
524         transport_table.attach (monitor_in_button,   col,     col + 1, 1, 2 , FILL, SHRINK, hpadding, vpadding);
525         transport_table.attach (mon_space,           col + 1, col + 2, 1, 2 , FILL, SHRINK, 2, vpadding);
526         transport_table.attach (monitor_disk_button, col + 2, col + 3, 1, 2 , FILL, SHRINK, hpadding, vpadding);
527         col += 3;
528
529         transport_table.attach (monitoring_spacer, TCOL, 0, 2 , SHRINK, EXPAND|FILL, 3, 0);
530         ++col;
531
532
533         transport_table.attach (latency_disable_button, TCOL, 0, 1 , FILL, SHRINK, hpadding, vpadding);
534         transport_table.attach (io_latency_label, TCOL, 1, 2 , SHRINK, EXPAND|FILL, hpadding, vpadding);
535         ++col;
536         transport_table.attach (route_latency_value, TCOL, 0, 1 , SHRINK, EXPAND|FILL, hpadding, vpadding);
537         transport_table.attach (io_latency_value, TCOL, 1, 2 , SHRINK, EXPAND|FILL, hpadding, vpadding);
538         ++col;
539
540         route_latency_value.set_alignment (Gtk::ALIGN_RIGHT, Gtk::ALIGN_CENTER);
541         io_latency_value.set_alignment (Gtk::ALIGN_RIGHT, Gtk::ALIGN_CENTER);
542
543         transport_table.attach (latency_spacer, TCOL, 0, 2 , SHRINK, EXPAND|FILL, 3, 0);
544         ++col;
545
546         transport_table.attach (follow_edits_button, TCOL, 0, 1 , FILL, SHRINK, hpadding, vpadding);
547         transport_table.attach (auto_return_button,  TCOL, 1, 2 , FILL, SHRINK, hpadding, vpadding);
548         ++col;
549
550         transport_table.attach (*(manage (new ArdourVSpacer ())), TCOL, 0, 2 , SHRINK, EXPAND|FILL, 3, 0);
551         ++col;
552
553         transport_table.attach (*primary_clock,              col,     col + 2, 0, 1 , FILL, SHRINK, hpadding, 0);
554         transport_table.attach (*primary_clock->left_btn(),  col,     col + 1, 1, 2 , FILL, SHRINK, hpadding, 0);
555         transport_table.attach (*primary_clock->right_btn(), col + 1, col + 2, 1, 2 , FILL, SHRINK, hpadding, 0);
556         col += 2;
557
558         transport_table.attach (*(manage (new ArdourVSpacer ())), TCOL, 0, 2 , SHRINK, EXPAND|FILL, 3, 0);
559         ++col;
560
561         if (!ARDOUR::Profile->get_small_screen()) {
562                 transport_table.attach (*secondary_clock,              col,     col + 2, 0, 1 , FILL, SHRINK, hpadding, 0);
563                 transport_table.attach (*secondary_clock->left_btn(),  col,     col + 1, 1, 2 , FILL, SHRINK, hpadding, 0);
564                 transport_table.attach (*secondary_clock->right_btn(), col + 1, col + 2, 1, 2 , FILL, SHRINK, hpadding, 0);
565                 secondary_clock->set_no_show_all (true);
566                 secondary_clock->left_btn()->set_no_show_all (true);
567                 secondary_clock->right_btn()->set_no_show_all (true);
568                 col += 2;
569
570                 secondary_clock_spacer = manage (new ArdourVSpacer ());
571                 transport_table.attach (*secondary_clock_spacer, TCOL, 0, 2 , SHRINK, EXPAND|FILL, 3, 0);
572                 ++col;
573         }
574
575         transport_table.attach (*alert_box, TCOL, 0, 2, SHRINK, EXPAND|FILL, hpadding, 0);
576         ++col;
577
578         /* editor-meter, mini-timeline and selection clock are options in the transport_hbox */
579         transport_hbox.set_spacing (3);
580         transport_table.attach (transport_hbox, TCOL, 0, 2, EXPAND|FILL, EXPAND|FILL, hpadding, 0);
581         ++col;
582
583         /* lua script action buttons */
584         transport_table.attach (action_script_table, TCOL, 0, 2, SHRINK, EXPAND|FILL, 1, 0);
585         ++col;
586
587         transport_table.attach (editor_visibility_button, TCOL, 0, 1 , FILL, SHRINK, hpadding, vpadding);
588         transport_table.attach (mixer_visibility_button,  TCOL, 1, 2 , FILL, SHRINK, hpadding, vpadding);
589         ++col;
590
591         /* initialize */
592         latency_switch_changed ();
593         session_latency_updated ();
594
595         repack_transport_hbox ();
596         update_clock_visibility ();
597         /* desensitize */
598
599         feedback_alert_button.set_sensitive (false);
600         feedback_alert_button.set_visual_state (Gtkmm2ext::NoVisualState);
601         auditioning_alert_button.set_sensitive (false);
602         auditioning_alert_button.set_visual_state (Gtkmm2ext::NoVisualState);
603
604         set_transport_sensitivity (false);
605 }
606 #undef PX_SCALE
607 #undef TCOL
608
609
610 void
611 ARDOUR_UI::latency_switch_changed ()
612 {
613         bool pdc_off = ARDOUR::Latent::zero_latency ();
614         if (latency_disable_button.get_active() != pdc_off) {
615                 latency_disable_button.set_active (pdc_off);
616         }
617 }
618
619 void
620 ARDOUR_UI::session_latency_updated ()
621 {
622         if (!_session) {
623                 route_latency_value.set_text ("--");
624                 io_latency_value.set_text ("--");
625         } else {
626                 samplecnt_t wrl = _session->worst_route_latency ();
627                 samplecnt_t wpl = _session->worst_latency_preroll ();
628                 float rate      = _session->nominal_sample_rate ();
629
630                 route_latency_value.set_text (samples_as_time_string (wrl, rate));
631                 io_latency_value.set_text (samples_as_time_string (wpl, rate));
632         }
633 }
634
635 void
636 ARDOUR_UI::soloing_changed (bool onoff)
637 {
638         if (solo_alert_button.get_active() != onoff) {
639                 solo_alert_button.set_active (onoff);
640         }
641 }
642
643 void
644 ARDOUR_UI::_auditioning_changed (bool onoff)
645 {
646         auditioning_alert_button.set_active (onoff);
647         auditioning_alert_button.set_sensitive (onoff);
648         if (!onoff) {
649                 auditioning_alert_button.set_visual_state (Gtkmm2ext::NoVisualState);
650         }
651         set_transport_sensitivity (!onoff);
652 }
653
654 void
655 ARDOUR_UI::auditioning_changed (bool onoff)
656 {
657         UI::instance()->call_slot (MISSING_INVALIDATOR, boost::bind (&ARDOUR_UI::_auditioning_changed, this, onoff));
658 }
659
660 void
661 ARDOUR_UI::audition_alert_clicked ()
662 {
663         if (_session) {
664                 _session->cancel_audition();
665         }
666 }
667
668 bool
669 ARDOUR_UI::error_alert_press (GdkEventButton* ev)
670 {
671         bool do_toggle = true;
672         if (ev->button == 1) {
673                 if (_log_not_acknowledged == LogLevelError) {
674                         // just acknowledge the error, don't hide the log if it's already visible
675                         RefPtr<ToggleAction> tact = ActionManager::get_toggle_action (X_("Editor"), X_("toggle-log-window"));
676                         if (tact->get_active()) {
677                                 do_toggle = false;
678                         }
679                 }
680                 _log_not_acknowledged = LogLevelNone;
681                 error_blink (false); // immediate acknowledge
682         }
683         // maybe fall through to to button toggle
684         return !do_toggle;
685 }
686
687 void
688 ARDOUR_UI::layered_button_clicked ()
689 {
690         if (_session) {
691                 _session->config.set_layered_record_mode (!_session->config.get_layered_record_mode ());
692         }
693 }
694
695 void
696 ARDOUR_UI::solo_blink (bool onoff)
697 {
698         if (_session == 0) {
699                 return;
700         }
701
702         if (_session->soloing() || _session->listening()) {
703                 if (onoff) {
704                         solo_alert_button.set_active (true);
705                 } else {
706                         solo_alert_button.set_active (false);
707                 }
708         } else {
709                 solo_alert_button.set_active (false);
710         }
711 }
712
713 void
714 ARDOUR_UI::sync_blink (bool onoff)
715 {
716         if (_session == 0 || !_session->config.get_external_sync()) {
717                 /* internal sync */
718                 sync_button.set_active (false);
719                 return;
720         }
721
722         if (!_session->transport_locked()) {
723                 /* not locked, so blink on and off according to the onoff argument */
724
725                 if (onoff) {
726                         sync_button.set_active (true);
727                 } else {
728                         sync_button.set_active (false);
729                 }
730         } else {
731                 /* locked */
732                 sync_button.set_active (true);
733         }
734 }
735
736 void
737 ARDOUR_UI::audition_blink (bool onoff)
738 {
739         if (_session == 0) {
740                 return;
741         }
742
743         if (_session->is_auditioning()) {
744                 if (onoff) {
745                         auditioning_alert_button.set_active (true);
746                 } else {
747                         auditioning_alert_button.set_active (false);
748                 }
749         } else {
750                 auditioning_alert_button.set_active (false);
751         }
752 }
753
754 void
755 ARDOUR_UI::feedback_blink (bool onoff)
756 {
757         if (_feedback_exists) {
758                 feedback_alert_button.set_active (true);
759                 if (onoff) {
760                         feedback_alert_button.reset_fixed_colors ();
761                 } else {
762                         feedback_alert_button.set_active_color (UIConfigurationBase::instance().color ("feedback alert: alt active", NULL));
763                 }
764         } else {
765                 feedback_alert_button.reset_fixed_colors ();
766                 feedback_alert_button.set_active (false);
767         }
768 }
769
770 void
771 ARDOUR_UI::error_blink (bool onoff)
772 {
773         switch (_log_not_acknowledged) {
774                 case LogLevelError:
775                         // blink
776                         if (onoff) {
777                                 error_alert_button.set_custom_led_color(0xff0000ff); // bright red
778                         } else {
779                                 error_alert_button.set_custom_led_color(0x880000ff); // dark red
780                         }
781                         break;
782                 case LogLevelWarning:
783                         error_alert_button.set_custom_led_color(0xccaa00ff); // yellow
784                         break;
785                 case LogLevelInfo:
786                         error_alert_button.set_custom_led_color(0x88cc00ff); // lime green
787                         break;
788                 default:
789                         error_alert_button.set_custom_led_color(0x333333ff); // gray
790                         break;
791         }
792 }
793 void
794 ARDOUR_UI::set_transport_sensitivity (bool yn)
795 {
796         ActionManager::set_sensitive (ActionManager::transport_sensitive_actions, yn);
797         shuttle_box.set_sensitive (yn);
798 }
799
800 void
801 ARDOUR_UI::editor_realized ()
802 {
803         boost::function<void (string)> pc (boost::bind (&ARDOUR_UI::parameter_changed, this, _1));
804         Config->map_parameters (pc);
805
806         UIConfiguration::instance().reset_dpi ();
807 }
808
809 void
810 ARDOUR_UI::maximise_editing_space ()
811 {
812         if (editor) {
813                 editor->maximise_editing_space ();
814         }
815 }
816
817 void
818 ARDOUR_UI::restore_editing_space ()
819 {
820         if (editor) {
821                 editor->restore_editing_space ();
822         }
823 }
824
825 void
826 ARDOUR_UI::show_ui_prefs ()
827 {
828         if (rc_option_editor) {
829                 show_tabbable (rc_option_editor);
830                 rc_option_editor->set_current_page (_("Appearance"));
831         }
832 }
833
834 bool
835 ARDOUR_UI::click_button_clicked (GdkEventButton* ev)
836 {
837         if (ev->button != 3) {
838                 /* this handler is just for button-3 clicks */
839                 return false;
840         }
841
842         show_tabbable (rc_option_editor);
843         rc_option_editor->set_current_page (_("Metronome"));
844         return true;
845 }
846
847 bool
848 ARDOUR_UI::sync_button_clicked (GdkEventButton* ev)
849 {
850         if (ev->button != 3) {
851                 /* this handler is just for button-3 clicks */
852                 return false;
853         }
854
855         show_tabbable (rc_option_editor);
856         rc_option_editor->set_current_page (_("Sync"));
857         return true;
858 }
859
860 void
861 ARDOUR_UI::toggle_follow_edits ()
862 {
863         RefPtr<ToggleAction> tact = ActionManager::get_toggle_action (X_("Transport"), X_("ToggleFollowEdits"));
864         UIConfiguration::instance().set_follow_edits (tact->get_active ());
865 }
866
867 void
868 ARDOUR_UI::update_title ()
869 {
870         if (_session) {
871                 bool dirty = _session->dirty();
872
873                 string session_name;
874
875                 if (_session->snap_name() != _session->name()) {
876                         session_name = _session->snap_name();
877                 } else {
878                         session_name = _session->name();
879                 }
880
881                 if (dirty) {
882                         session_name = "*" + session_name;
883                 }
884
885                 WindowTitle title (session_name);
886                 title += Glib::get_application_name();
887                 _main_window.set_title (title.get_string());
888         } else {
889                 WindowTitle title (Glib::get_application_name());
890                 _main_window.set_title (title.get_string());
891         }
892
893 }
894