mirror of
https://github.com/saitohirga/WSJT-X.git
synced 2024-11-01 16:13:57 -04:00
7b144f2800
2. Move cursor DT readout to lower left of top panel. 3. More work on pick-decodes... but it's not yet fully working. git-svn-id: svn+ssh://svn.code.sf.net/p/wsjt/wsjt/branches/wsjtx@7092 ab8295b8-cf94-4d9e-aec4-7959e3be5d79
49 lines
860 B
C++
49 lines
860 B
C++
#ifndef FASTGRAPH_H
|
|
#define FASTGRAPH_H
|
|
|
|
#include <QDialog>
|
|
#include <QScopedPointer>
|
|
|
|
namespace Ui {
|
|
class FastGraph;
|
|
}
|
|
|
|
class QSettings;
|
|
|
|
class FastGraph : public QDialog
|
|
{
|
|
Q_OBJECT
|
|
|
|
protected:
|
|
void closeEvent (QCloseEvent *) override;
|
|
|
|
public:
|
|
explicit FastGraph(QSettings *, QWidget *parent = 0);
|
|
~FastGraph();
|
|
|
|
void plotSpec(bool diskData, int UTCdisk);
|
|
void saveSettings();
|
|
void setTRperiod(int n);
|
|
|
|
signals:
|
|
void fastPick(int x0, int x1, int y);
|
|
|
|
private slots:
|
|
void on_gainSlider_valueChanged(int value);
|
|
void on_zeroSlider_valueChanged(int value);
|
|
void on_greenZeroSlider_valueChanged(int value);
|
|
void on_pbAutoLevel_clicked();
|
|
|
|
private:
|
|
QSettings * m_settings;
|
|
float m_ave;
|
|
qint32 m_TRperiod;
|
|
|
|
QScopedPointer<Ui::FastGraph> ui;
|
|
};
|
|
|
|
extern float fast_green[703];
|
|
extern int fast_jh;
|
|
|
|
#endif // FASTGRAPH_H
|