File: EqualizationToolsDialog.hpp

package info (click to toggle)
js8call 2.2.0%2Bds-2
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 22,416 kB
  • sloc: cpp: 563,285; f90: 9,265; ansic: 937; python: 132; sh: 93; makefile: 6
file content (31 lines) | stat: -rw-r--r-- 634 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