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 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274
|
'\" t
.TH QWSServer 3qt "18 March 2002" "Trolltech AS" \" -*- nroff -*-
.\" Copyright 1992-2001 Trolltech AS. All rights reserved. See the
.\" license file included in the distribution for a complete license
.\" statement.
.\"
.ad l
.nh
.SH NAME
QWSServer \- Server-specific functionality in Qt/Embedded
.SH SYNOPSIS
\fC#include <qwindowsystem_qws.h>\fR
.PP
.SS "Public Members"
.in +1c
.ti -1c
.BI "\fBQWSServer\fR ( int flags = 0, QObject * parent = 0, const char * name = 0 )"
.br
.ti -1c
.BI "\fB~QWSServer\fR ()"
.br
.ti -1c
.BI "enum \fBServerFlags\fR { DisableKeyboard = 0x01, DisableMouse = 0x02 }"
.br
.ti -1c
.BI "enum \fBGUIMode\fR { NoGui = FALSE, NormalGUI = TRUE, Server }"
.br
.ti -1c
.BI "class \fBKeyMap\fR { }"
.br
.ti -1c
.BI "class \fBKeyboardFilter\fR { }"
.br
.ti -1c
.BI "QWSWindow * \fBwindowAt\fR ( const QPoint & pos )"
.br
.ti -1c
.BI "const QPtrList<QWSWindow> & \fBclientWindows\fR ()"
.br
.ti -1c
.BI "void \fBopenMouse\fR ()"
.br
.ti -1c
.BI "void \fBcloseMouse\fR ()"
.br
.ti -1c
.BI "void \fBopenKeyboard\fR ()"
.br
.ti -1c
.BI "void \fBcloseKeyboard\fR ()"
.br
.ti -1c
.BI "void \fBrefresh\fR ()"
.br
.ti -1c
.BI "void \fBrefresh\fR ( QRegion & r )"
.br
.ti -1c
.BI "void \fBenablePainting\fR ( bool e )"
.br
.ti -1c
.BI "QWSPropertyManager * \fBmanager\fR ()"
.br
.ti -1c
.BI "enum \fBWindowEvent\fR { Create = 0x01, Destroy = 0x02, Hide = 0x04, Show = 0x08, Raise = 0x10, Lower = 0x20, Geometry = 0x40 }"
.br
.in -1c
.SS "Signals"
.in +1c
.ti -1c
.BI "void \fBwindowEvent\fR ( QWSWindow * w, QWSServer::WindowEvent e )"
.br
.ti -1c
.BI "void \fBnewChannel\fR ( const QString & )"
.br
.in -1c
.SS "Static Public Members"
.in +1c
.ti -1c
.BI "void \fBsendKeyEvent\fR ( int unicode, int keycode, int modifiers, bool isPress, bool autoRepeat )"
.br
.ti -1c
.BI "const KeyMap * \fBkeyMap\fR ()"
.br
.ti -1c
.BI "void \fBsetKeyboardFilter\fR ( KeyboardFilter * f )"
.br
.ti -1c
.BI "void \fBsetDefaultMouse\fR ( const char * m )"
.br
.ti -1c
.BI "void \fBsetDefaultKeyboard\fR ( const char * k )"
.br
.ti -1c
.BI "void \fBsetMaxWindowRect\fR ( const QRect & r )"
.br
.ti -1c
.BI "void \fBsetDesktopBackground\fR ( const QImage & img )"
.br
.ti -1c
.BI "void \fBsetDesktopBackground\fR ( const QColor & c )"
.br
.ti -1c
.BI "QWSMouseHandler * \fBmouseHandler\fR ()"
.br
.ti -1c
.BI "QWSKeyboardHandler * \fBkeyboardHandler\fR ()"
.br
.ti -1c
.BI "void \fBsetKeyboardHandler\fR ( QWSKeyboardHandler * kh )"
.br
.ti -1c
.BI "void \fBsetScreenSaver\fR ( QWSScreenSaver * ss )"
.br
.ti -1c
.BI "void \fBsetScreenSaverIntervals\fR ( int * ms )"
.br
.ti -1c
.BI "void \fBsetScreenSaverInterval\fR ( int ms )"
.br
.ti -1c
.BI "bool \fBscreenSaverActive\fR ()"
.br
.ti -1c
.BI "void \fBscreenSaverActivate\fR ( bool activate )"
.br
.in -1c
.SH DESCRIPTION
The QWSServer class provides server-specific functionality in Qt/Embedded.
.PP
When you run a Qt/Embedded application, it either runs as a server or connects to an existing server. If it runs as a server, some additional operations are provided via the QWSServer class.
.PP
This class is instantiated by QApplication for Qt/Embedded server processes. You should never construct this class yourself.
.PP
A pointer to the QWSServer instance can be obtained via the global qwsServer variable.
.PP
The mouse and keyboard devices can be opened with openMouse() and openKeyboard(). (Close them with closeMouse() and closeKeyboard().)
.PP
The display is refreshed with refresh(), and painting can be enabled or disabled with enablePainting().
.PP
Obtain the list of client windows with clientWindows() and find out which window is at a particular point with windowAt().
.PP
Many static functions are provided, for example, setKeyboardFilter(), setKeyboardHandler(), setDefaultKeyboard() and setDefaultMouse().
.PP
The size of the window rectangle can be set with setMaxWindowRect(), and the desktop's background can be set with setDesktopBackground().
.PP
The screen saver is controlled with setScreenSaverInterval() and screenSaverActivate().
.PP
See also Qt/Embedded.
.SS "Member Type Documentation"
.SH "QWSServer::GUIMode"
This determines what sort of QWS server to create:
.TP
\fCQWSServer::NoGui\fR - This is used for non-graphical Qt applications.
.TP
\fCQWSServer::NormalGUI\fR - A normal Qt/Embedded application (not the server).
.TP
\fCQWSServer::Server\fR - A Qt/Embedded server (e.g. if -qws has been specified on the command line.
.SH "QWSServer::ServerFlags"
This enum is used to pass various options to the window system server. Currently defined are:
.TP
\fCQWSServer::DisableKeyboard\fR - Ignore all keyboard input.
.TP
\fCQWSServer::DisableMouse\fR - Ignore all mouse input.
.SH "QWSServer::WindowEvent"
This specifies what sort of event has occurred to a top level window:
.TP
\fCQWSServer::Create\fR - A new window has been created (QWidget constructor).
.TP
\fCQWSServer::Destroy\fR - The window has been closed and deleted (QWidget destructor).
.TP
\fCQWSServer::Hide\fR - The window has been hidden with QWidget::hide().
.TP
\fCQWSServer::Show\fR - The window has been shown with QWidget::show() or similar.
.TP
\fCQWSServer::Raise\fR - The window has been raised to the top of the desktop.
.TP
\fCQWSServer::Lower\fR - The window has been lowered.
.TP
\fCQWSServer::Geometry\fR - The window has changed size or position.
.SH MEMBER FUNCTION DOCUMENTATION
.SH "QWSServer::QWSServer ( int flags = 0, QObject * parent = 0, const char * name = 0 )"
Construct a QWSServer class with parent \fIparent\fR, called \fIname\fR and flags \fIflags\fR.
.PP
\fBWarning:\fR This class is instantiated by QApplication for Qt/Embedded server processes. You should never construct this class yourself.
.SH "QWSServer::~QWSServer ()"
Destruct QWSServer
.SH "const QPtrList<QWSWindow> & QWSServer::clientWindows ()"
Returns the list of top-level windows. This list will change as applications add and remove wigdets so it should not be stored for future use. The windows are sorted in stacking order from top-most to bottom-most.
.SH "void QWSServer::closeKeyboard ()"
Closes keyboard device(s).
.SH "void QWSServer::closeMouse ()"
Closes the pointer device(s).
.SH "void QWSServer::enablePainting ( bool e )"
If \fIe\fR is TRUE, painting on the display is enabled; if \fIe\fR is FALSE, painting is disabled.
.SH "const KeyMap * QWSServer::keyMap ()\fC [static]\fR"
Returns the keyboard mapping table used to convert keyboard scancodes to Qt keycodes and unicode values. It's used by the keyboard driver in qkeyboard_qws.cpp.
.SH "QWSKeyboardHandler * QWSServer::keyboardHandler ()\fC [static]\fR"
Returns the primary keyboard handler.
.SH "QWSPropertyManager * QWSServer::manager ()"
Returns the QWSPropertyManager, which is used for implementing X11-style window properties.
.SH "QWSMouseHandler * QWSServer::mouseHandler ()\fC [static]\fR"
Returns the primary mouse handler.
.SH "void QWSServer::openKeyboard ()"
Opens the keyboard device(s).
.SH "void QWSServer::openMouse ()"
Opens the mouse device(s).
.SH "void QWSServer::refresh ()"
Refreshes the entire display.
.SH "void QWSServer::refresh ( QRegion & r )"
This is an overloaded member function, provided for convenience. It behaves essentially like the above function.
.PP
Refreshes the region \fIr\fR.
.SH "void QWSServer::screenSaverActivate ( bool activate )\fC [static]\fR"
If \fIactivate\fR is TRUE the screensaver is activated immediately; if \fIactivate\fR is FALSE the screensaver is deactivated.
.SH "bool QWSServer::screenSaverActive ()\fC [static]\fR"
Returns TRUE if the screensaver is active (i.e. the screen is blanked); otherwise returns FALSE.
.SH "void QWSServer::sendKeyEvent ( int unicode, int keycode, int modifiers, bool isPress, bool autoRepeat )\fC [static]\fR"
Send a key event. You can use this to send key events generated by" virtual keyboards". \fIunicode\fR is the unicode value of the key to send, \fIkeycode\fR the Qt keycode (e.g. Key_Left), \fImodifiers\fR indicates whether, Shift/Alt/Ctrl keys are pressed, \fIisPress\fR is TRUE if this is a key down event and FALSE if it's a key up event, and \fIautoRepeat\fR is TRUE if this is an autorepeat event (i.e. the user has held the key down and this is the second or subsequent key event being sent).
.SH "void QWSServer::setDefaultKeyboard ( const char * k )\fC [static]\fR"
Set the keyboard driver to \fIk\fR, e.g. if $QWS_KEYBOARD is not defined. The default is platform-dependant.
.SH "void QWSServer::setDefaultMouse ( const char * m )\fC [static]\fR"
Set the mouse driver \fIm\fR to use if $QWS_MOUSE_PROTO is not defined. The default is platform-dependent.
.SH "void QWSServer::setDesktopBackground ( const QImage & img )\fC [static]\fR"
Sets the image \fIimg\fR to be used as the background in the absence of obscuring windows.
.SH "void QWSServer::setDesktopBackground ( const QColor & c )\fC [static]\fR"
This is an overloaded member function, provided for convenience. It behaves essentially like the above function.
.PP
Sets the color \fIc\fR to be used as the background in the absence of obscuring windows.
.SH "void QWSServer::setKeyboardFilter ( KeyboardFilter * f )\fC [static]\fR"
Sets a filter \fIf\fR to be invoked for all key events from physical keyboard drivers (events sent via processKeyEvent()). The filter is not invoked for keys generated by virtual keyboard drivers (events sent via sendKeyEvent()).
.SH "void QWSServer::setKeyboardHandler ( QWSKeyboardHandler * kh )\fC [static]\fR"
Sets the primary keyboard handler to \fIkh\fR.
.SH "void QWSServer::setMaxWindowRect ( const QRect & r )\fC [static]\fR"
Sets the area of the screen which Qt/Embedded applications will consider to be the maximum area to use for windows to \fIr\fR.
.PP
See also QWidget::showMaximized().
.SH "void QWSServer::setScreenSaver ( QWSScreenSaver * ss )\fC [static]\fR"
Replaces the existing screensave with the screensaver specified in \fIss\fR.
.SH "void QWSServer::setScreenSaverInterval ( int ms )\fC [static]\fR"
Sets the timeout for the screensaver to \fIms\fR milliseconds. A setting of zero turns off the screensaver.
.SH "void QWSServer::setScreenSaverIntervals ( int * ms )\fC [static]\fR"
Sets an array of timeouts for the screensaver to a list of \fIms\fR milliseconds. A setting of zero turns off the screensaver. The array must be 0-terminated.
.SH "QWSWindow * QWSServer::windowAt ( const QPoint & pos )"
Returns the window containing the point \fIpos\fR or 0 if there is no window under the point.
.SH "void QWSServer::windowEvent ( QWSWindow * w, QWSServer::WindowEvent e )\fC [signal]\fR"
This signal is emitted whenever something happens to a top level
window (e.g. it's created or destroyed). \fIw\fR is the window
to which the event of type \fIe\fR has occurred.
.SH "SEE ALSO"
.BR http://doc.trolltech.com/qwsserver.html
.BR http://www.trolltech.com/faq/tech.html
.SH COPYRIGHT
Copyright 1992-2001 Trolltech AS, 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 Qt documentation is provided in HTML format; it is
located at $QTDIR/doc/html and can be read using Qt 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 (qwsserver.3qt) and the Qt
version (3.0.3).
|