summaryrefslogtreecommitdiffstats
path: root/examples/multimedia/spectrum/tonegeneratordialog.h
blob: 2b0aed501fce243aa7f323e791def91d0cb69376 (plain)
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
// Copyright (C) 2017 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR BSD-3-Clause

#ifndef TONEGENERATORDIALOG_H
#define TONEGENERATORDIALOG_H

#include "spectrum.h"

#include <QAudioDevice>
#include <QDialog>

QT_BEGIN_NAMESPACE
class QCheckBox;
class QSlider;
class QSpinBox;
class QGridLayout;
QT_END_NAMESPACE

/**
 * Dialog which controls the parameters of the tone generator.
 */
class ToneGeneratorDialog : public QDialog
{
    Q_OBJECT

public:
    explicit ToneGeneratorDialog(QWidget *parent = nullptr);
    ~ToneGeneratorDialog();

    bool isFrequencySweepEnabled() const;
    qreal frequency() const;
    qreal amplitude() const;

private slots:
    void frequencySweepEnabled(bool enabled);

private:
    QCheckBox *m_toneGeneratorSweepCheckBox;
    bool m_frequencySweepEnabled;
    QWidget *m_toneGeneratorControl;
    QWidget *m_toneGeneratorFrequencyControl;
    QSlider *m_frequencySlider;
    QSpinBox *m_frequencySpinBox;
    QSlider *m_amplitudeSlider;
};

#endif // TONEGENERATORDIALOG_H