source: trunk/examples/multimedia/audioinput/audioinput.h@ 769

Last change on this file since 769 was 769, checked in by Dmitry A. Kuminov, 15 years ago

trunk: Merged in qt 4.6.3 sources from branches/vendor/nokia/qt.

  • Property svn:eol-style set to native
File size: 3.6 KB
Line 
1/****************************************************************************
2**
3** Copyright (C) 2010 Nokia Corporation and/or its subsidiary(-ies).
4** All rights reserved.
5** Contact: Nokia Corporation ([email protected])
6**
7** This file is part of the examples of the Qt Toolkit.
8**
9** $QT_BEGIN_LICENSE:LGPL$
10** Commercial Usage
11** Licensees holding valid Qt Commercial licenses may use this file in
12** accordance with the Qt Commercial License Agreement provided with the
13** Software or, alternatively, in accordance with the terms contained in
14** a written agreement between you and Nokia.
15**
16** GNU Lesser General Public License Usage
17** Alternatively, this file may be used under the terms of the GNU Lesser
18** General Public License version 2.1 as published by the Free Software
19** Foundation and appearing in the file LICENSE.LGPL included in the
20** packaging of this file. Please review the following information to
21** ensure the GNU Lesser General Public License version 2.1 requirements
22** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html.
23**
24** In addition, as a special exception, Nokia gives you certain additional
25** rights. These rights are described in the Nokia Qt LGPL Exception
26** version 1.1, included in the file LGPL_EXCEPTION.txt in this package.
27**
28** GNU General Public License Usage
29** Alternatively, this file may be used under the terms of the GNU
30** General Public License version 3.0 as published by the Free Software
31** Foundation and appearing in the file LICENSE.GPL included in the
32** packaging of this file. Please review the following information to
33** ensure the GNU General Public License version 3.0 requirements will be
34** met: http://www.gnu.org/copyleft/gpl.html.
35**
36** If you have questions regarding the use of this file, please contact
37** Nokia at [email protected].
38** $QT_END_LICENSE$
39**
40****************************************************************************/
41
42#include <QPixmap>
43#include <QWidget>
44#include <QObject>
45#include <QMainWindow>
46#include <QPushButton>
47#include <QComboBox>
48#include <QByteArray>
49
50#include <qaudioinput.h>
51
52class AudioInfo : public QIODevice
53{
54 Q_OBJECT
55public:
56 AudioInfo(const QAudioFormat &format, QObject *parent);
57 ~AudioInfo();
58
59 void start();
60 void stop();
61
62 qreal level() const { return m_level; }
63
64 qint64 readData(char *data, qint64 maxlen);
65 qint64 writeData(const char *data, qint64 len);
66
67private:
68 const QAudioFormat m_format;
69 quint16 m_maxAmplitude;
70 qreal m_level; // 0.0 <= m_level <= 1.0
71
72signals:
73 void update();
74};
75
76
77class RenderArea : public QWidget
78{
79 Q_OBJECT
80
81public:
82 RenderArea(QWidget *parent = 0);
83
84 void setLevel(qreal value);
85
86protected:
87 void paintEvent(QPaintEvent *event);
88
89private:
90 qreal m_level;
91 QPixmap m_pixmap;
92};
93
94class InputTest : public QMainWindow
95{
96 Q_OBJECT
97public:
98 InputTest();
99 ~InputTest();
100
101private:
102 void initializeWindow();
103 void initializeAudio();
104 void createAudioInput();
105
106private slots:
107 void refreshDisplay();
108 void notified();
109 void readMore();
110 void toggleMode();
111 void toggleSuspend();
112 void stateChanged(QAudio::State state);
113 void deviceChanged(int index);
114
115private:
116 // Owned by layout
117 RenderArea *m_canvas;
118 QPushButton *m_modeButton;
119 QPushButton *m_suspendResumeButton;
120 QComboBox *m_deviceBox;
121
122 QAudioDeviceInfo m_device;
123 AudioInfo *m_audioInfo;
124 QAudioFormat m_format;
125 QAudioInput *m_audioInput;
126 QIODevice *m_input;
127 bool m_pullMode;
128 QByteArray m_buffer;
129
130 static const QString PushModeLabel;
131 static const QString PullModeLabel;
132 static const QString SuspendLabel;
133 static const QString ResumeLabel;
134};
135
Note: See TracBrowser for help on using the repository browser.