Use conf.fatal for fatal configuration errors
[ardour.git] / gtk2_ardour / ardour_ui2.cc
index 71d4af10b89980dc8be946e29697f5092570668f..d2e18d15a2e9d7b74219a4576b09e3f2424966b8 100644 (file)
@@ -1,21 +1,30 @@
 /*
-    Copyright (C) 1999 Paul Davis
-
-    This program is free software; you can redistribute it and/or modify
-    it under the terms of the GNU General Public License as published by
-    the Free Software Foundation; either version 2 of the License, or
-    (at your option) any later version.
-
-    This program is distributed in the hope that it will be useful,
-    but WITHOUT ANY WARRANTY; without even the implied warranty of
-    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
-    GNU General Public License for more details.
-
-    You should have received a copy of the GNU General Public License
-    along with this program; if not, write to the Free Software
-    Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
-
-*/
+ * Copyright (C) 2005-2006 Taybin Rutkin <taybin@taybin.com>
+ * Copyright (C) 2005-2015 Tim Mayberry <mojofunk@gmail.com>
+ * Copyright (C) 2005-2018 Paul Davis <paul@linuxaudiosystems.com>
+ * Copyright (C) 2006-2007 Doug McLain <doug@nostar.net>
+ * Copyright (C) 2006-2012 David Robillard <d@drobilla.net>
+ * Copyright (C) 2006 Karsten Wiese <fzuuzf@googlemail.com>
+ * Copyright (C) 2006 Nick Mainsbridge <mainsbridge@gmail.com>
+ * Copyright (C) 2007-2012 Carl Hetherington <carl@carlh.net>
+ * Copyright (C) 2008 Hans Baier <hansfbaier@googlemail.com>
+ * Copyright (C) 2012-2019 Robin Gareus <robin@gareus.org>
+ * Copyright (C) 2014-2018 Ben Loftis <ben@harrisonconsoles.com>
+ *
+ * This program is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation; either version 2 of the License, or
+ * (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License along
+ * with this program; if not, write to the Free Software Foundation, Inc.,
+ * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
+ */
 
 #ifdef WAF_BUILD
 #include "gtk2ardour-config.h"
@@ -83,9 +92,11 @@ ARDOUR_UI::setup_tooltips ()
        set_tip (feedback_alert_button, _("When active, there is a feedback loop."));
        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"));
        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"));
-       set_tip (editor_meter_peak_display, _("Reset All Peak Indicators"));
+       set_tip (editor_meter_peak_display, _("Reset All Peak Meters"));
        set_tip (error_alert_button, _("Show Error Log and acknowledge warnings"));
 
+       set_tip (latency_disable_button, _("Disable all latency compensation. This will result in playback and monitoring to not be out of sync."));
+
        synchronize_sync_source_and_video_pullup ();
 
        editor->setup_tooltips ();
@@ -109,36 +120,21 @@ ARDOUR_UI::status_bar_button_press (GdkEventButton* ev)
 }
 
 void
-ARDOUR_UI::display_message (const char *prefix, gint prefix_len, RefPtr<TextBuffer::Tag> ptag, RefPtr<TextBuffer::Tag> mtag, const char *msg)
+ARDOUR_UI::display_message (const char* prefix, gint prefix_len, RefPtr<TextBuffer::Tag> ptag, RefPtr<TextBuffer::Tag> mtag, const char* msg)
 {
-       string text;
-
        UI::display_message (prefix, prefix_len, ptag, mtag, msg);
 
        ArdourLogLevel ll = LogLevelNone;
 
        if (strcmp (prefix, _("[ERROR]: ")) == 0) {
-               text = "<span color=\"red\" weight=\"bold\">";
                ll = LogLevelError;
        } else if (strcmp (prefix, _("[WARNING]: ")) == 0) {
-               text = "<span color=\"yellow\" weight=\"bold\">";
                ll = LogLevelWarning;
        } else if (strcmp (prefix, _("[INFO]: ")) == 0) {
-               text = "<span color=\"green\" weight=\"bold\">";
                ll = LogLevelInfo;
-       } else {
-               text = "<span color=\"white\" weight=\"bold\">???";
        }
 
        _log_not_acknowledged = std::max(_log_not_acknowledged, ll);
-
-#ifdef TOP_MENUBAR
-       text += prefix;
-       text += "</span>";
-       text += msg;
-
-       status_bar_label.set_markup (text);
-#endif
 }
 
 XMLNode*
@@ -172,27 +168,6 @@ bool drag_failed (const Glib::RefPtr<Gdk::DragContext>& context, DragResult resu
 void
 ARDOUR_UI::repack_transport_hbox ()
 {
-       if (dsp_load_indicator.get_parent()) {
-               transport_hbox.remove (dsp_load_indicator);
-       }
-       if (UIConfiguration::instance().get_show_dsp_load_info ()) {
-               transport_hbox.pack_start (dsp_load_indicator, false, false);
-               dsp_load_indicator.show();
-       }
-
-       if (disk_space_indicator.get_parent()) {
-               transport_hbox.remove (disk_space_indicator);
-       }
-       if (UIConfiguration::instance().get_show_disk_space_info ()) {
-               transport_hbox.pack_start (disk_space_indicator, false, false);
-               disk_space_indicator.show();
-       }
-
-       if (status_spacer.get_parent()) {
-               transport_hbox.remove (status_spacer);
-       }
-       transport_hbox.pack_start (status_spacer, false, false, 3);
-
        if (time_info_box) {
                if (time_info_box->get_parent()) {
                        transport_hbox.remove (*time_info_box);
@@ -217,13 +192,16 @@ ARDOUR_UI::repack_transport_hbox ()
                }
                if (meterbox_spacer.get_parent()) {
                        transport_hbox.remove (meterbox_spacer);
+                       transport_hbox.remove (meterbox_spacer2);
                }
 
                if (UIConfiguration::instance().get_show_editor_meter()) {
-                       transport_hbox.pack_end (editor_meter_table, false, false);
                        transport_hbox.pack_end (meterbox_spacer, false, false, 3);
+                       transport_hbox.pack_end (editor_meter_table, false, false);
+                       transport_hbox.pack_end (meterbox_spacer2, false, false, 3);
                        editor_meter_table.show();
                        meterbox_spacer.show();
+                       meterbox_spacer2.show();
                }
        }
 
@@ -257,6 +235,20 @@ ARDOUR_UI::repack_transport_hbox ()
                recpunch_spacer.hide ();
        }
 
+       bool show_pdc = UIConfiguration::instance().get_show_toolbar_latency ();
+       if (show_pdc) {
+               latency_disable_button.show ();
+               route_latency_value.show ();
+               io_latency_label.show ();
+               io_latency_value.show ();
+               latency_spacer.show ();
+       } else {
+               latency_disable_button.hide ();
+               route_latency_value.hide ();
+               io_latency_label.hide ();
+               io_latency_value.hide ();
+               latency_spacer.hide ();
+       }
 }
 
 void
@@ -326,6 +318,12 @@ ARDOUR_UI::setup_transport ()
        act = ActionManager::get_action ("Transport", "SessionMonitorDisk");
        monitor_disk_button.set_related_action (act);
 
+       act = ActionManager::get_action ("Main", "ToggleLatencyCompensation");
+       latency_disable_button.set_related_action (act);
+
+       set_size_request_to_display_given_text (route_latency_value, "1000 spl", 0, 0);
+       set_size_request_to_display_given_text (io_latency_value, "1000 spl", 0, 0);
+
        /* connect signals */
        ARDOUR_UI::Clock.connect (sigc::bind (sigc::mem_fun (primary_clock, &MainClock::set), false, 0));
        ARDOUR_UI::Clock.connect (sigc::bind (sigc::mem_fun (secondary_clock, &MainClock::set), false, 0));
@@ -374,6 +372,8 @@ ARDOUR_UI::setup_transport ()
        monitor_disk_button.set_name ("monitor button");
        auto_input_button.set_name ("transport option button");
 
+       latency_disable_button.set_name ("latency button");
+
        sync_button.set_name ("transport active option button");
 
        /* and widget text */
@@ -387,6 +387,9 @@ ARDOUR_UI::setup_transport ()
        monitor_disk_button.set_text (_("All Disk"));
        auto_input_button.set_text (_("Auto-Input"));
 
+       latency_disable_button.set_text (_("Disable PDC"));
+       io_latency_label.set_text (_("I/O Latency:"));
+
        punch_label.set_text (_("Punch:"));
        layered_label.set_text (_("Rec:"));
 
@@ -425,14 +428,14 @@ ARDOUR_UI::setup_transport ()
        /* top level packing */
        transport_table.set_spacings (0);
        transport_table.set_row_spacings (4);
-       transport_table.set_border_width (2);
+       transport_table.set_border_width (0);
 
        transport_frame.set_name ("TransportFrame");
        transport_frame.set_shadow_type (Gtk::SHADOW_NONE);
 
        /* An event box to hold the table. We use this because we want specific
           control over the background color, and without this event box,
-          nothing inside the transport_sample actually draws a background. We
+          nothing inside the transport_frame actually draws a background. We
           would therefore end up seeing the background of the parent widget,
           which is probably some default color. Adding the EventBox adds a
           widget that will draw the background, using a style based on
@@ -528,6 +531,20 @@ ARDOUR_UI::setup_transport ()
        transport_table.attach (monitoring_spacer, TCOL, 0, 2 , SHRINK, EXPAND|FILL, 3, 0);
        ++col;
 
+
+       transport_table.attach (latency_disable_button, TCOL, 0, 1 , FILL, SHRINK, hpadding, vpadding);
+       transport_table.attach (io_latency_label, TCOL, 1, 2 , SHRINK, EXPAND|FILL, hpadding, vpadding);
+       ++col;
+       transport_table.attach (route_latency_value, TCOL, 0, 1 , SHRINK, EXPAND|FILL, hpadding, vpadding);
+       transport_table.attach (io_latency_value, TCOL, 1, 2 , SHRINK, EXPAND|FILL, hpadding, vpadding);
+       ++col;
+
+       route_latency_value.set_alignment (Gtk::ALIGN_RIGHT, Gtk::ALIGN_CENTER);
+       io_latency_value.set_alignment (Gtk::ALIGN_RIGHT, Gtk::ALIGN_CENTER);
+
+       transport_table.attach (latency_spacer, TCOL, 0, 2 , SHRINK, EXPAND|FILL, 3, 0);
+       ++col;
+
        transport_table.attach (follow_edits_button, TCOL, 0, 1 , FILL, SHRINK, hpadding, vpadding);
        transport_table.attach (auto_return_button,  TCOL, 1, 2 , FILL, SHRINK, hpadding, vpadding);
        ++col;
@@ -573,6 +590,10 @@ ARDOUR_UI::setup_transport ()
        transport_table.attach (mixer_visibility_button,  TCOL, 1, 2 , FILL, SHRINK, hpadding, vpadding);
        ++col;
 
+       /* initialize */
+       latency_switch_changed ();
+       session_latency_updated ();
+
        repack_transport_hbox ();
        update_clock_visibility ();
        /* desensitize */
@@ -587,6 +608,32 @@ ARDOUR_UI::setup_transport ()
 #undef PX_SCALE
 #undef TCOL
 
+
+void
+ARDOUR_UI::latency_switch_changed ()
+{
+       bool pdc_off = ARDOUR::Latent::zero_latency ();
+       if (latency_disable_button.get_active() != pdc_off) {
+               latency_disable_button.set_active (pdc_off);
+       }
+}
+
+void
+ARDOUR_UI::session_latency_updated ()
+{
+       if (!_session) {
+               route_latency_value.set_text ("--");
+               io_latency_value.set_text ("--");
+       } else {
+               samplecnt_t wrl = _session->worst_route_latency ();
+               samplecnt_t wpl = _session->worst_latency_preroll ();
+               float rate      = _session->nominal_sample_rate ();
+
+               route_latency_value.set_text (samples_as_time_string (wrl, rate));
+               io_latency_value.set_text (samples_as_time_string (wpl, rate));
+       }
+}
+
 void
 ARDOUR_UI::soloing_changed (bool onoff)
 {
@@ -627,9 +674,8 @@ ARDOUR_UI::error_alert_press (GdkEventButton* ev)
        if (ev->button == 1) {
                if (_log_not_acknowledged == LogLevelError) {
                        // just acknowledge the error, don't hide the log if it's already visible
-                       RefPtr<Action> act = ActionManager::get_action (X_("Editor"), X_("toggle-log-window"));
-                       Glib::RefPtr<ToggleAction> tact = Glib::RefPtr<ToggleAction>::cast_dynamic (act);
-                       if (tact && tact->get_active()) {
+                       RefPtr<ToggleAction> tact = ActionManager::get_toggle_action (X_("Editor"), X_("toggle-log-window"));
+                       if (tact->get_active()) {
                                do_toggle = false;
                        }
                }
@@ -711,12 +757,14 @@ void
 ARDOUR_UI::feedback_blink (bool onoff)
 {
        if (_feedback_exists) {
+               feedback_alert_button.set_active (true);
                if (onoff) {
-                       feedback_alert_button.set_active (true);
+                       feedback_alert_button.reset_fixed_colors ();
                } else {
-                       feedback_alert_button.set_active (false);
+                       feedback_alert_button.set_active_color (UIConfigurationBase::instance().color ("feedback alert: alt active", NULL));
                }
        } else {
+               feedback_alert_button.reset_fixed_colors ();
                feedback_alert_button.set_active (false);
        }
 }
@@ -814,12 +862,7 @@ ARDOUR_UI::sync_button_clicked (GdkEventButton* ev)
 void
 ARDOUR_UI::toggle_follow_edits ()
 {
-       RefPtr<Action> act = ActionManager::get_action (X_("Transport"), X_("ToggleFollowEdits"));
-       assert (act);
-
-       RefPtr<ToggleAction> tact = RefPtr<ToggleAction>::cast_dynamic (act);
-       assert (tact);
-
+       RefPtr<ToggleAction> tact = ActionManager::get_toggle_action (X_("Transport"), X_("ToggleFollowEdits"));
        UIConfiguration::instance().set_follow_edits (tact->get_active ());
 }
 
@@ -850,3 +893,4 @@ ARDOUR_UI::update_title ()
        }
 
 }
+