1QMouseDriverPlugin(3qt) QMouseDriverPlugin(3qt)
2
3
4
6 QMouseDriverPlugin - Abstract base for Qt/Embedded mouse driver plugins
7
9 #include <qmousedriverplugin_qws.h>
10
11 Public Members
12 QMouseDriverPlugin ()
13 ~QMouseDriverPlugin ()
14 virtual QStringList keys () const = 0
15 virtual QWSMouseHandler * create ( const QString & driver, const
16 QString & device ) = 0
17
19 The QMouseDriverPlugin class provides an abstract base for Qt/Embedded
20 mouse driver plugins.
21
22 The mouse driver plugin is a simple plugin interface that makes it easy
23 to create custom mouse drivers.
24
25 Writing a mouse driver plugin is achieved by subclassing this base
26 class, reimplementing the pure virtual functions keys() and create(),
27 and exporting the class with the Q_EXPORT_PLUGIN macro. See the Plugins
28 documentation for details.
29
30 This class is only available in Qt/Embedded.
31
32 See also Plugins.
33
36 Constructs a mouse driver plugin. This is invoked automatically by the
37 Q_EXPORT_PLUGIN macro.
38
40 Destroys the mouse driver plugin.
41
42 You never have to call this explicitly. Qt destroys a plugin
43 automatically when it is no longer used.
44
46 QString & device ) [pure virtual]
47 Creates a driver matching the type specified by driver and which uses
48 device device.
49
50 See also keys().
51
53 Returns the list of mouse drivers this plugin supports.
54
55 See also create().
56
57
59 http://doc.trolltech.com/qmousedriverplugin.html
60 http://www.trolltech.com/faq/tech.html
61
63 Copyright 1992-2007 Trolltech ASA, http://www.trolltech.com. See the
64 license file included in the distribution for a complete license
65 statement.
66
68 Generated automatically from the source code.
69
71 If you find a bug in Qt, please report it as described in
72 http://doc.trolltech.com/bughowto.html. Good bug reports help us to
73 help you. Thank you.
74
75 The definitive Qt documentation is provided in HTML format; it is
76 located at $QTDIR/doc/html and can be read using Qt Assistant or with a
77 web browser. This man page is provided as a convenience for those users
78 who prefer man pages, although this format is not officially supported
79 by Trolltech.
80
81 If you find errors in this manual page, please report them to qt-
82 bugs@trolltech.com. Please include the name of the manual page
83 (qmousedriverplugin.3qt) and the Qt version (3.3.8).
84
85
86
87Trolltech AS 2 February 2007 QMouseDriverPlugin(3qt)