one step closer to working vbap panning
[ardour.git] / gtk2_ardour / latency_gui.cc
index 5ca139cd403a176b9ca55b2195f23cbd83e00bb9..73b6bf1a3070727829139e7a4620aa754b5913f8 100644 (file)
@@ -1,7 +1,8 @@
-#define __STDC_FORMAT_MACROS 1
 #include <inttypes.h>
 
+#include <iomanip>
 #include "ardour/latent.h"
+#include "pbd/convert.h"
 #include <gtkmm2ext/utils.h>
 
 #include "latency_gui.h"
@@ -11,7 +12,6 @@
 using namespace PBD;
 using namespace Gtk;
 using namespace Gtkmm2ext;
-using namespace sigc;
 using namespace ARDOUR;
 
 
@@ -24,19 +24,22 @@ static const gchar *_unit_strings[] = {
 
 std::vector<std::string> LatencyGUI::unit_strings;
 
-void
-LatencyGUI::latency_printer (char *buf, unsigned int bufsize)
+std::string
+LatencyBarController::get_label (int&)
 {
-       double nframes = adjustment.get_value();
+       double const nframes = _latency_gui->adjustment.get_value();
+       std::stringstream s;
 
-       if (nframes < (sample_rate / 1000.0)) {
-               snprintf (buf, bufsize, "%" PRId64 " samples", (nframes64_t) rint (nframes));
+       if (nframes < (_latency_gui->sample_rate / 1000.0)) {
+               s << ((framepos_t) rint (nframes)) << " samples";
        } else {
-               snprintf (buf, bufsize, "%.2g msecs" , nframes / (sample_rate / 1000.0));
+               s << std::fixed << std::setprecision (2) << (nframes / (_latency_gui->sample_rate / 1000.0)) << " msecs";
        }
+
+       return s.str ();
 }
 
-LatencyGUI::LatencyGUI (Latent& l, nframes64_t sr, nframes64_t psz)
+LatencyGUI::LatencyGUI (Latent& l, framepos_t sr, framepos_t psz)
        : _latent (l),
          initial_value (_latent.signal_latency()),
          sample_rate (sr),
@@ -44,8 +47,8 @@ LatencyGUI::LatencyGUI (Latent& l, nframes64_t sr, nframes64_t psz)
          ignored (new PBD::IgnorableControllable()),
          /* max 1 second, step by frames, page by msecs */
          adjustment (initial_value, 0.0, sample_rate, 1.0, sample_rate / 1000.0f),
-         bc (adjustment, ignored, sigc::mem_fun (*this, &LatencyGUI::latency_printer)),
-         reset_button (_("Automatic"))
+         bc (adjustment, this),
+         reset_button (_("Reset"))
 {
        Widget* w;
 
@@ -53,7 +56,7 @@ LatencyGUI::LatencyGUI (Latent& l, nframes64_t sr, nframes64_t psz)
                unit_strings = I18N (_unit_strings);
        }
 
-       set_popdown_strings (units_combo, unit_strings);        
+       set_popdown_strings (units_combo, unit_strings);
        units_combo.set_active_text (unit_strings.front());
 
        w = manage (new Image (Stock::ADD, ICON_SIZE_BUTTON));
@@ -72,11 +75,11 @@ LatencyGUI::LatencyGUI (Latent& l, nframes64_t sr, nframes64_t psz)
        hbox2.pack_start (plus_button);
        hbox2.pack_start (units_combo, true, true);
 
-       minus_button.signal_clicked().connect (bind (mem_fun (*this, &LatencyGUI::change_latency_from_button), -1));
-       plus_button.signal_clicked().connect (bind (mem_fun (*this, &LatencyGUI::change_latency_from_button), 1));
-       reset_button.signal_clicked().connect (mem_fun (*this, &LatencyGUI::reset));
+       minus_button.signal_clicked().connect (sigc::bind (sigc::mem_fun (*this, &LatencyGUI::change_latency_from_button), -1));
+       plus_button.signal_clicked().connect (sigc::bind (sigc::mem_fun (*this, &LatencyGUI::change_latency_from_button), 1));
+       reset_button.signal_clicked().connect (sigc::mem_fun (*this, &LatencyGUI::reset));
 
-       adjustment.signal_value_changed().connect (mem_fun (*this, &LatencyGUI::finish));
+       adjustment.signal_value_changed().connect (sigc::mem_fun (*this, &LatencyGUI::finish));
 
        bc.set_size_request (-1, 25);
        bc.set_style (BarController::LeftToRight);
@@ -91,7 +94,7 @@ LatencyGUI::LatencyGUI (Latent& l, nframes64_t sr, nframes64_t psz)
 void
 LatencyGUI::finish ()
 {
-       nframes64_t new_value = (nframes64_t) adjustment.get_value();
+       framepos_t new_value = (framepos_t) adjustment.get_value();
        if (new_value != initial_value) {
                _latent.set_user_latency (new_value);
        }
@@ -114,7 +117,7 @@ LatencyGUI::refresh ()
 void
 LatencyGUI::change_latency_from_button (int dir)
 {
-       Glib::ustring unitstr = units_combo.get_active_text();
+       std::string unitstr = units_combo.get_active_text();
        double shift = 0.0;
 
        if (unitstr == unit_strings[0]) {
@@ -136,18 +139,18 @@ LatencyGUI::change_latency_from_button (int dir)
        }
 }
 
-LatencyDialog::LatencyDialog (const Glib::ustring& title, Latent& l, nframes64_t sr, nframes64_t psz)
+LatencyDialog::LatencyDialog (const std::string& title, Latent& l, framepos_t sr, framepos_t psz)
        : 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);
 
        show_all ();
-       
+
        while (true) {
                int ret = run ();