mirror of
https://github.com/saitohirga/WSJT-X.git
synced 2024-10-31 15:47:10 -04:00
37e78f1afa
Don't change frequency settings on double-click on decoded text, if the first call is MyCall. git-svn-id: svn+ssh://svn.code.sf.net/p/wsjt/wsjt/branches/wsjtx@3038 ab8295b8-cf94-4d9e-aec4-7959e3be5d79
73 lines
1.5 KiB
C++
73 lines
1.5 KiB
C++
#ifndef WIDEGRAPH_H
|
|
#define WIDEGRAPH_H
|
|
#include <QDialog>
|
|
|
|
namespace Ui {
|
|
class WideGraph;
|
|
}
|
|
|
|
class WideGraph : public QDialog
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
explicit WideGraph(QWidget *parent = 0);
|
|
~WideGraph();
|
|
|
|
void dataSink2(float s[], float red[], float df3, int ihsym,
|
|
int ndiskdata, uchar lstrong[]);
|
|
void setQSOfreq(int n);
|
|
int QSOfreq();
|
|
int nSpan();
|
|
int nStartFreq();
|
|
float fSpan();
|
|
void saveSettings();
|
|
int Tol();
|
|
void setTol(int n);
|
|
void setFcal(int n);
|
|
void setPalette(QString palette);
|
|
void setFsample(int n);
|
|
void setPeriod(int ntrperiod, int nsps);
|
|
void setTxFreq(int n);
|
|
double fGreen();
|
|
double dialFreq();
|
|
|
|
qint32 m_qsoFreq;
|
|
|
|
signals:
|
|
void freezeDecode2(int n);
|
|
void f11f12(int n);
|
|
|
|
public slots:
|
|
void wideFreezeDecode(int n);
|
|
|
|
protected:
|
|
virtual void keyPressEvent( QKeyEvent *e );
|
|
|
|
private slots:
|
|
void on_waterfallAvgSpinBox_valueChanged(int arg1);
|
|
void on_freqSpanSpinBox_valueChanged(int arg1);
|
|
void on_zeroSpinBox_valueChanged(int arg1);
|
|
void on_gainSpinBox_valueChanged(int arg1);
|
|
void on_fDialLineEdit_editingFinished();
|
|
void on_spec2dComboBox_currentIndexChanged(const QString &arg1);
|
|
|
|
private:
|
|
qint32 m_waterfallAvg;
|
|
qint32 m_fCal;
|
|
qint32 m_fSample;
|
|
qint32 m_TRperiod;
|
|
qint32 m_nsps;
|
|
qint32 m_ntr0;
|
|
|
|
double m_dialFreq;
|
|
|
|
Ui::WideGraph *ui;
|
|
};
|
|
|
|
#ifdef WIN32
|
|
extern int set570(double freq_MHz);
|
|
#endif
|
|
|
|
#endif // WIDEGRAPH_H
|