summaryrefslogtreecommitdiffstats
path: root/src/bluetooth/doc/src/bluetooth-index.qdoc
diff options
context:
space:
mode:
authorJerome Pasion <jerome.pasion@digia.com>2012-09-25 15:20:41 +0200
committerThe Qt Project <gerrit-noreply@qt-project.org>2012-09-27 14:43:52 +0200
commitd8a179128c0fa8e9cc482df58b9334c696602be6 (patch)
treedd5032440aa87dfd63c973265adc9947db0918f6 /src/bluetooth/doc/src/bluetooth-index.qdoc
parent9d89c661395347bdda9362a77d38c86ad60f486b (diff)
Qt Bluetooth: Modularized documentation
-moved documentation to src/bluetooth/doc -added a qdocconf file for Qt Bluetooth -fixed relative paths for snippets -moved examples to examples/bluetooth Change-Id: Id41bac50dca628400568d191f1c3ccfbaac790a1 Reviewed-by: Alex <ablasche@gmail.com>
Diffstat (limited to 'src/bluetooth/doc/src/bluetooth-index.qdoc')
-rw-r--r--src/bluetooth/doc/src/bluetooth-index.qdoc95
1 files changed, 95 insertions, 0 deletions
diff --git a/src/bluetooth/doc/src/bluetooth-index.qdoc b/src/bluetooth/doc/src/bluetooth-index.qdoc
new file mode 100644
index 00000000..371de05c
--- /dev/null
+++ b/src/bluetooth/doc/src/bluetooth-index.qdoc
@@ -0,0 +1,95 @@
+/****************************************************************************
+**
+** Copyright (C) 2012 Digia Plc and/or its subsidiary(-ies).
+** Contact: http://www.qt-project.org/legal
+**
+** This file is part of the documentation of the Qt Toolkit.
+**
+** $QT_BEGIN_LICENSE:FDL$
+** Commercial License Usage
+** Licensees holding valid commercial Qt licenses may use this file in
+** accordance with the commercial license agreement provided with the
+** Software or, alternatively, in accordance with the terms contained in
+** a written agreement between you and Digia. For licensing terms and
+** conditions see http://qt.digia.com/licensing. For further information
+** use the contact form at http://qt.digia.com/contact-us.
+**
+** GNU Free Documentation License Usage
+** Alternatively, this file may be used under the terms of the GNU Free
+** Documentation License version 1.3 as published by the Free Software
+** Foundation and appearing in the file included in the packaging of
+** this file. Please review the following information to ensure
+** the GNU Free Documentation License version 1.3 requirements
+** will be met: http://www.gnu.org/copyleft/fdl.html.
+** $QT_END_LICENSE$
+**
+****************************************************************************/
+
+/*!
+ \page qtbluetooth-index.html
+ \title Qt Bluetooth
+ \brief Qt Bluetooth enables connectivity between Bluetooth enabled devices.
+
+ Bluetooth is a short-range (less than 100 meters) wireless technology. It
+ has a reasonably high data transfer rate of 2.1 Mbit/s, which makes it ideal
+ for transfering data between devices.
+
+ Bluetooth connectivity is based on basic device management, such as scanning
+ for devices, gathering information about them, and exchaning data between
+ them.
+
+ \section1 Getting Started
+
+ To use the C++ library in your application, add the following configuration
+ option to your \c .pro file:
+
+ \snippet doc_src_qtbluetooth.pro contacts project modification
+
+ To use the classes of the module in your application you need the following
+ import statement in your \c .qml file:
+
+ \snippet doc_src_qtbluetooth.qml import
+
+ \section1 References
+
+ \table
+ \header
+ \li {1,4} Reference
+ \li {1,4} Guides
+ \li {4,1} Examples
+ \header
+ \li QML API examples
+ \li C++ API examples
+ \row
+ \li \l{Qt Bluetooth QML API}
+ \li \l{Qt Bluetooth Overview}
+ \li \l{btscanner}{QML Bluetooth Scanner}
+
+ A QML implementation of the Bluetooth device scanner.
+ \li \l{btscanner}{Bluetooth Scanner}
+
+ Scan for Bluetooth devices.
+ \row
+ \li \l{Qt Bluetooth C++ API}
+ \li \l{btchat}{Qt Bluetooth Tutorial}
+
+ A chat server and client using bluetooth.
+ \li \l{bttennis}{QML Bluetooth Tennis}
+
+ The tennis game using a QML interface to the Qt Bluetooth QML API.
+ It must connect to an instance of the C++ tennis game to play.
+ \li \l{bttennis}{Bluetooth Tennis}
+
+ The classic game of \l{http://en.wikipedia.org/wiki/Pong}{Pong}.
+ Supports multiplayer over Bluetooth and touch-to-play
+ functionality on devices that support NFC.
+ \row
+ \li
+ \li
+ \li
+ \li \l{btfiletransfer}{Bluetooth File Transfer}
+
+ Transfer files between Bluetooth devices.
+ \endtable
+
+*/