Clean-up a macro for Cocoa
[profile/ivi/qtbase.git] / src / widgets / platforms / mac / qregion_mac.cpp
1 /****************************************************************************
2 **
3 ** Copyright (C) 2011 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 ** GNU Lesser General Public License Usage
11 ** This file may be used under the terms of the GNU Lesser General Public
12 ** License version 2.1 as published by the Free Software Foundation and
13 ** appearing in the file LICENSE.LGPL included in the packaging of this
14 ** file. Please review the following information to ensure the GNU Lesser
15 ** General Public License version 2.1 requirements will be met:
16 ** http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html.
17 **
18 ** In addition, as a special exception, Nokia gives you certain additional
19 ** rights. These rights are described in the Nokia Qt LGPL Exception
20 ** version 1.1, included in the file LGPL_EXCEPTION.txt in this package.
21 **
22 ** GNU General Public License Usage
23 ** Alternatively, this file may be used under the terms of the GNU General
24 ** Public License version 3.0 as published by the Free Software Foundation
25 ** and appearing in the file LICENSE.GPL included in the packaging of this
26 ** file. Please review the following information to ensure the GNU General
27 ** Public License version 3.0 requirements will be met:
28 ** http://www.gnu.org/copyleft/gpl.html.
29 **
30 ** Other Usage
31 ** Alternatively, this file may be used in accordance with the terms and
32 ** conditions contained in a signed written agreement between you and Nokia.
33 **
34 **
35 **
36 **
37 **
38 ** $QT_END_LICENSE$
39 **
40 ****************************************************************************/
41
42 #include <private/qt_mac_p.h>
43 #include "qcoreapplication.h"
44 #include <qlibrary.h>
45
46 QT_BEGIN_NAMESPACE
47
48 QRegion::QRegionData QRegion::shared_empty = { Q_BASIC_ATOMIC_INITIALIZER(1), 0 };
49
50
51 #if (MAC_OS_X_VERSION_MAX_ALLOWED >= MAC_OS_X_VERSION_10_5)
52 OSStatus QRegion::shape2QRegionHelper(int inMessage, HIShapeRef,
53                                       const CGRect *inRect, void *inRefcon)
54 {
55     QRegion *region = static_cast<QRegion *>(inRefcon);
56     if (!region)
57         return paramErr;
58
59     switch (inMessage) {
60     case kHIShapeEnumerateRect:
61         *region += QRect(inRect->origin.x, inRect->origin.y,
62                          inRect->size.width, inRect->size.height);
63         break;
64     case kHIShapeEnumerateInit:
65         // Assume the region is already setup correctly
66     case kHIShapeEnumerateTerminate:
67     default:
68         break;
69     }
70     return noErr;
71 }
72 #endif
73
74 /*!
75     \internal
76      Create's a mutable shape, it's the caller's responsibility to release.
77      WARNING: this function clamps the coordinates to SHRT_MIN/MAX on 10.4 and below.
78 */
79 HIMutableShapeRef QRegion::toHIMutableShape() const
80 {
81     HIMutableShapeRef shape = HIShapeCreateMutable();
82 #if (MAC_OS_X_VERSION_MAX_ALLOWED >= MAC_OS_X_VERSION_10_5)
83     if (QSysInfo::MacintoshVersion >= QSysInfo::MV_10_5) {
84         if (d->qt_rgn && d->qt_rgn->numRects) {
85             int n = d->qt_rgn->numRects;
86             const QRect *qt_r = (n == 1) ? &d->qt_rgn->extents : d->qt_rgn->rects.constData();
87             while (n--) {
88                 CGRect cgRect = CGRectMake(qt_r->x(), qt_r->y(), qt_r->width(), qt_r->height());
89                 HIShapeUnionWithRect(shape, &cgRect);
90                 ++qt_r;
91             }
92         }
93     } else
94 #endif
95     {
96     }
97     return shape;
98 }
99
100
101
102 QRegion QRegion::fromHIShapeRef(HIShapeRef shape)
103 {
104     QRegion returnRegion;
105     returnRegion.detach();
106     // Begin gratuitous #if-defery
107 #if (MAC_OS_X_VERSION_MAX_ALLOWED >= MAC_OS_X_VERSION_10_5)
108 # ifndef Q_WS_MAC64
109     if (QSysInfo::MacintoshVersion >= QSysInfo::MV_10_5) {
110 # endif
111         HIShapeEnumerate(shape, kHIShapeParseFromTopLeft, shape2QRegionHelper, &returnRegion);
112 # ifndef Q_WS_MAC64
113     } else
114 # endif
115 #endif
116     {
117     }
118     return returnRegion;
119 }
120
121 QT_END_NAMESPACE