mirror of
https://github.com/saitohirga/WSJT-X.git
synced 2025-12-07 11:33:24 -05:00
git-svn-id: svn+ssh://svn.code.sf.net/p/wsjt/wsjt/branches/wsjtx@8204 ab8295b8-cf94-4d9e-aec4-7959e3be5d79
46 lines
804 B
C++
46 lines
804 B
C++
#ifndef FOXCALLS_H
|
|
#define FOXCALLS_H
|
|
|
|
#include <QWidget>
|
|
#include <QScopedPointer>
|
|
#include <QFont>
|
|
#include <QDebug>
|
|
|
|
namespace Ui {
|
|
class FoxCalls;
|
|
}
|
|
|
|
class QSettings;
|
|
class QFont;
|
|
|
|
class FoxCalls : public QWidget
|
|
{
|
|
Q_OBJECT
|
|
|
|
protected:
|
|
void closeEvent (QCloseEvent *) override;
|
|
|
|
public:
|
|
explicit FoxCalls(QSettings *, QWidget *parent = 0);
|
|
~FoxCalls();
|
|
|
|
void saveSettings();
|
|
void insertText(QString t);
|
|
|
|
private slots:
|
|
void on_rbCall_toggled(bool b);
|
|
void on_rbGrid_toggled(bool b);
|
|
void on_rbSNR_toggled(bool b);
|
|
void on_rbAge_toggled(bool b);
|
|
void on_cbReverse_toggled(bool b);
|
|
|
|
private:
|
|
bool m_bFirst=true;
|
|
bool m_bReverse;
|
|
QString m_t0;
|
|
QSettings * m_settings;
|
|
QScopedPointer<Ui::FoxCalls> ui;
|
|
};
|
|
|
|
#endif // FOXCALLS_H
|