X-Git-Url: https://main.carlh.net/gitweb/?a=blobdiff_plain;f=gtk2_ardour%2Flatency_gui.cc;h=180af93776476b8e482584fb0b642108cfa6d7b2;hb=d7deaa21bb78222e25b820c9583942a47dbc8fac;hp=e5eab6201b83013ee27df0bdbd8812c723b68907;hpb=64dc5427e4f5339a16a018692dd94f476c53cae9;p=ardour.git diff --git a/gtk2_ardour/latency_gui.cc b/gtk2_ardour/latency_gui.cc index e5eab6201b..180af93776 100644 --- a/gtk2_ardour/latency_gui.cc +++ b/gtk2_ardour/latency_gui.cc @@ -1,8 +1,28 @@ -#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 #include #include "ardour/latent.h" +#include "pbd/convert.h" +#include "pbd/error.h" #include #include "latency_gui.h" @@ -12,7 +32,6 @@ using namespace PBD; using namespace Gtk; using namespace Gtkmm2ext; -using namespace sigc; using namespace ARDOUR; @@ -26,13 +45,13 @@ static const gchar *_unit_strings[] = { std::vector 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 << ((nframes64_t) rint (nframes)) << " samples"; + s << ((framepos_t) rint (nframes)) << " samples"; } else { s << std::fixed << std::setprecision (2) << (nframes / (_latency_gui->sample_rate / 1000.0)) << " msecs"; } @@ -40,9 +59,9 @@ LatencyBarController::get_label (int&) 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()), + initial_value (_latent.user_latency()), sample_rate (sr), period_size (psz), ignored (new PBD::IgnorableControllable()), @@ -95,7 +114,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); } @@ -118,7 +137,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]) { @@ -140,33 +159,15 @@ 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); + 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 (); }