1
0
mirror of https://github.com/f4exb/sdrangel.git synced 2024-09-09 14:46:34 -04:00
sdrangel/plugins/samplesource/soapysdrinput/intervalrangegui.h

56 lines
2.1 KiB
C
Raw Normal View History

///////////////////////////////////////////////////////////////////////////////////
// Copyright (C) 2018 Edouard Griffiths, F4EXB //
// //
// 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 as version 3 of the License, or //
// //
// 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 V3 for more details. //
// //
// You should have received a copy of the GNU General Public License //
// along with this program. If not, see <http://www.gnu.org/licenses/>. //
///////////////////////////////////////////////////////////////////////////////////
#ifndef PLUGINS_SAMPLESOURCE_SOAPYSDRINPUT_INTERVALRANGEGUI_H_
#define PLUGINS_SAMPLESOURCE_SOAPYSDRINPUT_INTERVALRANGEGUI_H_
#include <QWidget>
#include <QString>
namespace Ui {
class IntervalRangeGUI;
}
class IntervalRangeGUI : public QWidget
{
Q_OBJECT
public:
explicit IntervalRangeGUI(QWidget* parent = 0);
~IntervalRangeGUI();
void setLabel(const QString& text);
void setUnits(const QString& units);
void addInterval(double minimum, double maximum);
void reset();
double getCurrentValue();
signals:
void valueChanged(double value);
private slots:
void on_value_changed(quint64 value);
void on_rangeInterval_currentIndexChanged(int index);
private:
Ui::IntervalRangeGUI* ui;
std::vector<double> m_minima;
std::vector<double> m_maxima;
int m_nbDigits;
};
#endif /* PLUGINS_SAMPLESOURCE_SOAPYSDRINPUT_INTERVALRANGEGUI_H_ */