2017-11-05 04:50:01 +00:00
|
|
|
///////////////////////////////////////////////////////////////////////////////////
|
|
|
|
// Copyright (C) 2017 F4EXB //
|
|
|
|
// written by Edouard Griffiths //
|
|
|
|
// //
|
|
|
|
// OpenGL interface modernization. //
|
|
|
|
// See: http://doc.qt.io/qt-5/qopenglshaderprogram.html //
|
|
|
|
// //
|
|
|
|
// 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 //
|
2019-04-11 12:43:33 +00:00
|
|
|
// (at your option) any later version. //
|
2017-11-05 04:50:01 +00:00
|
|
|
// //
|
|
|
|
// 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 SDRBASE_GUI_EXTERNALCLOCKBUTTON_H_
|
|
|
|
#define SDRBASE_GUI_EXTERNALCLOCKBUTTON_H_
|
|
|
|
|
|
|
|
#include <QPushButton>
|
|
|
|
|
2018-03-20 12:49:21 +00:00
|
|
|
#include "export.h"
|
2018-03-03 19:23:38 +00:00
|
|
|
|
|
|
|
class SDRGUI_API ExternalClockButton : public QPushButton {
|
2017-11-05 04:50:01 +00:00
|
|
|
Q_OBJECT
|
|
|
|
|
|
|
|
public:
|
|
|
|
ExternalClockButton(QWidget* parent = 0);
|
|
|
|
qint64 getExternalClockFrequency() const { return m_externalClockFrequency; }
|
2017-11-05 04:59:04 +00:00
|
|
|
bool getExternalClockActive() const { return m_externalClockActive; }
|
2017-11-05 04:50:01 +00:00
|
|
|
|
|
|
|
void setExternalClockFrequency(qint64 deltaFrequency)
|
|
|
|
{
|
|
|
|
m_externalClockFrequency = deltaFrequency;
|
|
|
|
updateState();
|
|
|
|
}
|
|
|
|
|
2017-11-05 04:59:04 +00:00
|
|
|
void setExternalClockActive(bool active)
|
2017-11-05 04:50:01 +00:00
|
|
|
{
|
2017-11-05 04:59:04 +00:00
|
|
|
m_externalClockActive = active;
|
2017-11-05 04:50:01 +00:00
|
|
|
updateState();
|
|
|
|
}
|
|
|
|
|
|
|
|
private slots:
|
|
|
|
void onClicked();
|
|
|
|
|
|
|
|
private:
|
|
|
|
qint64 m_externalClockFrequency;
|
2017-11-05 04:59:04 +00:00
|
|
|
bool m_externalClockActive;
|
2017-11-05 04:50:01 +00:00
|
|
|
|
|
|
|
void updateState();
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
#endif /* SDRBASE_GUI_EXTERNALCLOCKBUTTON_H_ */
|