2013-01-16 13:37:48 -05:00
|
|
|
/*
|
2019-08-02 17:26:43 -04:00
|
|
|
* Copyright (C) 2007-2017 Paul Davis <paul@linuxaudiosystems.com>
|
|
|
|
* Copyright (C) 2009 Carl Hetherington <carl@carlh.net>
|
|
|
|
* Copyright (C) 2009 David Robillard <d@drobilla.net>
|
|
|
|
* Copyright (C) 2017-2019 Robin Gareus <robin@gareus.org>
|
|
|
|
*
|
|
|
|
* 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.,
|
|
|
|
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
|
|
|
|
*/
|
2013-01-16 13:37:48 -05:00
|
|
|
|
2007-06-28 15:35:48 -04:00
|
|
|
#ifndef __gtk2_ardour_latency_gui_h__
|
|
|
|
#define __gtk2_ardour_latency_gui_h__
|
|
|
|
|
2007-06-27 18:06:35 -04:00
|
|
|
#include <vector>
|
|
|
|
#include <string>
|
|
|
|
|
2017-07-16 21:48:18 -04:00
|
|
|
#include <gtkmm/adjustment.h>
|
2007-06-27 18:06:35 -04:00
|
|
|
#include <gtkmm/box.h>
|
|
|
|
#include <gtkmm/button.h>
|
2017-07-16 21:48:18 -04:00
|
|
|
#include <gtkmm/comboboxtext.h>
|
2007-06-27 18:06:35 -04:00
|
|
|
|
2009-02-25 13:26:51 -05:00
|
|
|
#include "pbd/controllable.h"
|
|
|
|
#include "ardour/types.h"
|
2017-07-16 16:13:46 -04:00
|
|
|
#include "widgets/barcontroller.h"
|
2007-06-27 18:06:35 -04:00
|
|
|
|
|
|
|
#include "ardour_dialog.h"
|
|
|
|
|
|
|
|
namespace ARDOUR {
|
|
|
|
class Latent;
|
|
|
|
}
|
|
|
|
|
2009-06-21 22:00:25 -04:00
|
|
|
class LatencyGUI;
|
|
|
|
|
2020-02-19 10:48:11 -05:00
|
|
|
class LatencyGUIControllable : public PBD::Controllable
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
LatencyGUIControllable (LatencyGUI* g)
|
|
|
|
: PBD::Controllable ("ignoreMe")
|
|
|
|
, _latency_gui (g)
|
|
|
|
{}
|
|
|
|
|
|
|
|
void set_value (double v, PBD::Controllable::GroupControlDisposition group_override);
|
|
|
|
double get_value () const;
|
|
|
|
double lower() const;
|
|
|
|
double upper() const;
|
|
|
|
double internal_to_interface (double i, bool rotary = false) const {
|
|
|
|
return i;
|
|
|
|
}
|
|
|
|
double interface_to_internal (double i, bool rotary = false) const {
|
|
|
|
return i;
|
|
|
|
}
|
|
|
|
|
|
|
|
private:
|
|
|
|
LatencyGUI* _latency_gui;
|
|
|
|
};
|
|
|
|
|
2017-07-16 16:13:46 -04:00
|
|
|
class LatencyBarController : public ArdourWidgets::BarController
|
2009-06-21 22:00:25 -04:00
|
|
|
{
|
|
|
|
public:
|
|
|
|
LatencyBarController (Gtk::Adjustment& adj, LatencyGUI* g)
|
2020-02-19 10:48:11 -05:00
|
|
|
: BarController (adj, boost::shared_ptr<PBD::Controllable> (new LatencyGUIControllable (g)))
|
|
|
|
, _latency_gui (g)
|
|
|
|
{
|
|
|
|
set_digits (0);
|
|
|
|
}
|
2009-10-14 12:10:01 -04:00
|
|
|
|
2009-06-21 22:00:25 -04:00
|
|
|
private:
|
|
|
|
LatencyGUI* _latency_gui;
|
2009-10-14 12:10:01 -04:00
|
|
|
|
2011-01-27 20:04:33 -05:00
|
|
|
std::string get_label (double&);
|
2009-10-14 12:10:01 -04:00
|
|
|
};
|
2009-06-21 22:00:25 -04:00
|
|
|
|
2007-06-27 18:06:35 -04:00
|
|
|
class LatencyGUI : public Gtk::VBox
|
|
|
|
{
|
2017-07-01 15:11:14 -04:00
|
|
|
public:
|
2017-09-18 12:39:17 -04:00
|
|
|
LatencyGUI (ARDOUR::Latent&, samplepos_t sample_rate, samplepos_t period_size);
|
2007-06-27 18:06:35 -04:00
|
|
|
~LatencyGUI() { }
|
|
|
|
|
|
|
|
void refresh ();
|
|
|
|
|
2017-07-01 15:11:14 -04:00
|
|
|
private:
|
2019-07-17 11:04:25 -04:00
|
|
|
void reset ();
|
|
|
|
void finish ();
|
|
|
|
|
2007-06-27 18:06:35 -04:00
|
|
|
ARDOUR::Latent& _latent;
|
2017-09-18 12:39:17 -04:00
|
|
|
samplepos_t sample_rate;
|
|
|
|
samplepos_t period_size;
|
2019-07-17 11:04:25 -04:00
|
|
|
|
|
|
|
bool _ignore_change;
|
2007-06-27 18:06:35 -04:00
|
|
|
Gtk::Adjustment adjustment;
|
2009-06-21 22:00:25 -04:00
|
|
|
LatencyBarController bc;
|
2007-06-27 18:06:35 -04:00
|
|
|
Gtk::HBox hbox1;
|
|
|
|
Gtk::HBox hbox2;
|
|
|
|
Gtk::HButtonBox hbbox;
|
|
|
|
Gtk::Button minus_button;
|
|
|
|
Gtk::Button plus_button;
|
|
|
|
Gtk::Button reset_button;
|
|
|
|
Gtk::ComboBoxText units_combo;
|
|
|
|
|
|
|
|
void change_latency_from_button (int dir);
|
|
|
|
|
2009-06-21 22:00:25 -04:00
|
|
|
friend class LatencyBarController;
|
2020-02-19 10:48:11 -05:00
|
|
|
friend class LatencyGUIControllable;
|
2009-06-21 22:00:25 -04:00
|
|
|
|
2007-06-27 18:06:35 -04:00
|
|
|
static std::vector<std::string> unit_strings;
|
|
|
|
};
|
|
|
|
|
2007-06-28 15:35:48 -04:00
|
|
|
#endif /* __gtk2_ardour_latency_gui_h__ */
|