mirror of
https://github.com/saitohirga/WSJT-X.git
synced 2024-10-31 23:57:10 -04:00
be5eb31884
git-svn-id: svn+ssh://svn.code.sf.net/p/wsjt/wsjt/branches/wsjtx@5557 ab8295b8-cf94-4d9e-aec4-7959e3be5d79
39 lines
675 B
C++
39 lines
675 B
C++
#ifndef ECHOGRAPH_H
|
|
#define ECHOGRAPH_H
|
|
#include <QDialog>
|
|
|
|
namespace Ui {
|
|
class EchoGraph;
|
|
}
|
|
|
|
class QSettings;
|
|
|
|
class EchoGraph : public QDialog
|
|
{
|
|
Q_OBJECT
|
|
|
|
protected:
|
|
void closeEvent (QCloseEvent *) override;
|
|
|
|
public:
|
|
explicit EchoGraph(QSettings *, QWidget *parent = 0);
|
|
~EchoGraph();
|
|
|
|
void plotSpec();
|
|
void saveSettings();
|
|
|
|
private slots:
|
|
void on_smoothSpinBox_valueChanged(int n);
|
|
void on_cbBlue_toggled(bool checked);
|
|
void on_gainSlider_valueChanged(int value);
|
|
void on_zeroSlider_valueChanged(int value);
|
|
void on_binsPerPixelSpinBox_valueChanged(int n);
|
|
|
|
private:
|
|
QSettings * m_settings;
|
|
|
|
Ui::EchoGraph *ui;
|
|
};
|
|
|
|
#endif // ECHOGRAPH_H
|