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

系统编程

开发平台:

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.  In addition, as a special
  23. ** exception, Nokia gives you certain additional rights. These rights
  24. ** are described in the Nokia Qt GPL Exception version 1.3, included in
  25. ** the file GPL_EXCEPTION.txt in this package.
  26. **
  27. ** Qt for Windows(R) Licensees
  28. ** As a special exception, Nokia, as the sole copyright holder for Qt
  29. ** Designer, grants users of the Qt/Eclipse Integration plug-in the
  30. ** right for the Qt/Eclipse Integration to link to functionality
  31. ** provided by Qt Designer and its related libraries.
  32. **
  33. ** If you are unsure which license is appropriate for your use, please
  34. ** contact the sales department at qt-sales@nokia.com.
  35. **
  36. ****************************************************************************/
  37. #ifndef QCURSOR_H
  38. #define QCURSOR_H
  39. #include <QtCore/qpoint.h>
  40. #include <QtGui/qwindowdefs.h>
  41. QT_BEGIN_HEADER
  42. QT_BEGIN_NAMESPACE
  43. QT_MODULE(Gui)
  44. class QVariant;
  45. /*
  46.   ### The fake cursor has to go first with old qdoc.
  47. */
  48. #ifdef QT_NO_CURSOR
  49. class Q_GUI_EXPORT QCursor
  50. {
  51. public:
  52.     static QPoint pos();
  53.     static void setPos(int x, int y);
  54.     inline static void setPos(const QPoint &p) { setPos(p.x(), p.y()); }
  55. private:
  56.     QCursor();
  57. };
  58. #endif // QT_NO_CURSOR
  59. #ifndef QT_NO_CURSOR
  60. struct QCursorData;
  61. class QBitmap;
  62. class QPixmap;
  63. #if defined(Q_WS_MAC)
  64. void qt_mac_set_cursor(const QCursor *c, const QPoint &p);
  65. #endif
  66. class Q_GUI_EXPORT QCursor
  67. {
  68. public:
  69.     QCursor();
  70.     QCursor(Qt::CursorShape shape);
  71.     QCursor(const QBitmap &bitmap, const QBitmap &mask, int hotX=-1, int hotY=-1);
  72.     QCursor(const QPixmap &pixmap, int hotX=-1, int hotY=-1);
  73.     QCursor(const QCursor &cursor);
  74.     ~QCursor();
  75.     QCursor &operator=(const QCursor &cursor);
  76.     operator QVariant() const;
  77.     Qt::CursorShape shape() const;
  78.     void setShape(Qt::CursorShape newShape);
  79.     const QBitmap *bitmap() const;
  80.     const QBitmap *mask() const;
  81.     QPixmap pixmap() const;
  82.     QPoint hotSpot() const;
  83.     static QPoint pos();
  84.     static void setPos(int x, int y);
  85.     inline static void setPos(const QPoint &p) { setPos(p.x(), p.y()); }
  86. #ifdef qdoc
  87.     HCURSOR_or_HANDLE handle() const;
  88.     QCursor(HCURSOR cursor);
  89.     QCursor(Qt::HANDLE cursor);
  90. #endif
  91. #ifndef qdoc
  92. #if defined(Q_WS_WIN)
  93.     HCURSOR handle() const;
  94.     QCursor(HCURSOR cursor);
  95. #elif defined(Q_WS_X11)
  96.     Qt::HANDLE handle() const;
  97.     QCursor(Qt::HANDLE cursor);
  98.     static int x11Screen();
  99. #elif defined(Q_WS_MAC)
  100.     Qt::HANDLE handle() const;
  101. #elif defined(Q_WS_QWS)
  102.     int handle() const;
  103. #endif
  104. #endif
  105. private:
  106.     QCursorData *d;
  107. #if defined(Q_WS_MAC)
  108.     friend void qt_mac_set_cursor(const QCursor *c, const QPoint &p);
  109. #endif
  110. };
  111. #ifdef QT3_SUPPORT
  112. // CursorShape is defined in X11/X.h
  113. #ifdef CursorShape
  114. #define X_CursorShape CursorShape
  115. #undef CursorShape
  116. #endif
  117. typedef Qt::CursorShape QCursorShape;
  118. #ifdef X_CursorShape
  119. #define CursorShape X_CursorShape
  120. #endif
  121. #endif
  122. /*****************************************************************************
  123.   QCursor stream functions
  124.  *****************************************************************************/
  125. #ifndef QT_NO_DATASTREAM
  126. Q_GUI_EXPORT QDataStream &operator<<(QDataStream &outS, const QCursor &cursor);
  127. Q_GUI_EXPORT QDataStream &operator>>(QDataStream &inS, QCursor &cursor);
  128. #endif
  129. #endif // QT_NO_CURSOR
  130. QT_END_NAMESPACE
  131. QT_END_HEADER
  132. #endif // QCURSOR_H