Remove "All rights reserved" line from license headers.
[profile/ivi/qtdeclarative.git] / src / declarative / qml / qdeclarativeglobal_p.h
1 /****************************************************************************
2 **
3 ** Copyright (C) 2012 Nokia Corporation and/or its subsidiary(-ies).
4 ** Contact: http://www.qt-project.org/
5 **
6 ** This file is part of the QtDeclarative module of the Qt Toolkit.
7 **
8 ** $QT_BEGIN_LICENSE:LGPL$
9 ** GNU Lesser General Public License Usage
10 ** This file may be used under the terms of the GNU Lesser General Public
11 ** License version 2.1 as published by the Free Software Foundation and
12 ** appearing in the file LICENSE.LGPL included in the packaging of this
13 ** file. Please review the following information to ensure the GNU Lesser
14 ** General Public License version 2.1 requirements will be met:
15 ** http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html.
16 **
17 ** In addition, as a special exception, Nokia gives you certain additional
18 ** rights. These rights are described in the Nokia Qt LGPL Exception
19 ** version 1.1, included in the file LGPL_EXCEPTION.txt in this package.
20 **
21 ** GNU General Public License Usage
22 ** Alternatively, this file may be used under the terms of the GNU General
23 ** Public License version 3.0 as published by the Free Software Foundation
24 ** and appearing in the file LICENSE.GPL included in the packaging of this
25 ** file. Please review the following information to ensure the GNU General
26 ** Public License version 3.0 requirements will be met:
27 ** http://www.gnu.org/copyleft/gpl.html.
28 **
29 ** Other Usage
30 ** Alternatively, this file may be used in accordance with the terms and
31 ** conditions contained in a signed written agreement between you and Nokia.
32 **
33 **
34 **
35 **
36 **
37 **
38 ** $QT_END_LICENSE$
39 **
40 ****************************************************************************/
41
42 #ifndef QDECLARATIVEGLOBAL_H
43 #define QDECLARATIVEGLOBAL_H
44
45 #include <QtCore/qglobal.h>
46 #include <QtCore/QObject>
47
48 QT_BEGIN_HEADER
49
50 QT_BEGIN_NAMESPACE
51
52
53 #define DEFINE_BOOL_CONFIG_OPTION(name, var) \
54     static bool name() \
55     { \
56         static enum { Yes, No, Unknown } status = Unknown; \
57         if (status == Unknown) { \
58             QByteArray v = qgetenv(#var); \
59             bool value = !v.isEmpty() && v != "0" && v != "false"; \
60             if (value) status = Yes; \
61             else status = No; \
62         } \
63         return status == Yes; \
64     }
65
66 #define FAST_CONNECT(Sender, Signal, Receiver, Method) \
67 { \
68     QObject *sender = (Sender); \
69     QObject *receiver = (Receiver); \
70     const char *signal = (Signal); \
71     const char *method = (Method); \
72     static int signalIdx = -1; \
73     static int methodIdx = -1; \
74     if (signalIdx < 0) { \
75         if (((int)(*signal) - '0') == QSIGNAL_CODE) \
76             signalIdx = sender->metaObject()->indexOfSignal(signal+1); \
77         else \
78             qWarning("FAST_CONNECT: Invalid signal %s. Please make sure you are using the SIGNAL macro.", signal); \
79     } \
80     if (methodIdx < 0) { \
81         int code = ((int)(*method) - '0'); \
82         if (code == QSLOT_CODE) \
83             methodIdx = receiver->metaObject()->indexOfSlot(method+1); \
84         else if (code == QSIGNAL_CODE) \
85             methodIdx = receiver->metaObject()->indexOfSignal(method+1); \
86         else \
87             qWarning("FAST_CONNECT: Invalid method %s. Please make sure you are using the SIGNAL or SLOT macro.", method); \
88     } \
89     QMetaObject::connect(sender, signalIdx, receiver, methodIdx, Qt::DirectConnection); \
90 }
91
92 #define Q_DECLARATIVE_PRIVATE_EXPORT Q_DECLARATIVE_EXPORT
93
94 struct QDeclarativeGraphics_DerivedObject : public QObject
95 {
96     void setParent_noEvent(QObject *parent) {
97         bool sce = d_ptr->sendChildEvents;
98         d_ptr->sendChildEvents = false;
99         setParent(parent);
100         d_ptr->sendChildEvents = sce;
101     }
102 };
103
104 /*!
105     Returns true if the case of \a fileName is equivalent to the file case of 
106     \a fileName on disk, and false otherwise.
107
108     This is used to ensure that the behavior of QML on a case-insensitive file 
109     system is the same as on a case-sensitive file system.  This function 
110     performs a "best effort" attempt to determine the real case of the file. 
111     It may have false positives (say the case is correct when it isn't), but it
112     should never have a false negative (say the case is incorrect when it is 
113     correct).
114 */
115 bool QDeclarative_isFileCaseCorrect(const QString &fileName);
116
117 /*!
118     Makes the \a object a child of \a parent.  Note that when using this method,
119     neither \a parent nor the object's previous parent (if it had one) will
120     receive ChildRemoved or ChildAdded events.
121 */
122 inline void QDeclarative_setParent_noEvent(QObject *object, QObject *parent)
123 {
124     static_cast<QDeclarativeGraphics_DerivedObject *>(object)->setParent_noEvent(parent);
125 }
126
127 QT_END_NAMESPACE
128
129 QT_END_HEADER
130
131 #endif // QDECLARATIVEGLOBAL_H