-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Justin McPherson
committed
Aug 5, 2009
1 parent
bd51c30
commit e7052de
Showing
88 changed files
with
12,950 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
SOURCES = alsatest.cpp | ||
LIBS+=-lasound | ||
CONFIG -= qt dylib | ||
mac:CONFIG -= app_bundle |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
#include <alsa/asoundlib.h> | ||
int main(int argc,char **argv) | ||
{ | ||
return 0; | ||
} | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,54 @@ | ||
/**************************************************************************** | ||
** | ||
** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). | ||
** Contact: Nokia Corporation ([email protected]) | ||
** | ||
** This file is part of the documentation of the Qt Toolkit. | ||
** | ||
** $QT_BEGIN_LICENSE:LGPL$ | ||
** No Commercial Usage | ||
** This file contains pre-release code and may not be distributed. | ||
** You may use this file in accordance with the terms and conditions | ||
** contained in the either Technology Preview License Agreement or the | ||
** Beta Release License Agreement. | ||
** | ||
** GNU Lesser General Public License Usage | ||
** Alternatively, this file may be used under the terms of the GNU Lesser | ||
** General Public License version 2.1 as published by the Free Software | ||
** Foundation and appearing in the file LICENSE.LGPL included in the | ||
** packaging of this file. Please review the following information to | ||
** ensure the GNU Lesser General Public License version 2.1 requirements | ||
** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. | ||
** | ||
** In addition, as a special exception, Nokia gives you certain | ||
** additional rights. These rights are described in the Nokia Qt LGPL | ||
** Exception version 1.0, included in the file LGPL_EXCEPTION.txt in this | ||
** package. | ||
** | ||
** GNU General Public License Usage | ||
** Alternatively, this file may be used under the terms of the GNU | ||
** General Public License version 3.0 as published by the Free Software | ||
** Foundation and appearing in the file LICENSE.GPL included in the | ||
** packaging of this file. Please review the following information to | ||
** ensure the GNU General Public License version 3.0 requirements will be | ||
** met: http://www.gnu.org/copyleft/gpl.html. | ||
** | ||
** If you are unsure which license is appropriate for your use, please | ||
** contact the sales department at http://www.qtsoftware.com/contact. | ||
** $QT_END_LICENSE$ | ||
** | ||
****************************************************************************/ | ||
|
||
/*! | ||
\example multimedia/audio/audiodevices | ||
\title Audio Devices Example | ||
|
||
The Audio Devices example demonstrates the basic use of QAudioDeviceInfo class | ||
provided with Qt. | ||
|
||
Qt provides the QAudioDeviceInfo class to enable audio querying within | ||
a standard application user interface. | ||
|
||
This example allows you to browse audio devices available and try out different | ||
configurations to see if they are supported. | ||
*/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,54 @@ | ||
/**************************************************************************** | ||
** | ||
** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). | ||
** Contact: Nokia Corporation ([email protected]) | ||
** | ||
** This file is part of the documentation of the Qt Toolkit. | ||
** | ||
** $QT_BEGIN_LICENSE:LGPL$ | ||
** No Commercial Usage | ||
** This file contains pre-release code and may not be distributed. | ||
** You may use this file in accordance with the terms and conditions | ||
** contained in the either Technology Preview License Agreement or the | ||
** Beta Release License Agreement. | ||
** | ||
** GNU Lesser General Public License Usage | ||
** Alternatively, this file may be used under the terms of the GNU Lesser | ||
** General Public License version 2.1 as published by the Free Software | ||
** Foundation and appearing in the file LICENSE.LGPL included in the | ||
** packaging of this file. Please review the following information to | ||
** ensure the GNU Lesser General Public License version 2.1 requirements | ||
** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. | ||
** | ||
** In addition, as a special exception, Nokia gives you certain | ||
** additional rights. These rights are described in the Nokia Qt LGPL | ||
** Exception version 1.0, included in the file LGPL_EXCEPTION.txt in this | ||
** package. | ||
** | ||
** GNU General Public License Usage | ||
** Alternatively, this file may be used under the terms of the GNU | ||
** General Public License version 3.0 as published by the Free Software | ||
** Foundation and appearing in the file LICENSE.GPL included in the | ||
** packaging of this file. Please review the following information to | ||
** ensure the GNU General Public License version 3.0 requirements will be | ||
** met: http://www.gnu.org/copyleft/gpl.html. | ||
** | ||
** If you are unsure which license is appropriate for your use, please | ||
** contact the sales department at http://www.qtsoftware.com/contact. | ||
** $QT_END_LICENSE$ | ||
** | ||
****************************************************************************/ | ||
|
||
/*! | ||
\example multimedia/audio/audioinput | ||
\title AudioInput Example | ||
|
||
The Audio Input example demonstrates the basic use of QAudioInput class | ||
provided with Qt. | ||
|
||
Qt provides the QAudioInput class to enable audio functionality within | ||
a standard application user interface. | ||
|
||
This example uses a fast-fourier transform on the input audio from the microphone | ||
and displays the output. | ||
*/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,52 @@ | ||
/**************************************************************************** | ||
** | ||
** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). | ||
** Contact: Nokia Corporation ([email protected]) | ||
** | ||
** This file is part of the documentation of the Qt Toolkit. | ||
** | ||
** $QT_BEGIN_LICENSE:LGPL$ | ||
** No Commercial Usage | ||
** This file contains pre-release code and may not be distributed. | ||
** You may use this file in accordance with the terms and conditions | ||
** contained in the either Technology Preview License Agreement or the | ||
** Beta Release License Agreement. | ||
** | ||
** GNU Lesser General Public License Usage | ||
** Alternatively, this file may be used under the terms of the GNU Lesser | ||
** General Public License version 2.1 as published by the Free Software | ||
** Foundation and appearing in the file LICENSE.LGPL included in the | ||
** packaging of this file. Please review the following information to | ||
** ensure the GNU Lesser General Public License version 2.1 requirements | ||
** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. | ||
** | ||
** In addition, as a special exception, Nokia gives you certain | ||
** additional rights. These rights are described in the Nokia Qt LGPL | ||
** Exception version 1.0, included in the file LGPL_EXCEPTION.txt in this | ||
** package. | ||
** | ||
** GNU General Public License Usage | ||
** Alternatively, this file may be used under the terms of the GNU | ||
** General Public License version 3.0 as published by the Free Software | ||
** Foundation and appearing in the file LICENSE.GPL included in the | ||
** packaging of this file. Please review the following information to | ||
** ensure the GNU General Public License version 3.0 requirements will be | ||
** met: http://www.gnu.org/copyleft/gpl.html. | ||
** | ||
** If you are unsure which license is appropriate for your use, please | ||
** contact the sales department at http://www.qtsoftware.com/contact. | ||
** $QT_END_LICENSE$ | ||
** | ||
****************************************************************************/ | ||
|
||
/*! | ||
\example multimedia/audio/audiooutput | ||
\title Audio Output Example | ||
|
||
The Audio Output example demonstrates the basic use of the QAudioOutput class | ||
provided with Qt. | ||
|
||
This example provides a tone generator to supply continuous audio playback. | ||
The first button allows pause and resume of the playback. | ||
The second button allows toggling between push and pull modes of operation. | ||
*/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
|
||
The example launcher provided with Qt can be used to explore each of the | ||
examples in this directory. | ||
|
||
Documentation for these examples can be found via the Tutorial and Examples | ||
link in the main Qt documentation. | ||
|
||
|
||
Finding the Qt Examples and Demos launcher | ||
========================================== | ||
|
||
On Windows: | ||
|
||
The launcher can be accessed via the Windows Start menu. Select the menu | ||
entry entitled "Qt Examples and Demos" entry in the submenu containing | ||
the Qt tools. | ||
|
||
On Mac OS X: | ||
|
||
For the binary distribution, the qtdemo executable is installed in the | ||
/Developer/Applications/Qt directory. For the source distribution, it is | ||
installed alongside the other Qt tools on the path specified when Qt is | ||
configured. | ||
|
||
On Unix/Linux: | ||
|
||
The qtdemo executable is installed alongside the other Qt tools on the path | ||
specified when Qt is configured. | ||
|
||
On all platforms: | ||
|
||
The source code for the launcher can be found in the demos/qtdemo directory | ||
in the Qt package. This example is built at the same time as the Qt libraries, | ||
tools, examples, and demonstrations. |
Oops, something went wrong.