2014-12-02 19:06:54 -05:00
|
|
|
// -*- Mode: C++ -*-
|
|
|
|
#ifndef ASTRO_H
|
|
|
|
#define ASTRO_H
|
|
|
|
|
|
|
|
#include <QWidget>
|
|
|
|
#include <QDir>
|
|
|
|
|
|
|
|
class QSettings;
|
|
|
|
|
|
|
|
namespace Ui {
|
|
|
|
class Astro;
|
|
|
|
}
|
|
|
|
|
|
|
|
class Astro final
|
|
|
|
: public QWidget
|
|
|
|
{
|
|
|
|
Q_OBJECT;
|
|
|
|
|
|
|
|
private:
|
|
|
|
Q_DISABLE_COPY (Astro);
|
|
|
|
|
|
|
|
public:
|
|
|
|
explicit Astro(QSettings * settings, QWidget * parent = nullptr);
|
|
|
|
~Astro ();
|
2015-04-22 13:48:03 -04:00
|
|
|
void astroUpdate(QDateTime t, QString mygrid, QString hisgrid, qint64 freqMoon,
|
|
|
|
qint32* ndop, qint32 *ndop00);
|
2014-12-02 19:06:54 -05:00
|
|
|
|
2015-04-22 13:48:03 -04:00
|
|
|
bool m_bDopplerTracking;
|
|
|
|
bool m_bRxAudioTrack;
|
|
|
|
bool m_bTxAudioTrack;
|
2014-12-02 19:06:54 -05:00
|
|
|
|
2015-04-22 13:48:03 -04:00
|
|
|
qint32 m_DopplerMethod;
|
|
|
|
qint32 m_kHz;
|
|
|
|
qint32 m_stepHz;
|
2014-12-02 19:06:54 -05:00
|
|
|
|
|
|
|
protected:
|
|
|
|
void closeEvent (QCloseEvent *) override;
|
|
|
|
|
2015-04-22 13:48:03 -04:00
|
|
|
private slots:
|
|
|
|
void on_cbDopplerTracking_toggled(bool b);
|
|
|
|
void on_rbConstFreqOnMoon_clicked();
|
|
|
|
void on_rbFullTrack_clicked();
|
|
|
|
void on_rbNoDoppler_clicked();
|
|
|
|
void on_rb1Hz_clicked();
|
|
|
|
void on_rb10Hz_clicked();
|
|
|
|
void on_rb100Hz_clicked();
|
|
|
|
void on_cbRxTrack_toggled(bool b);
|
|
|
|
void on_cbTxTrack_toggled(bool b);
|
|
|
|
void on_kHzSpinBox_valueChanged(int n);
|
|
|
|
|
2014-12-02 19:06:54 -05:00
|
|
|
private:
|
|
|
|
void read_settings ();
|
|
|
|
void write_settings ();
|
|
|
|
|
|
|
|
QSettings * settings_;
|
2015-04-22 13:48:03 -04:00
|
|
|
// QScopedPointer<Ui::Astro> ui_;
|
|
|
|
Ui::Astro *ui_;
|
2014-12-02 19:06:54 -05:00
|
|
|
};
|
|
|
|
|
|
|
|
extern "C" {
|
2015-04-22 13:48:03 -04:00
|
|
|
void astrosub_(int* nyear, int* month, int* nday, double* uth, double* freqMoon,
|
2014-12-02 19:06:54 -05:00
|
|
|
const char* mygrid, const char* hisgrid, double* azsun,
|
|
|
|
double* elsun, double* azmoon, double* elmoon, double* azmoondx,
|
|
|
|
double* elmoondx, int* ntsky, int* ndop, int* ndop00,
|
|
|
|
double* ramoon, double* decmoon, double* dgrd, double* poloffset,
|
|
|
|
double* xnr, double* techo, int len1, int len2);
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif // ASTRO_H
|