mirror of
https://github.com/saitohirga/WSJT-X.git
synced 2024-11-01 16:13:57 -04:00
9f3a50531c
Use a header format for polynomial coefficients that includes the valid X range in scaled terms and a count of the number of coefficients. Use double precision consistently for polynomial coefficients. This includes formatting with sufficient DPs when writing to files. Many changes to the equalization plots, more to come. Add error handling for reading coefficient, plot and filter files. This includes being backward compatible for old format refspec.dat files with no header. git-svn-id: svn+ssh://svn.code.sf.net/p/wsjt/wsjt/branches/wsjtx@7578 ab8295b8-cf94-4d9e-aec4-7959e3be5d79
32 lines
634 B
C++
32 lines
634 B
C++
#ifndef PHASE_EQUALIZATION_DIALOG_HPP__
|
|
#define PHASE_EQUALIZATION_DIALOG_HPP__
|
|
|
|
#include <QObject>
|
|
|
|
#include "pimpl_h.hpp"
|
|
|
|
class QWidget;
|
|
class QSettings;
|
|
class QDir;
|
|
|
|
class PhaseEqualizationDialog
|
|
: public QObject
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
explicit PhaseEqualizationDialog (QSettings *
|
|
, QDir const& data_directory
|
|
, QVector<double> const& coefficients
|
|
, QWidget * = nullptr);
|
|
Q_SLOT void show ();
|
|
|
|
Q_SIGNAL void phase_equalization_changed (QVector<double> const&);
|
|
|
|
private:
|
|
class impl;
|
|
pimpl<impl> m_;
|
|
};
|
|
|
|
#endif
|