qwsdisplay_qws.h
上传用户:detong
上传日期:2022-06-22
资源大小:20675k
文件大小:6k
源码类别:

系统编程

开发平台:

Unix_Linux

  1. /****************************************************************************
  2. **
  3. ** Copyright (C) 2008 Nokia Corporation and/or its subsidiary(-ies).
  4. ** Contact: Qt Software Information (qt-info@nokia.com)
  5. **
  6. ** This file is part of the QtGui module of the Qt Toolkit.
  7. **
  8. ** Commercial Usage
  9. ** Licensees holding valid Qt Commercial licenses may use this file in
  10. ** accordance with the Qt Commercial License Agreement provided with the
  11. ** Software or, alternatively, in accordance with the terms contained in
  12. ** a written agreement between you and Nokia.
  13. **
  14. **
  15. ** GNU General Public License Usage
  16. ** Alternatively, this file may be used under the terms of the GNU
  17. ** General Public License versions 2.0 or 3.0 as published by the Free
  18. ** Software Foundation and appearing in the file LICENSE.GPL included in
  19. ** the packaging of this file.  Please review the following information
  20. ** to ensure GNU General Public Licensing requirements will be met:
  21. ** http://www.fsf.org/licensing/licenses/info/GPLv2.html and
  22. ** http://www.gnu.org/copyleft/gpl.html.
  23. **
  24. ** Qt for Windows(R) Licensees
  25. ** As a special exception, Nokia, as the sole copyright holder for Qt
  26. ** Designer, grants users of the Qt/Eclipse Integration plug-in the
  27. ** right for the Qt/Eclipse Integration to link to functionality
  28. ** provided by Qt Designer and its related libraries.
  29. **
  30. ** If you are unsure which license is appropriate for your use, please
  31. ** contact the sales department at qt-sales@nokia.com.
  32. **
  33. ****************************************************************************/
  34. #ifndef QWSDISPLAY_QWS_H
  35. #define QWSDISPLAY_QWS_H
  36. #include <QtCore/qobject.h>
  37. #include <QtCore/qbytearray.h>
  38. #include <QtGui/qregion.h>
  39. #include <QtGui/qimage.h>
  40. #include <QtGui/qwindowdefs.h>
  41. #include <QtCore/qlist.h>
  42. QT_BEGIN_HEADER
  43. QT_BEGIN_NAMESPACE
  44. QT_MODULE(Gui)
  45. class QWSEvent;
  46. class QWSMouseEvent;
  47. class QWSQCopMessageEvent;
  48. class QVariant;
  49. class QLock;
  50. class QWSWindowInfo
  51. {
  52. public:
  53.     int winid;
  54.     unsigned int clientid;
  55.     QString name;
  56. };
  57. #define QT_QWS_PROPERTY_CONVERTSELECTION 999
  58. #define QT_QWS_PROPERTY_WINDOWNAME 998
  59. #define QT_QWS_PROPERTY_MARKEDTEXT 997
  60. class QWSDisplay;
  61. extern QWSDisplay *qt_fbdpy;
  62. class Q_GUI_EXPORT QWSDisplay
  63. {
  64. public:
  65.     QWSDisplay();
  66.     ~QWSDisplay();
  67.     static QWSDisplay* instance() { return qt_fbdpy; }
  68.     bool eventPending() const;
  69.     QWSEvent *getEvent();
  70. //    QWSRegionManager *regionManager() const;
  71.     uchar* frameBuffer() const;
  72.     int width() const;
  73.     int height() const;
  74.     int depth() const;
  75.     int pixmapDepth() const;
  76.     bool supportsDepth(int) const;
  77.     uchar *sharedRam() const;
  78.     int sharedRamSize() const;
  79. #ifndef QT_NO_QWS_PROPERTIES
  80.     void addProperty(int winId, int property);
  81.     void setProperty(int winId, int property, int mode, const QByteArray &data);
  82.     void setProperty(int winId, int property, int mode, const char * data);
  83.     void removeProperty(int winId, int property);
  84.     bool getProperty(int winId, int property, char *&data, int &len);
  85. #endif // QT_NO_QWS_PROPERTIES
  86.     QList<QWSWindowInfo> windowList();
  87.     int windowAt(const QPoint &);
  88.     void setIdentity(const QString &appName);
  89.     void nameRegion(int winId, const QString& n, const QString &c);
  90.     void requestRegion(int winId, const QString &surfacekey,
  91.                        const QByteArray &surfaceData,
  92.                        const QRegion &region);
  93.     void repaintRegion(int winId, int windowFlags, bool opaque, QRegion);
  94.     void moveRegion(int winId, int dx, int dy);
  95.     void destroyRegion(int winId);
  96.     void requestFocus(int winId, bool get);
  97.     void setAltitude(int winId, int altitude, bool fixed = false);
  98.     void setOpacity(int winId, int opacity);
  99.     int takeId();
  100.     void setSelectionOwner(int winId, const QTime &time);
  101.     void convertSelection(int winId, int selectionProperty, const QString &mimeTypes);
  102.     void defineCursor(int id, const QBitmap &curs, const QBitmap &mask,
  103.                         int hotX, int hotY);
  104.     void destroyCursor(int id);
  105.     void selectCursor(QWidget *w, unsigned int id);
  106.     void setCursorPosition(int x, int y);
  107.     void grabMouse(QWidget *w, bool grab);
  108.     void grabKeyboard(QWidget *w, bool grab);
  109.     void playSoundFile(const QString&);
  110.     void registerChannel(const QString &channel);
  111.     void sendMessage(const QString &channel, const QString &msg,
  112.                        const QByteArray &data);
  113.     void flushCommands();
  114. #ifndef QT_NO_QWS_INPUTMETHODS
  115.     void sendIMUpdate(int type, int winId, int widgetid);
  116.     void resetIM();
  117.     void sendIMResponse(int winId, int property, const QVariant &result);
  118.     void sendIMMouseEvent(int index, bool isPress);
  119. #endif
  120.     QWSQCopMessageEvent* waitForQCopResponse();
  121.     void sendFontCommand(int type, const QByteArray &fontName);
  122.     void setWindowCaption(QWidget *w, const QString &);
  123.     // Lock display for access only by this process
  124.     static bool initLock(const QString &filename, bool create = false);
  125.     static bool grabbed();
  126.     static void grab();
  127.     static void grab(bool write);
  128.     static void ungrab();
  129.     static void setTransformation(int transformation, int screenNo = -1);
  130.     static void setRawMouseEventFilter(void (*filter)(QWSMouseEvent *));
  131. private:
  132.     friend int qt_fork_qapplication();
  133.     friend void qt_app_reinit( const QString& newAppName );
  134.     friend class QApplication;
  135.     friend class QCopChannel;
  136.     friend class QWSEmbedWidget;
  137.     friend class QWSEmbedWidgetPrivate;
  138.     class Data;
  139.     friend class Data;
  140.     Data *d;
  141.     friend class QWSMemorySurface;
  142.     friend class QWSOnScreenSurface;
  143.     friend class QWSDirectPainterSurface;
  144.     int getPropertyLen;
  145.     char *getPropertyData;
  146.     static QLock *lock;
  147. };
  148. QT_END_NAMESPACE
  149. QT_END_HEADER
  150. #endif // QWSDISPLAY_QWS_H