[556] | 1 | /****************************************************************************
|
---|
| 2 | **
|
---|
| 3 | ** Copyright (C) 2009 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 documentation 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 | /*!
|
---|
| 43 | \page qt-embedded-pointer.html
|
---|
| 44 |
|
---|
| 45 | \title Qt for Embedded Linux Pointer Handling
|
---|
| 46 | \ingroup qt-embedded-linux
|
---|
| 47 |
|
---|
| 48 | When running a \l{Qt for Embedded Linux} application, it either runs as a
|
---|
| 49 | server or connects to an existing server. The mouse driver is
|
---|
| 50 | loaded by the server application when it starts running, using
|
---|
| 51 | Qt's \l {How to Create Qt Plugins}{plugin system}.
|
---|
| 52 |
|
---|
| 53 | Internally in the client/server protocol, all system generated
|
---|
| 54 | events, including pointer events, are passed to the server
|
---|
| 55 | application which then propagates the event to the appropriate
|
---|
| 56 | client. Note that pointer handling in \l{Qt for Embedded Linux} works for
|
---|
| 57 | both mouse and mouse-like devices such as touch panels and
|
---|
| 58 | trackballs.
|
---|
| 59 |
|
---|
| 60 | Contents:
|
---|
| 61 |
|
---|
| 62 | \tableofcontents
|
---|
| 63 |
|
---|
| 64 | \section1 Available Drivers
|
---|
| 65 |
|
---|
| 66 | \l{Qt for Embedded Linux} provides ready-made drivers for the MouseMan,
|
---|
| 67 | IntelliMouse, Microsoft and Linux Touch Panel protocols, for the
|
---|
| 68 | standard Linux Input Subsystem as well as the universal touch screen
|
---|
| 69 | library, tslib. Run the \c configure script to list the available
|
---|
| 70 | drivers:
|
---|
| 71 |
|
---|
| 72 | \if defined(QTOPIA_PHONE)
|
---|
| 73 |
|
---|
| 74 | \snippet doc/src/snippets/code/doc_src_emb-pointer.qdoc 0
|
---|
| 75 |
|
---|
| 76 | \bold{Note:} By default only the PC mouse driver is enabled.
|
---|
| 77 |
|
---|
| 78 | The various drivers can be enabled and disabled using the \c
|
---|
| 79 | configure script. For example:
|
---|
| 80 |
|
---|
| 81 | \snippet doc/src/snippets/code/doc_src_emb-pointer.qdoc 1
|
---|
| 82 |
|
---|
| 83 | \else
|
---|
| 84 |
|
---|
| 85 | \snippet doc/src/snippets/code/doc_src_emb-pointer.qdoc 2
|
---|
| 86 |
|
---|
| 87 | In the default Qt configuration, only the "pc" mouse driver is
|
---|
| 88 | enabled. The various drivers can be enabled and disabled using
|
---|
| 89 | the \c configure script. For example:
|
---|
| 90 |
|
---|
| 91 | \snippet doc/src/snippets/code/doc_src_emb-pointer.qdoc 3
|
---|
| 92 | \endif
|
---|
| 93 |
|
---|
| 94 | Custom mouse drivers can be implemented by subclassing the
|
---|
| 95 | QWSMouseHandler class and creating a mouse driver plugin (derived
|
---|
| 96 | from the QMouseDriverPlugin class). The default implementation of the
|
---|
| 97 | QMouseDriverFactory class will automatically detect the plugin,
|
---|
| 98 | loading the driver into the server application at run-time.
|
---|
| 99 |
|
---|
| 100 | If you are creating a driver for a device that needs calibration
|
---|
| |
---|