summaryrefslogtreecommitdiffstats
path: root/doc/man/man3/tqkeyevent.3qt
blob: 806e91b9b078aea4027733a63b83e25cd99c378f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
'\" t
.TH QKeyEvent 3qt "2 February 2007" "Trolltech AS" \" -*- nroff -*-
.\" Copyright 1992-2007 Trolltech ASA.  All rights reserved.  See the
.\" license file included in the distribution for a complete license
.\" statement.
.\"
.ad l
.nh
.SH NAME
QKeyEvent \- Describes a key event
.SH SYNOPSIS
\fC#include <ntqevent.h>\fR
.PP
Inherits QEvent.
.PP
.SS "Public Members"
.in +1c
.ti -1c
.BI "\fBQKeyEvent\fR ( Type type, int key, int ascii, int state, const QString & text = QString::null, bool autorep = FALSE, ushort count = 1 )"
.br
.ti -1c
.BI "int \fBkey\fR () const"
.br
.ti -1c
.BI "int \fBascii\fR () const"
.br
.ti -1c
.BI "ButtonState \fBstate\fR () const"
.br
.ti -1c
.BI "ButtonState \fBstateAfter\fR () const"
.br
.ti -1c
.BI "bool \fBisAccepted\fR () const"
.br
.ti -1c
.BI "QString \fBtext\fR () const"
.br
.ti -1c
.BI "bool \fBisAutoRepeat\fR () const"
.br
.ti -1c
.BI "int \fBcount\fR () const"
.br
.ti -1c
.BI "void \fBaccept\fR ()"
.br
.ti -1c
.BI "void \fBignore\fR ()"
.br
.in -1c
.SH DESCRIPTION
The QKeyEvent class contains describes a key event.
.PP
Key events occur when a key is pressed or released when a widget has keyboard input focus.
.PP
A key event contains a special accept flag that indicates whether the receiver wants the key event. You should call QKeyEvent::ignore() if the key press or release event is not handled by your widget. A key event is propagated up the parent widget chain until a widget accepts it with QKeyEvent::accept() or an event filter consumes it. Key events for multi media keys are ignored by default. You should call QKeyEvent::accept() if your widget handles those events.
.PP
The QWidget::setEnable() function can be used to enable or disable mouse and keyboard events for a widget.
.PP
The event handlers QWidget::keyPressEvent() and QWidget::keyReleaseEvent() receive key events.
.PP
See also QFocusEvent, QWidget::grabKeyboard(), and Event Classes.
.SH MEMBER FUNCTION DOCUMENTATION
.SH "QKeyEvent::QKeyEvent ( Type type, int key, int ascii, int state, const QString & text = QString::null, bool autorep = FALSE, ushort count = 1 )"
Constructs a key event object.
.PP
The \fItype\fR parameter must be QEvent::KeyPress or QEvent::KeyRelease. If \fIkey\fR is 0 the event is not a result of a known key (e.g. it may be the result of a compose sequence or keyboard macro). \fIascii\fR is the ASCII code of the key that was pressed or released. \fIstate\fR holds the keyboard modifiers. \fItext\fR is the Unicode text that the key generated. If \fIautorep\fR is TRUE, isAutoRepeat() will be TRUE. \fIcount\fR is the number of single keys.
.PP
The accept flag is set to TRUE.
.SH "void QKeyEvent::accept ()"
Sets the accept flag of the key event object.
.PP
Setting the accept parameter indicates that the receiver of the event wants the key event. Unwanted key events are sent to the parent widget.
.PP
The accept flag is set by default.
.PP
See also ignore().
.SH "int QKeyEvent::ascii () const"
Returns the ASCII code of the key that was pressed or released. We recommend using text() instead.
.PP
See also text().
.PP
Example: picture/picture.cpp.
.SH "int QKeyEvent::count () const"
Returns the number of single keys for this event. If text() is not empty, this is simply the length of the string.
.PP
See also QWidget::setKeyCompression().
.SH "void QKeyEvent::ignore ()"
Clears the accept flag parameter of the key event object.
.PP
Clearing the accept parameter indicates that the event receiver does not want the key event. Unwanted key events are sent to the parent widget.
.PP
The accept flag is set by default.
.PP
See also accept().
.SH "bool QKeyEvent::isAccepted () const"
Returns TRUE if the receiver of the event wants to keep the key; otherwise returns FALSE
.SH "bool QKeyEvent::isAutoRepeat () const"
Returns TRUE if this event comes from an auto-repeating key and FALSE if it comes from an initial key press.
.PP
Note that if the event is a multiple-key compressed event that is partly due to auto-repeat, this function could return either TRUE or FALSE indeterminately.
.SH "int QKeyEvent::key () const"
Returns the code of the key that was pressed or released.
.PP
See Qt::Key for the list of keyboard codes. These codes are independent of the underlying window system.
.PP
A value of either 0 or Key_unknown means that the event is not the result of a known key (e.g. it may be the result of a compose sequence or a keyboard macro, or due to key event compression).
.PP
See also QWidget::setKeyCompression().
.PP
Example: fileiconview/qfileiconview.cpp.
.SH "ButtonState QKeyEvent::state () const"
Returns the keyboard modifier flags that existed immediately before the event occurred.
.PP
The returned value is ShiftButton, ControlButton, AltButton and MetaButton OR'ed together.
.PP
See also stateAfter().
.PP
Example: fileiconview/qfileiconview.cpp.
.SH "ButtonState QKeyEvent::stateAfter () const"
Returns the keyboard modifier flags that existed immediately after the event occurred.
.PP
\fBWarning:\fR This function cannot be trusted.
.PP
See also state().
.SH "QString QKeyEvent::text () const"
Returns the Unicode text that this key generated. The text returned migth be empty, which is the case when pressing or releasing modifying keys as Shift, Control, Alt and Meta. In these cases key() will contain a valid value.
.PP
See also QWidget::setKeyCompression().

.SH "SEE ALSO"
.BR http://doc.trolltech.com/qkeyevent.html
.BR http://www.trolltech.com/faq/tech.html
.SH COPYRIGHT
Copyright 1992-2007 Trolltech ASA, http://www.trolltech.com.  See the
license file included in the distribution for a complete license
statement.
.SH AUTHOR
Generated automatically from the source code.
.SH BUGS
If you find a bug in Qt, please report it as described in
.BR http://doc.trolltech.com/bughowto.html .
Good bug reports help us to help you. Thank you.
.P
The definitive TQt documentation is provided in HTML format; it is
located at $QTDIR/doc/html and can be read using TQt Assistant or with
a web browser. This man page is provided as a convenience for those
users who prefer man pages, although this format is not officially
supported by Trolltech. 
.P
If you find errors in this manual page, please report them to
.BR qt-bugs@trolltech.com .
Please include the name of the manual page (tqkeyevent.3qt) and the Qt
version (3.3.8).