mirror of
https://github.com/saitohirga/WSJT-X.git
synced 2024-10-31 15:47:10 -04:00
19c46774b4
There's not much to show for this so far but some of the necessary infrastructure is in place.
30 lines
627 B
C++
30 lines
627 B
C++
#ifndef FREQUENCY_DELTA_LINE_EDIT_HPP_
|
|
#define FREQUENCY_DELTA_LINE_EDIT_HPP_
|
|
|
|
#include <QLineEdit>
|
|
|
|
#include "Radio.hpp"
|
|
|
|
class QWidget;
|
|
|
|
//
|
|
// MHz frequency delta line edit with validation
|
|
//
|
|
class FrequencyDeltaLineEdit final
|
|
: public QLineEdit
|
|
{
|
|
Q_OBJECT;
|
|
Q_PROPERTY (FrequencyDelta frequency_delta READ frequency_delta WRITE frequency_delta USER true);
|
|
|
|
public:
|
|
using FrequencyDelta = Radio::FrequencyDelta;
|
|
|
|
explicit FrequencyDeltaLineEdit (QWidget * parent = nullptr);
|
|
|
|
// Property frequency_delta implementation
|
|
FrequencyDelta frequency_delta () const;
|
|
void frequency_delta (FrequencyDelta);
|
|
};
|
|
|
|
#endif
|