[2] | 1 | /****************************************************************************
|
---|
| 2 | **
|
---|
[846] | 3 | ** Copyright (C) 2011 Nokia Corporation and/or its subsidiary(-ies).
|
---|
[561] | 4 | ** All rights reserved.
|
---|
| 5 | ** Contact: Nokia Corporation ([email protected])
|
---|
[2] | 6 | **
|
---|
| 7 | ** This file is part of the QtGui module of the Qt Toolkit.
|
---|
| 8 | **
|
---|
| 9 | ** $QT_BEGIN_LICENSE:LGPL$
|
---|
| 10 | ** Commercial Usage
|
---|
| 11 | ** Licensees holding valid Qt Commercial licenses may use this file in
|
---|
| 12 | ** accordance with the Qt Commercial License Agreement provided with the
|
---|
| 13 | ** Software or, alternatively, in accordance with the terms contained in
|
---|
| 14 | ** a written agreement between you and Nokia.
|
---|
| 15 | **
|
---|
| 16 | ** GNU Lesser General Public License Usage
|
---|
| 17 | ** Alternatively, this file may be used under the terms of the GNU Lesser
|
---|
| 18 | ** General Public License version 2.1 as published by the Free Software
|
---|
| 19 | ** Foundation and appearing in the file LICENSE.LGPL included in the
|
---|
| 20 | ** packaging of this file. Please review the following information to
|
---|
| 21 | ** ensure the GNU Lesser General Public License version 2.1 requirements
|
---|
| 22 | ** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html.
|
---|
| 23 | **
|
---|
[561] | 24 | ** In addition, as a special exception, Nokia gives you certain additional
|
---|
| 25 | ** rights. These rights are described in the Nokia Qt LGPL Exception
|
---|
| 26 | ** version 1.1, included in the file LGPL_EXCEPTION.txt in this package.
|
---|
[2] | 27 | **
|
---|
| 28 | ** GNU General Public License Usage
|
---|
| 29 | ** Alternatively, this file may be used under the terms of the GNU
|
---|
| 30 | ** General Public License version 3.0 as published by the Free Software
|
---|
| 31 | ** Foundation and appearing in the file LICENSE.GPL included in the
|
---|
| 32 | ** packaging of this file. Please review the following information to
|
---|
| 33 | ** ensure the GNU General Public License version 3.0 requirements will be
|
---|
| 34 | ** met: http://www.gnu.org/copyleft/gpl.html.
|
---|
| 35 | **
|
---|
[561] | 36 | ** If you have questions regarding the use of this file, please contact
|
---|
| 37 | ** Nokia at [email protected].
|
---|
[2] | 38 | ** $QT_END_LICENSE$
|
---|
| 39 | **
|
---|
| 40 | ****************************************************************************/
|
---|
| 41 |
|
---|
| 42 | #ifndef QCURSOR_H
|
---|
| 43 | #define QCURSOR_H
|
---|
| 44 |
|
---|
| 45 | #include <QtCore/qpoint.h>
|
---|
| 46 | #include <QtGui/qwindowdefs.h>
|
---|
| 47 |
|
---|
| 48 | QT_BEGIN_HEADER
|
---|
| 49 |
|
---|
| 50 | QT_BEGIN_NAMESPACE
|
---|
| 51 |
|
---|
| 52 | QT_MODULE(Gui)
|
---|
| 53 |
|
---|
| 54 | class QVariant;
|
---|
| 55 |
|
---|
| 56 | /*
|
---|
| 57 | ### The fake cursor has to go first with old qdoc.
|
---|
| 58 | */
|
---|
| 59 | #ifdef QT_NO_CURSOR
|
---|
| 60 |
|
---|
| 61 | class Q_GUI_EXPORT QCursor
|
---|
| 62 | {
|
---|
| 63 | public:
|
---|
| 64 | static QPoint pos();
|
---|
| 65 | static void setPos(int x, int y);
|
---|
| 66 | inline static void setPos(const QPoint &p) { setPos(p.x(), p.y()); }
|
---|
| 67 | private:
|
---|
| 68 | QCursor();
|
---|
| 69 | };
|
---|
| 70 |
|
---|
| 71 | #endif // QT_NO_CURSOR
|
---|
| 72 |
|
---|
| 73 | #ifndef QT_NO_CURSOR
|
---|
| 74 |
|
---|
[561] | 75 | class QCursorData;
|
---|
[2] | 76 | class QBitmap;
|
---|
| 77 | class QPixmap;
|
---|
| 78 |
|
---|
| 79 | #if defined(Q_WS_MAC)
|
---|
| 80 | void qt_mac_set_cursor(const QCursor *c, const QPoint &p);
|
---|
| 81 | #endif
|
---|
[561] | 82 | #if defined(Q_OS_SYMBIAN)
|
---|
| 83 | extern void qt_symbian_show_pointer_sprite();
|
---|
| 84 | extern void qt_symbian_hide_pointer_sprite();
|
---|
| 85 | extern void qt_symbian_set_pointer_sprite(const QCursor& cursor);
|
---|
| 86 | extern void qt_symbian_move_cursor_sprite();
|
---|
| 87 | #endif
|
---|
[2] | 88 |
|
---|
| 89 | class Q_GUI_EXPORT QCursor
|
---|
| 90 | {
|
---|
| 91 | public:
|
---|
| 92 | QCursor();
|
---|
| 93 | QCursor(Qt::CursorShape shape);
|
---|
| 94 | QCursor(const QBitmap &bitmap, const QBitmap &mask, int hotX=-1, int hotY=-1);
|
---|
| 95 | QCursor(const QPixmap &pixmap, int hotX=-1, int hotY=-1);
|
---|
| 96 | QCursor(const QCursor &cursor);
|
---|
| 97 | ~QCursor();
|
---|
| 98 | QCursor &operator=(const QCursor &cursor);
|
---|
| 99 | operator QVariant() const;
|
---|
| 100 |
|
---|
| 101 | Qt::CursorShape shape() const;
|
---|
| 102 | void setShape(Qt::CursorShape newShape);
|
---|
| 103 |
|
---|
| 104 | const QBitmap *bitmap() const;
|
---|
| 105 | const QBitmap *mask() const;
|
---|
| 106 | QPixmap pixmap() const;
|
---|
| 107 | QPoint hotSpot() const;
|
---|
| 108 |
|
---|
| 109 | static QPoint pos();
|
---|
| 110 | static void setPos(int x, int y);
|
---|
| 111 | inline static void setPos(const QPoint &p) { setPos(p.x(), p.y()); }
|
---|
[561] | 112 |
|
---|
[2] | 113 | #ifdef qdoc
|
---|
| 114 | HCURSOR_or_HANDLE handle() const;
|
---|
| 115 | QCursor(HCURSOR cursor);
|
---|
| 116 | QCursor(Qt::HANDLE cursor);
|
---|
| 117 | #endif
|
---|
| 118 |
|
---|
| 119 | #ifndef qdoc
|
---|
| 120 | #if defined(Q_WS_WIN)
|
---|
| 121 | HCURSOR handle() const;
|
---|
| 122 | QCursor(HCURSOR cursor);
|
---|
[108] | 123 | #elif defined(Q_WS_PM)
|
---|
| 124 | HPOINTER handle() const;
|
---|
| 125 | QCursor(HPOINTER handle);
|
---|
[2] | 126 | #elif defined(Q_WS_X11)
|
---|
| 127 | Qt::HANDLE handle() const;
|
---|
| 128 | QCursor(Qt::HANDLE cursor);
|
---|
| 129 | static int x11Screen();
|
---|
| 130 | #elif defined(Q_WS_MAC)
|
---|
| 131 | Qt::HANDLE handle() const;
|
---|
| 132 | #elif defined(Q_WS_QWS)
|
---|
| 133 | int handle() const;
|
---|
[561] | 134 | #elif defined(Q_OS_SYMBIAN)
|
---|
| 135 | Qt::HANDLE handle() const;
|
---|
[2] | 136 | #endif
|
---|
| 137 | #endif
|
---|
| 138 |
|
---|
| 139 | private:
|
---|
| 140 | QCursorData *d;
|
---|
| 141 | #if defined(Q_WS_MAC)
|
---|
[561] | 142 | friend void *qt_mac_nsCursorForQCursor(const QCursor &c);
|
---|
[2] | 143 | friend void qt_mac_set_cursor(const QCursor *c, const QPoint &p);
|
---|
| 144 | #endif
|
---|
[561] | 145 | #if defined(Q_OS_SYMBIAN)
|
---|
| 146 | friend void qt_symbian_show_pointer_sprite();
|
---|
| 147 | friend void qt_symbian_hide_pointer_sprite();
|
---|
| 148 | friend void qt_symbian_set_pointer_sprite(const QCursor& cursor);
|
---|
| 149 | friend void qt_symbian_move_cursor_sprite();
|
---|
| 150 | #endif
|
---|
[2] | 151 | };
|
---|
| 152 |
|
---|
| 153 | #ifdef QT3_SUPPORT
|
---|
| 154 | // CursorShape is defined in X11/X.h
|
---|
| 155 | #ifdef CursorShape
|
---|
| 156 | #define X_CursorShape CursorShape
|
---|
| 157 | #undef CursorShape
|
---|
| 158 | #endif
|
---|
| 159 | typedef Qt::CursorShape QCursorShape;
|
---|
| 160 | #ifdef X_CursorShape
|
---|
| 161 | #define CursorShape X_CursorShape
|
---|
| 162 | #endif
|
---|
| 163 | #endif
|
---|
| 164 |
|
---|
| 165 | /*****************************************************************************
|
---|
| 166 | QCursor stream functions
|
---|
| 167 | *****************************************************************************/
|
---|
| 168 | #ifndef QT_NO_DATASTREAM
|
---|
| 169 | Q_GUI_EXPORT QDataStream &operator<<(QDataStream &outS, const QCursor &cursor);
|
---|
| 170 | Q_GUI_EXPORT QDataStream &operator>>(QDataStream &inS, QCursor &cursor);
|
---|
| 171 | #endif
|
---|
| 172 | #endif // QT_NO_CURSOR
|
---|
| 173 |
|
---|
| 174 | QT_END_NAMESPACE
|
---|
| 175 |
|
---|
| 176 | QT_END_HEADER
|
---|
| 177 |
|
---|
| 178 | #endif // QCURSOR_H
|
---|