enough with umpteen "i18n.h" files. Consolidate on pbd/i18n.h
[ardour.git] / gtk2_ardour / latency_gui.cc
index 87ca39326e0f9b1fb666b08dfc0040f5a1f65424..dbb3e08cd7c86e0ee89d8caa146a955b83568159 100644 (file)
@@ -1,14 +1,33 @@
-#define __STDC_FORMAT_MACROS 1
+/*
+    Copyright (C) 2009 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.
+
+*/
+
 #include <inttypes.h>
 
 #include <iomanip>
 #include "ardour/latent.h"
 #include "pbd/convert.h"
+#include "pbd/error.h"
 #include <gtkmm2ext/utils.h>
 
 #include "latency_gui.h"
 
-#include "i18n.h"
+#include "pbd/i18n.h"
 
 using namespace PBD;
 using namespace Gtk;
@@ -26,15 +45,16 @@ static const gchar *_unit_strings[] = {
 std::vector<std::string> LatencyGUI::unit_strings;
 
 std::string
-LatencyBarController::get_label (int&)
+LatencyBarController::get_label (double&)
 {
        double const nframes = _latency_gui->adjustment.get_value();
        std::stringstream s;
 
        if (nframes < (_latency_gui->sample_rate / 1000.0)) {
-               s << ((framepos_t) rint (nframes)) << " samples";
+               const framepos_t nf = (framepos_t) rint (nframes);
+               s << string_compose (P_("%1 sample", "%1 samples", nf), nf);
        } else {
-               s << std::fixed << std::setprecision (2) << (nframes / (_latency_gui->sample_rate / 1000.0)) << " msecs";
+               s << std::fixed << std::setprecision (2) << (nframes / (_latency_gui->sample_rate / 1000.0)) << " ms";
        }
 
        return s.str ();
@@ -42,7 +62,7 @@ LatencyBarController::get_label (int&)
 
 LatencyGUI::LatencyGUI (Latent& l, framepos_t sr, framepos_t psz)
        : _latent (l),
-         initial_value (_latent.signal_latency()),
+         initial_value (_latent.user_latency()),
          sample_rate (sr),
          period_size (psz),
          ignored (new PBD::IgnorableControllable()),
@@ -83,9 +103,7 @@ LatencyGUI::LatencyGUI (Latent& l, framepos_t sr, framepos_t psz)
        adjustment.signal_value_changed().connect (sigc::mem_fun (*this, &LatencyGUI::finish));
 
        bc.set_size_request (-1, 25);
-       bc.set_style (BarController::LeftToRight);
-       bc.set_use_parent (true);
-       bc.set_name (X_("PluginSlider"));
+       bc.set_name (X_("ProcessorControlSlider"));
 
        set_spacing (12);
        pack_start (hbox1, true, true);
@@ -130,7 +148,7 @@ LatencyGUI::change_latency_from_button (int dir)
        } else {
                fatal << string_compose (_("programming error: %1 (%2)"), X_("illegal string in latency GUI units combo"), unitstr)
                      << endmsg;
-               /*NOTREACHED*/
+               abort(); /*NOTREACHED*/
        }
 
        if (dir > 0) {
@@ -144,29 +162,11 @@ LatencyDialog::LatencyDialog (const std::string& title, Latent& l, framepos_t sr
        : ArdourDialog (title, false, true),
          lwidget (l, sr, psz)
 {
-
        get_vbox()->pack_start (lwidget);
-       add_button (Stock::CANCEL, RESPONSE_CANCEL);
-       add_button (Stock::APPLY, RESPONSE_REJECT);
-       add_button (Stock::OK, RESPONSE_ACCEPT);
+       add_button (Stock::CLOSE, RESPONSE_CLOSE);
 
        show_all ();
-
-       while (true) {
-               int ret = run ();
-
-               switch (ret) {
-               case RESPONSE_ACCEPT:
-                       return;
-                       break;
-
-               case RESPONSE_REJECT:
-                       lwidget.finish ();
-                       break;
-               default:
-                       return;
-               }
-       }
+       run ();
 }