Reintegrate merge from wsjtx_exp branch.

git-svn-id: svn+ssh://svn.code.sf.net/p/wsjt/wsjt/branches/wsjtx@6122 ab8295b8-cf94-4d9e-aec4-7959e3be5d79
This commit is contained in:
Bill Somerville
2015-11-18 01:28:12 +00:00
parent 09ef0cccd8
commit 97704efba8
148 changed files with 10084 additions and 1574 deletions
+10 -5
View File
@@ -75,10 +75,12 @@ public:
qint32 breadth() const {return m_w;}
float fSpan() const {return m_fSpan;}
void setLockTxFreq(bool b) {m_lockTxFreq = b;}
void setColours(QVector<QColor> const& cl) {m_ColorTbl = cl;}
void setColours(QVector<QColor> const& cl);
void setFlatten(bool b);
void setTol(int n);
void setRxBand(QString band);
void setReference(bool b) {m_bReference = b;}
bool Reference() const {return m_bReference;}
signals:
void freezeDecode1(int n);
@@ -95,11 +97,11 @@ private:
int XfromFreq(float f);
float FreqfromX(int x);
QVector<QColor> m_ColorTbl;
bool m_bCurrent;
bool m_bCumulative;
bool m_bLinearAvg;
bool m_bReference;
bool m_bReference0;
bool m_lockTxFreq;
float m_fSpan;
@@ -118,7 +120,7 @@ private:
QPixmap m_2DPixmap;
QPixmap m_ScalePixmap;
QPixmap m_OverlayPixmap;
// QPixmap m_LowerScalePixmap;
QSize m_Size;
QString m_Str;
QString m_HDivText[483];
@@ -134,6 +136,8 @@ private:
double m_dialFreq;
double m_xOffset;
float m_sum[2048];
qint32 m_dBStepSize;
qint32 m_FreqUnits;
qint32 m_hdivs;
@@ -153,7 +157,6 @@ private:
qint32 m_fMax;
qint32 m_startFreq;
qint32 m_tol;
qint32 m_y2[2048];
char m_sutc[6];
@@ -162,6 +165,8 @@ private slots:
void mouseDoubleClickEvent(QMouseEvent *event);
};
extern QVector<QColor> g_ColorTbl;
extern "C" {
void flat4_(float swide[], int* iz, int* nflatten);
}