summaryrefslogtreecommitdiffstats
path: root/doc/html/qwindowsystem_qws-h.html
diff options
context:
space:
mode:
authorTimothy Pearson <kb9vqf@pearsoncomputing.net>2011-07-10 15:24:15 -0500
committerTimothy Pearson <kb9vqf@pearsoncomputing.net>2011-07-10 15:24:15 -0500
commitbd0f3345a938b35ce6a12f6150373b0955b8dd12 (patch)
tree7a520322212d48ebcb9fbe1087e7fca28b76185c /doc/html/qwindowsystem_qws-h.html
downloadqt3-bd0f3345a938b35ce6a12f6150373b0955b8dd12.tar.gz
qt3-bd0f3345a938b35ce6a12f6150373b0955b8dd12.zip
Add Qt3 development HEAD version
Diffstat (limited to 'doc/html/qwindowsystem_qws-h.html')
-rw-r--r--doc/html/qwindowsystem_qws-h.html621
1 files changed, 621 insertions, 0 deletions
diff --git a/doc/html/qwindowsystem_qws-h.html b/doc/html/qwindowsystem_qws-h.html
new file mode 100644
index 0000000..563f470
--- /dev/null
+++ b/doc/html/qwindowsystem_qws-h.html
@@ -0,0 +1,621 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
+<!-- /home/espenr/tmp/qt-3.3.8-espenr-2499/qt-x11-free-3.3.8/include/qwindowsystem_qws.h:1 -->
+<html>
+<head>
+<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
+<title>qwindowsystem_qws.h Include File</title>
+<style type="text/css"><!--
+fn { margin-left: 1cm; text-indent: -1cm; }
+a:link { color: #004faf; text-decoration: none }
+a:visited { color: #672967; text-decoration: none }
+body { background: #ffffff; color: black; }
+--></style>
+</head>
+<body>
+
+<table border="0" cellpadding="0" cellspacing="0" width="100%">
+<tr bgcolor="#E5E5E5">
+<td valign=center>
+ <a href="index.html">
+<font color="#004faf">Home</font></a>
+ | <a href="classes.html">
+<font color="#004faf">All&nbsp;Classes</font></a>
+ | <a href="mainclasses.html">
+<font color="#004faf">Main&nbsp;Classes</font></a>
+ | <a href="annotated.html">
+<font color="#004faf">Annotated</font></a>
+ | <a href="groups.html">
+<font color="#004faf">Grouped&nbsp;Classes</font></a>
+ | <a href="functions.html">
+<font color="#004faf">Functions</font></a>
+</td>
+<td align="right" valign="center"><img src="logo32.png" align="right" width="64" height="32" border="0"></td></tr></table><h1 align=center>qwindowsystem_qws.h</h1>
+
+<p>This is the verbatim text of the qwindowsystem_qws.h include file. It is provided only for illustration; the copyright remains with Trolltech.
+<hr>
+<pre>
+/****************************************************************************
+** $Id: qt/qwindowsystem_qws.h 3.3.8 edited Jan 11 14:38 $
+**
+** Definition of Qt/FB central server classes
+**
+** Created : 991025
+**
+** Copyright (C) 1992-2007 Trolltech ASA. All rights reserved.
+**
+** This file is part of the kernel module of the Qt GUI Toolkit.
+**
+** This file may be used under the terms of the GNU General Public
+** License versions 2.0 or 3.0 as published by the Free Software
+** Foundation and appearing in the file LICENSE.GPL included in the
+** packaging of this file. Alternatively you may (at your option) use any
+** later version of the GNU General Public License if such license has
+** been publicly approved by Trolltech ASA (or its successors, if any)
+** and the KDE Free Qt Foundation.
+**
+** Please review the following information to ensure GNU General
+** Public Licensing requirements will be met:
+** http://trolltech.com/products/qt/licenses/licensing/opensource/.
+** If you are unsure which license is appropriate for your use, please
+** review the following information:
+** http://trolltech.com/products/qt/licenses/licensing/licensingoverview
+** or contact the sales department at sales@trolltech.com.
+**
+** Licensees holding valid Qt Commercial licenses may use this file in
+** accordance with the Qt Commercial License Agreement provided with
+** the Software.
+**
+** This file is provided "AS IS" with NO WARRANTY OF ANY KIND,
+** INCLUDING THE WARRANTIES OF DESIGN, MERCHANTABILITY AND FITNESS FOR
+** A PARTICULAR PURPOSE. Trolltech reserves all rights not granted
+** herein.
+**
+**********************************************************************/
+
+#ifndef QWINDOWSYSTEM_QWS_H
+#define QWINDOWSYSTEM_QWS_H
+
+#ifndef QT_H
+#include "qwssocket_qws.h"
+#include "qmap.h"
+#include "qdatetime.h"
+#include "qptrlist.h"
+#include "qimage.h"
+
+#include "qwsproperty_qws.h"
+#include "qwscommand_qws.h"
+#include "qwsevent_qws.h"
+#endif // QT_H
+
+#include "qkbd_qws.h"
+
+struct SWCursorData;
+class QWSCursor;
+class QWSClient;
+class QWSRegionManager;
+class QGfx;
+class QWSServerData;
+
+class QWSInternalWindowInfo
+{
+
+public:
+
+ int winid;
+ unsigned int clientid;
+ QString name; // Corresponds to QObject name of top-level widget
+
+};
+
+struct QWSWindowData;
+
+class QWSScreenSaver
+{
+public:
+ virtual ~QWSScreenSaver();
+ virtual void restore()=0;
+ virtual bool save(int level)=0;
+};
+
+class QWSWindow
+{
+ friend class QWSServer;
+public:
+ QWSWindow(int i, QWSClient* client);
+ ~QWSWindow();
+
+ int winId() const { return id; }
+ const QString &amp;name() const { return rgnName; }
+ const QString &amp;caption() const { return rgnCaption; }
+ QWSClient* client() const { return c; }
+ QRegion requested() const { return requested_region; }
+ QRegion allocation() const { return allocated_region; }
+ bool isVisible() const { return !requested_region.isEmpty(); }
+ bool isPartiallyObscured() const { return requested_region!=allocated_region; }
+ bool isFullyObscured() const { return allocated_region.isEmpty(); }
+
+ void raise();
+ void lower();
+ void show();
+ void hide();
+ void setActiveWindow();
+
+private:
+ bool hidden() const { return requested_region.isEmpty(); }
+ bool forClient(const QWSClient* cl) const { return cl==c; }
+
+ void setName( const QString &amp;n );
+ void setCaption( const QString &amp;c );
+
+ void addAllocation( QWSRegionManager *, const QRegion &amp; );
+ void removeAllocation( QWSRegionManager *, const QRegion &amp; );
+
+ int allocationIndex() const { return alloc_region_idx; }
+ void setAllocationIndex( int i ) { alloc_region_idx = i; modified = TRUE; }
+ void updateAllocation();
+
+ void setNeedAck( bool n ) { needAck = n; }
+
+ void focus(bool get);
+ int focusPriority() const { return last_focus_time; }
+ void operation( QWSWindowOperationEvent::Operation o );
+ void shuttingDown() { last_focus_time=0; }
+
+private:
+ int id;
+ QString rgnName;
+ QString rgnCaption;
+ int alloc_region_idx;
+ bool modified;
+ bool needAck;
+ bool onTop;
+ QWSClient* c;
+ QRegion requested_region;
+ QRegion allocated_region;
+ QRegion exposed;
+ int last_focus_time;
+ QWSWindowData *d;
+};
+
+#ifndef QT_NO_SOUND
+class QWSSoundServer;
+#ifdef QT_USE_OLD_QWS_SOUND
+class QWSSoundServerData;
+
+class QWSSoundServer : public QObject {
+ Q_OBJECT
+public:
+ QWSSoundServer(QObject* parent);
+ ~QWSSoundServer();
+ void playFile(const QString&amp; filename);
+private slots:
+ void feedDevice(int fd);
+private:
+ QWSSoundServerData* d;
+};
+#endif
+#endif
+
+
+
+
+
+
+
+/*********************************************************************
+ *
+ * Class: QWSServer
+ *
+ *********************************************************************/
+
+class QWSMouseHandler;
+struct QWSCommandStruct;
+
+#ifndef QT_NO_QWS_MULTIPROCESS
+class QWSServer : public QWSServerSocket
+#else
+class QWSServer : public QObject
+#endif
+{
+ friend class QCopChannel;
+ friend class QWSMouseHandler;
+ friend class QWSWindow;
+ friend class QWSDisplay;
+ friend class QWSInputMethod;
+ Q_OBJECT
+
+public:
+ QWSServer( int flags = 0, QObject *parent=0, const char *name=0 );
+ ~QWSServer();
+ enum ServerFlags { DisableKeyboard = 0x01,
+ DisableMouse = 0x02 };
+
+
+ enum GUIMode { NoGui = FALSE, NormalGUI = TRUE, Server };
+
+ static void sendKeyEvent(int unicode, int keycode, int modifiers, bool isPress,
+ bool autoRepeat);
+ static void processKeyEvent(int unicode, int keycode, int modifiers, bool isPress,
+ bool autoRepeat);
+
+#ifndef QT_NO_QWS_IM
+ enum IMState { IMStart, IMCompose, IMEnd };
+
+ void sendIMEvent( IMState state, const QString&amp; txt, int cpos, int selLen );
+#endif
+
+#ifndef QT_NO_QWS_KEYBOARD
+ typedef struct KeyMap {
+ int key_code;
+ ushort unicode;
+ ushort shift_unicode;
+ ushort ctrl_unicode;
+ };
+
+ typedef struct KeyOverride {
+ ushort scan_code;
+ KeyMap map;
+ };
+
+ static const KeyMap *keyMap();
+
+ static void setOverrideKeys( const KeyOverride* );
+
+ class KeyboardFilter
+ {
+ public:
+ virtual bool filter(int unicode, int keycode, int modifiers,
+ bool isPress, bool autoRepeat)=0;
+ };
+
+ static void setKeyboardFilter( KeyboardFilter *f );
+#endif
+#ifndef QT_NO_QWS_IM
+ static void setCurrentInputMethod( QWSInputMethod *im );
+ static void resetInputMethod();
+ static void setMicroFocus( int x, int y );
+#endif
+
+ static void setDefaultMouse( const char * );
+ static void setDefaultKeyboard( const char * );
+ static void setMaxWindowRect(const QRect&amp;);
+ static void sendMouseEvent(const QPoint&amp; pos, int state);
+
+ static void setDesktopBackground( const QImage &amp;img );
+ static void setDesktopBackground( const QColor &amp; );
+ static QWSMouseHandler *mouseHandler();
+ static void setMouseHandler(QWSMouseHandler*);
+#ifndef QT_NO_QWS_KEYBOARD
+ static QWSKeyboardHandler* keyboardHandler();
+ static void setKeyboardHandler(QWSKeyboardHandler* kh);
+#endif
+ QWSWindow *windowAt( const QPoint&amp; pos );
+
+ // For debugging only at this time
+ const QPtrList&lt;QWSWindow&gt; &amp;clientWindows() { return windows; }
+
+ void openMouse();
+ void closeMouse();
+#ifndef QT_NO_QWS_KEYBOARD
+ void openKeyboard();
+ void closeKeyboard();
+#endif
+
+ static void setScreenSaver(QWSScreenSaver*);
+ static void setScreenSaverIntervals(int* ms);
+ static void setScreenSaverInterval(int);
+ static bool screenSaverActive();
+ static void screenSaverActivate(bool);
+
+ // the following are internal.
+ void refresh();
+ void refresh(QRegion &amp;);
+
+ void enablePainting(bool);
+ static void processEventQueue();
+ static QPtrList&lt;QWSInternalWindowInfo&gt; * windowList();
+
+ void sendPropertyNotifyEvent( int property, int state );
+#ifndef QT_NO_QWS_PROPERTIES
+ QWSPropertyManager *manager() {
+ return &amp;propertyManager;
+ }
+#endif
+
+ static QPoint mousePosition;
+
+ static void startup( int flags );
+ static void closedown();
+
+ static void beginDisplayReconfigure();
+ static void endDisplayReconfigure();
+
+#ifndef QT_NO_QWS_CURSOR
+ static void setCursorVisible( bool );
+ static bool isCursorVisible();
+#endif
+
+ enum WindowEvent { Create=0x0001, Destroy=0x0002, Hide=0x0004, Show=0x0008,
+ Raise=0x0010, Lower=0x0020, Geometry=0x0040, Active = 0x0080,
+ Name=0x0100 };
+
+signals:
+ void windowEvent( QWSWindow *w, QWSServer::WindowEvent e );
+
+#ifndef QT_NO_COP
+ void newChannel( const QString&amp; channel);
+ void removedChannel(const QString&amp; channel);
+
+#endif
+private:
+#ifndef QT_NO_COP
+ static void sendQCopEvent( QWSClient *c, const QCString &amp;ch,
+ const QCString &amp;msg, const QByteArray &amp;data,
+ bool response = FALSE );
+#endif
+ void move_region( const QWSRegionMoveCommand * );
+ void set_altitude( const QWSChangeAltitudeCommand * );
+ void request_focus( const QWSRequestFocusCommand * );
+ void request_region( int, QRegion );
+ void destroy_region( const QWSRegionDestroyCommand * );
+ void name_region( const QWSRegionNameCommand * );
+ void set_identity( const QWSIdentifyCommand * );
+#ifndef QT_NO_QWS_IM
+ void set_micro_focus( const QWSSetMicroFocusCommand * );
+ void reset_im( const QWSResetIMCommand * );
+ static void sendKeyEventUnfiltered(int unicode, int keycode,
+ int modifiers, bool isPress,
+ bool autoRepeat);
+
+#endif
+ static void emergency_cleanup();
+
+ static QColor *bgColor;
+ static QImage *bgImage;
+
+ void sendMaxWindowRectEvents();
+#ifndef QT_NO_QWS_MULTIPROCESS
+ void newConnection( int socket );
+#endif
+ void invokeIdentify( const QWSIdentifyCommand *cmd, QWSClient *client );
+ void invokeCreate( QWSCreateCommand *cmd, QWSClient *client );
+ void invokeRegionName( const QWSRegionNameCommand *cmd, QWSClient *client );
+ void invokeRegion( QWSRegionCommand *cmd, QWSClient *client );
+ void invokeRegionMove( const QWSRegionMoveCommand *cmd, QWSClient *client );
+ void invokeRegionDestroy( const QWSRegionDestroyCommand *cmd, QWSClient *client );
+ void invokeSetAltitude( const QWSChangeAltitudeCommand *cmd, QWSClient *client );
+#ifndef QT_NO_QWS_PROPERTIES
+ void invokeAddProperty( QWSAddPropertyCommand *cmd );
+ void invokeSetProperty( QWSSetPropertyCommand *cmd );
+ void invokeRemoveProperty( QWSRemovePropertyCommand *cmd );
+ void invokeGetProperty( QWSGetPropertyCommand *cmd, QWSClient *client );
+#endif //QT_NO_QWS_PROPERTIES
+ void invokeSetSelectionOwner( QWSSetSelectionOwnerCommand *cmd );
+ void invokeConvertSelection( QWSConvertSelectionCommand *cmd );
+ void invokeSetFocus( const QWSRequestFocusCommand *cmd, QWSClient *client );
+
+ void initIO();
+ void setFocus( QWSWindow*, bool gain );
+#ifndef QT_NO_QWS_CURSOR
+ void invokeDefineCursor( QWSDefineCursorCommand *cmd, QWSClient *client );
+ void invokeSelectCursor( QWSSelectCursorCommand *cmd, QWSClient *client );
+#endif
+ void invokeGrabMouse( QWSGrabMouseCommand *cmd, QWSClient *client );
+ void invokeGrabKeyboard( QWSGrabKeyboardCommand *cmd, QWSClient *client );
+#ifndef QT_NO_SOUND
+ void invokePlaySound( QWSPlaySoundCommand *cmd, QWSClient *client );
+#endif
+#ifndef QT_NO_COP
+ void invokeRegisterChannel( QWSQCopRegisterChannelCommand *cmd,
+ QWSClient *client );
+ void invokeQCopSend( QWSQCopSendCommand *cmd, QWSClient *client );
+#endif
+ void invokeRepaintRegion( QWSRepaintRegionCommand *cmd,
+ QWSClient *client );
+#ifndef QT_NO_QWS_IM
+ void invokeSetMicroFocus( const QWSSetMicroFocusCommand *cmd,
+ QWSClient *client );
+ void invokeResetIM( const QWSResetIMCommand *cmd,
+ QWSClient *client );
+#endif
+
+ QWSMouseHandler* newMouseHandler(const QString&amp; spec);
+ void openDisplay();
+ void closeDisplay();
+
+ void showCursor();
+ void hideCursor();
+ void initializeCursor();
+ void paintServerRegion();
+ void paintBackground( const QRegion &amp; );
+ void clearRegion( const QRegion &amp;r, const QColor &amp;c );
+ void refreshBackground();
+ void resetGfx();
+
+private slots:
+#ifndef QT_NO_QWS_MULTIPROCESS
+ void clientClosed();
+ void doClient();
+ void deleteWindowsLater();
+#endif
+
+ void screenSaverWake();
+ void screenSaverSleep();
+ void screenSaverTimeout();
+
+private:
+ void disconnectClient( QWSClient * );
+ void screenSave(int level);
+ void doClient( QWSClient * );
+ typedef QMapIterator&lt;int,QWSClient*&gt; ClientIterator;
+ typedef QMap&lt;int,QWSClient*&gt; ClientMap;
+ void releaseMouse(QWSWindow* w);
+ void releaseKeyboard(QWSWindow* w);
+ void updateClientCursorPos();
+
+ uchar* sharedram;
+ int ramlen;
+
+ QGfx *gfx;
+
+ ClientMap client;
+#ifndef QT_NO_QWS_PROPERTIES
+ QWSPropertyManager propertyManager;
+#endif
+ struct SelectionOwner {
+ int windowid;
+ struct Time {
+ void set( int h, int m, int s, int s2 ) {
+ hour = h; minute = m; sec = s; ms = s2;
+ }
+ int hour, minute, sec, ms;
+ } time;
+ } selectionOwner;
+ QTime timer;
+ QWSServerData* d;
+ int* screensaverinterval;
+
+ QWSWindow *focusw;
+ QWSWindow *mouseGrabber;
+ bool mouseGrabbing;
+ int swidth, sheight, sdepth;
+#ifndef QT_NO_QWS_CURSOR
+ bool haveviscurs;
+ QWSCursor *cursor; // cursor currently shown
+ QWSCursor *nextCursor; // cursor to show once grabbing is off
+#endif
+ QRegion screenRegion; // the entire display region
+ QRegion serverRegion;
+ QRegion dirtyBackground;
+ bool disablePainting;
+ QPtrList&lt;QWSMouseHandler&gt; mousehandlers;
+#ifndef QT_NO_QWS_KEYBOARD
+ QPtrList&lt;QWSKeyboardHandler&gt; keyboardhandlers;
+#endif
+
+ QPtrList&lt;QWSCommandStruct&gt; commandQueue;
+ QWSRegionManager *rgnMan;
+
+ // Window management
+ QPtrList&lt;QWSWindow&gt; windows; // first=topmost
+ QWSWindow* newWindow(int id, QWSClient* client);
+ QWSWindow* findWindow(int windowid, QWSClient* client);
+ void moveWindowRegion(QWSWindow*, int dx, int dy );
+ QRegion setWindowRegion(QWSWindow*, QRegion r );
+ void raiseWindow( QWSWindow *, int = 0);
+ void lowerWindow( QWSWindow *, int = -1);
+ void exposeRegion( QRegion , int index = 0 );
+ void notifyModified( QWSWindow *active = 0 );
+ void syncRegions( QWSWindow *active = 0 );
+
+ void setCursor(QWSCursor *curs);
+
+ // multimedia
+#ifndef QT_NO_SOUND
+ QWSSoundServer *soundserver;
+#endif
+#ifndef QT_NO_COP
+ QMap&lt;QString, QPtrList&lt;QWSClient&gt; &gt; channels;
+#endif
+#ifndef QT_NO_QWS_IM
+ bool microF;
+ int microX;
+ int microY;
+#endif
+};
+
+extern QWSServer *qwsServer; //there can be only one
+
+
+#ifndef QT_NO_QWS_IM
+ class QWSInputMethod
+ {
+ public:
+ QWSInputMethod();
+ virtual ~QWSInputMethod();
+ virtual bool filter(int unicode, int keycode, int modifiers,
+ bool isPress, bool autoRepeat)=0;
+ virtual void reset();
+ virtual void setMicroFocus( int x, int y );
+ virtual void setFont( const QFont&amp; );
+ protected:
+ void sendIMEvent( QWSServer::IMState, const QString&amp; txt, int cpos, int selLen = 0 );
+ //void sendKeyEvent( int unicode, int keycode, int modifiers,
+ // bool isPress, bool autoRepeat);
+ };
+
+inline void QWSInputMethod::sendIMEvent( QWSServer::IMState state, const QString &amp;txt, int cpos, int selLen )
+{
+ qwsServer-&gt;sendIMEvent( state, txt, cpos, selLen );
+
+}
+
+
+#endif
+
+
+
+
+/*********************************************************************
+ *
+ * Class: QWSClient
+ *
+ *********************************************************************/
+
+struct QWSMouseEvent;
+
+typedef QMap&lt;int, QWSCursor*&gt; QWSCursorMap;
+
+class QWSClient : public QObject
+{
+ Q_OBJECT
+public:
+ QWSClient( QObject* parent, int socket, int id );
+ ~QWSClient();
+
+ int socket() const;
+
+ void setIdentity(const QString&amp;);
+ QString identity() const { return id; }
+
+ void sendEvent( QWSEvent* event );
+ void sendConnectedEvent( const char *display_spec );
+ void sendMaxWindowRectEvent();
+ void sendRegionModifyEvent( int winid, QRegion exposed, bool ack );
+ void sendFocusEvent( int winid, bool get );
+ void sendPropertyNotifyEvent( int property, int state );
+ void sendPropertyReplyEvent( int property, int len, char *data );
+ void sendSelectionClearEvent( int windowid );
+ void sendSelectionRequestEvent( QWSConvertSelectionCommand *cmd, int windowid );
+ QWSCommand* readMoreCommand();
+
+ int clientId() const { return cid; }
+
+ QWSCursorMap cursors; // cursors defined by this client
+signals:
+ void connectionClosed();
+ void readyRead();
+private slots:
+ void closeHandler();
+ void errorHandler( int );
+private:
+ int s; // XXX csocket-&gt;d-&gt;socket-&gt;socket() is this value
+#ifndef QT_NO_QWS_MULTIPROCESS
+ QWSSocket *csocket;
+#endif
+ QWSCommand* command;
+ uint isClosed : 1;
+ QString id;
+ int cid;
+};
+
+#endif // QWINDOWSYSTEM_QWS_H
+</pre>
+<!-- eof -->
+<p><address><hr><div align=center>
+<table width=100% cellspacing=0 border=0><tr>
+<td>Copyright &copy; 2007
+<a href="troll.html">Trolltech</a><td align=center><a href="trademarks.html">Trademarks</a>
+<td align=right><div align=right>Qt 3.3.8</div>
+</table></div></address></body>
+</html>