File: EqualizationToolsDialog.hpp

package info (click to toggle)
wsjtx 3.0.0~rc1%2Brepack-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 86,956 kB
  • sloc: cpp: 105,872; f90: 60,116; python: 27,241; ansic: 13,372; fortran: 2,382; makefile: 197; sh: 135
file content (31 lines) | stat: -rwxr-xr-x 665 bytes parent folder | download | duplicates (6)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
#ifndef EQUALIZATION_TOOLS_DIALOG_HPP__
#define EQUALIZATION_TOOLS_DIALOG_HPP__

#include <QObject>

#include "pimpl_h.hpp"

class QWidget;
class QSettings;
class QDir;

class EqualizationToolsDialog
  : public QObject
{
  Q_OBJECT

public:
  explicit EqualizationToolsDialog (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