source: trunk/doc/src/emb-pointer.qdoc@ 357

Last change on this file since 357 was 2, checked in by Dmitry A. Kuminov, 17 years ago

Initially imported qt-all-opensource-src-4.5.1 from Trolltech.

File size: 8.7 KB
Line 
1/****************************************************************************
2**
3** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies).
4** Contact: Qt Software Information ([email protected])
5**
6** This file is part of the documentation of the Qt Toolkit.
7**
8** $QT_BEGIN_LICENSE:LGPL$
9** Commercial Usage
10** Licensees holding valid Qt Commercial licenses may use this file in
11** accordance with the Qt Commercial License Agreement provided with the
12** Software or, alternatively, in accordance with the terms contained in
13** a written agreement between you and Nokia.
14**
15** GNU Lesser General Public License Usage
16** Alternatively, this file may be used under the terms of the GNU Lesser
17** General Public License version 2.1 as published by the Free Software
18** Foundation and appearing in the file LICENSE.LGPL included in the
19** packaging of this file. Please review the following information to
20** ensure the GNU Lesser General Public License version 2.1 requirements
21** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html.
22**
23** In addition, as a special exception, Nokia gives you certain
24** additional rights. These rights are described in the Nokia Qt LGPL
25** Exception version 1.0, included in the file LGPL_EXCEPTION.txt in this
26** 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 are unsure which license is appropriate for your use, please
37** contact the sales department 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, NEC Vr41XX, Linux Touch Panel and Yopy
68 protocols as well as the universal touch screen library,
69 tslib. Run the \c configure script to list the available drivers:
70
71 \if defined(QTOPIA_PHONE)
72
73 \snippet doc/src/snippets/code/doc_src_emb-pointer.qdoc 0
74
75 \bold{Note:} By default only the PC mouse driver is enabled.
76
77 The various drivers can be enabled and disabled using the \c
78 configure script. For example:
79
80 \snippet doc/src/snippets/code/doc_src_emb-pointer.qdoc 1
81
82 \else
83
84 \snippet doc/src/snippets/code/doc_src_emb-pointer.qdoc 2
85
86 In the default Qt configuration, only the "pc" mouse driver is
87 enabled. The various drivers can be enabled and disabled using
88 the \c configure script. For example:
89
90 \snippet doc/src/snippets/code/doc_src_emb-pointer.qdoc 3
91 \endif
92
93 Custom mouse drivers can be implemented by subclassing the
94 QWSMouseHandler class and creating a mouse driver plugin (derived
95 from the QMouseDriverPlugin class). The default implementation of the
96 QMouseDriverFactory class will automatically detect the plugin,
97 loading the driver into the server application at run-time.
98
99 If you are creating a driver for a device that needs calibration
100 or noise reduction, such as a touchscreen, derive from the
101 QWSCalibratedMouseHandler subclass instead to take advantage of
102 its calibration functionality.
103
104 \if defined(QTOPIA_PHONE)
105 For a tutorial on how to add a new keyboard driver plug-in
106 see: \l {Tutorial: Implementing a Device Plug-in}.
107 \endif
108
109 \section1 Specifying a Driver
110