change appearance of panner data popup slightly (fixed width font so it doesn't bounc...
[ardour.git] / gtk2_ardour / latency_gui.h
index 9d36103ed78bca40aa0ded054508e316bbb9f807..2adf2d430861561ab1d79b6fd3d018f71823dcb2 100644 (file)
@@ -28,17 +28,17 @@ public:
        LatencyBarController (Gtk::Adjustment& adj, LatencyGUI* g)
                : BarController (adj, boost::shared_ptr<PBD::IgnorableControllable> (new PBD::IgnorableControllable ())),
                  _latency_gui (g) {}
-       
+
 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 +47,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<PBD::IgnorableControllable> ignored;
 
        Gtk::Adjustment adjustment;
@@ -72,7 +72,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: