src/gui/kernel/qcursor_p.h
changeset 0 1918ee327afb
child 4 3b1da2848fc7
equal deleted inserted replaced
-1:000000000000 0:1918ee327afb
       
     1 /****************************************************************************
       
     2 **
       
     3 ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies).
       
     4 ** All rights reserved.
       
     5 ** Contact: Nokia Corporation (qt-info@nokia.com)
       
     6 **
       
     7 ** This file is part of the QtGui module of the Qt Toolkit.
       
     8 **
       
     9 ** $QT_BEGIN_LICENSE:LGPL$
       
    10 ** No Commercial Usage
       
    11 ** This file contains pre-release code and may not be distributed.
       
    12 ** You may use this file in accordance with the terms and conditions
       
    13 ** contained in the Technology Preview License Agreement accompanying
       
    14 ** this package.
       
    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 **
       
    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.
       
    27 **
       
    28 ** If you have questions regarding the use of this file, please contact
       
    29 ** Nokia at qt-info@nokia.com.
       
    30 **
       
    31 **
       
    32 **
       
    33 **
       
    34 **
       
    35 **
       
    36 **
       
    37 **
       
    38 ** $QT_END_LICENSE$
       
    39 **
       
    40 ****************************************************************************/
       
    41 
       
    42 #ifndef QCURSOR_P_H
       
    43 #define QCURSOR_P_H
       
    44 
       
    45 //
       
    46 //  W A R N I N G
       
    47 //  -------------
       
    48 //
       
    49 // This file is not part of the Qt API.  It exists for the convenience
       
    50 // of a number of Qt sources files.  This header file may change from
       
    51 // version to version without notice, or even be removed.
       
    52 //
       
    53 // We mean it.
       
    54 //
       
    55 
       
    56 #include "QtCore/qatomic.h"
       
    57 #include "QtCore/qglobal.h"
       
    58 #include "QtCore/qnamespace.h"
       
    59 #include "QtGui/qpixmap.h"
       
    60 
       
    61 # if defined (Q_WS_MAC)
       
    62 #  include "private/qt_mac_p.h"
       
    63 # elif defined(Q_WS_X11)
       
    64 #  include "private/qt_x11_p.h"
       
    65 # elif defined(Q_WS_WIN)
       
    66 #  include "QtCore/qt_windows.h"
       
    67 # elif defined(Q_OS_SYMBIAN)
       
    68 #  include "private/qt_s60_p.h"
       
    69 #endif
       
    70 
       
    71 QT_BEGIN_NAMESPACE
       
    72 
       
    73 #if defined (Q_WS_MAC)
       
    74 void *qt_mac_nsCursorForQCursor(const QCursor &c);
       
    75 class QMacAnimateCursor;
       
    76 #endif
       
    77 
       
    78 class QBitmap;
       
    79 class QCursorData {
       
    80 public:
       
    81     QCursorData(Qt::CursorShape s = Qt::ArrowCursor);
       
    82     ~QCursorData();
       
    83 
       
    84     static void initialize();
       
    85     static void cleanup();
       
    86 
       
    87     QAtomicInt ref;
       
    88     Qt::CursorShape cshape;
       
    89     QBitmap  *bm, *bmm;
       
    90     QPixmap pixmap;
       
    91     short     hx, hy;
       
    92 #if defined (Q_WS_MAC)
       
    93     int mId;
       
    94 #elif defined(Q_WS_QWS)
       
    95     int id;
       
    96 #endif
       
    97 #if defined (Q_WS_WIN)
       
    98     HCURSOR hcurs;
       
    99 #elif defined (Q_WS_X11)
       
   100     XColor fg, bg;
       
   101     Cursor hcurs;
       
   102     Pixmap pm, pmm;
       
   103 #elif defined (Q_WS_MAC)
       
   104     enum { TYPE_None, TYPE_ImageCursor, TYPE_ThemeCursor } type;
       
   105     union {
       
   106         struct {
       
   107             uint my_cursor:1;
       
   108             void *nscursor;
       
   109         } cp;
       
   110         struct {
       
   111             QMacAnimateCursor *anim;
       
   112             ThemeCursor curs;
       
   113         } tc;
       
   114     } curs;
       
   115     void initCursorFromBitmap();
       
   116     void initCursorFromPixmap();
       
   117 #elif defined Q_OS_SYMBIAN
       
   118     void loadShapeFromResource(RWsSpriteBase& target, QString resource, int hx, int hy, int interval=0);
       
   119     void constructShapeSprite(RWsSpriteBase& target);
       
   120     void constructCursorSprite(RWsSpriteBase& target);
       
   121     RWsPointerCursor pcurs;
       
   122     RWsSprite scurs;
       
   123     RPointerArray<TSpriteMember> nativeSpriteMembers;
       
   124 #endif
       
   125     static bool initialized;
       
   126     void update();
       
   127     static QCursorData *setBitmap(const QBitmap &bitmap, const QBitmap &mask, int hotX, int hotY);
       
   128 };
       
   129 
       
   130 extern QCursorData *qt_cursorTable[Qt::LastCursor + 1]; // qcursor.cpp
       
   131 
       
   132 QT_END_NAMESPACE
       
   133 
       
   134 #endif // QCURSOR_P_H