X-Git-Url: https://main.carlh.net/gitweb/?a=blobdiff_plain;f=gtk2_ardour%2Flatency_gui.h;h=b84a9331b171652753068b53e63bb75d898992f2;hb=8630fd1703acb2f9a36d6db7e0d18963b461614f;hp=9844bfaf8f86037bd6494f54a36579ee278eff0b;hpb=bb9cc45cd22af67ac275a5e73accbe14fee664d8;p=ardour.git diff --git a/gtk2_ardour/latency_gui.h b/gtk2_ardour/latency_gui.h index 9844bfaf8f..b84a9331b1 100644 --- a/gtk2_ardour/latency_gui.h +++ b/gtk2_ardour/latency_gui.h @@ -1,3 +1,22 @@ +/* + Copyright (C) 2012 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. + +*/ + #ifndef __gtk2_ardour_latency_gui_h__ #define __gtk2_ardour_latency_gui_h__ @@ -32,13 +51,13 @@ public: private: LatencyGUI* _latency_gui; - std::string get_label (int&); + std::string get_label (double&); }; class LatencyGUI : public Gtk::VBox { public: - LatencyGUI (ARDOUR::Latent&, nframes64_t sample_rate, nframes64_t period_size); + LatencyGUI (ARDOUR::Latent&, framepos_t sample_rate, framepos_t period_size); ~LatencyGUI() { } void finish (); @@ -47,9 +66,9 @@ class LatencyGUI : public Gtk::VBox private: ARDOUR::Latent& _latent; - nframes64_t initial_value; - nframes64_t sample_rate; - nframes64_t period_size; + framepos_t initial_value; + framepos_t sample_rate; + framepos_t period_size; boost::shared_ptr ignored; Gtk::Adjustment adjustment; @@ -72,7 +91,7 @@ class LatencyGUI : public Gtk::VBox class LatencyDialog : public ArdourDialog { public: - LatencyDialog (const Glib::ustring& title, ARDOUR::Latent&, nframes64_t sample_rate, nframes64_t period_size); + LatencyDialog (const std::string& title, ARDOUR::Latent&, framepos_t sample_rate, framepos_t period_size); ~LatencyDialog() {} private: