/**************************************************************************** ** ** Copyright (C) 2012 Nokia Corporation and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/ ** ** This file is part of the QtQml module of the Qt Toolkit. ** ** $QT_BEGIN_LICENSE:LGPL$ ** GNU Lesser General Public License Usage ** This file may be used under the terms of the GNU Lesser General Public ** License version 2.1 as published by the Free Software Foundation and ** appearing in the file LICENSE.LGPL included in the packaging of this ** file. Please review the following information to ensure the GNU Lesser ** General Public License version 2.1 requirements will be met: ** http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. ** ** In addition, as a special exception, Nokia gives you certain additional ** rights. These rights are described in the Nokia Qt LGPL Exception ** version 1.1, included in the file LGPL_EXCEPTION.txt in this package. ** ** GNU General Public License Usage ** Alternatively, this file may be used under the terms of the GNU General ** Public License version 3.0 as published by the Free Software Foundation ** and appearing in the file LICENSE.GPL included in the packaging of this ** file. Please review the following information to ensure the GNU General ** Public License version 3.0 requirements will be met: ** http://www.gnu.org/copyleft/gpl.html. ** ** Other Usage ** Alternatively, this file may be used in accordance with the terms and ** conditions contained in a signed written agreement between you and Nokia. ** ** ** ** ** ** ** $QT_END_LICENSE$ ** ****************************************************************************/ #ifndef QQMLGLOBAL_H #define QQMLGLOBAL_H #include #include #include #include #include QT_BEGIN_HEADER QT_BEGIN_NAMESPACE #define DEFINE_BOOL_CONFIG_OPTION(name, var) \ static bool name() \ { \ static enum { Yes, No, Unknown } status = Unknown; \ if (status == Unknown) { \ QByteArray v = qgetenv(#var); \ bool value = !v.isEmpty() && v != "0" && v != "false"; \ if (value) status = Yes; \ else status = No; \ } \ return status == Yes; \ } /*! Connect \a Signal of \a Sender to \a Method of \a Receiver. \a Signal must be of type \a SenderType and \a Receiver of type \a ReceiverType. Unlike QObject::connect(), this method caches the lookup of the signal and method indexes. It also does not require lazy QMetaObjects to be built so should be preferred in all QML code that might interact with QML built objects. \code QQuickTextControl *control; QQuickTextEdit *textEdit; qmlobject_connect(control, QQuickTextControl, SIGNAL(updateRequest(QRectF)), textEdit, QQuickTextEdit, SLOT(updateDocument())); \endcode */ #define qmlobject_connect(Sender, SenderType, Signal, Receiver, ReceiverType, Method) \ { \ SenderType *sender = (Sender); \ ReceiverType *receiver = (Receiver); \ const char *signal = (Signal); \ const char *method = (Method); \ static int signalIdx = -1; \ static int methodIdx = -1; \ if (signalIdx < 0) { \ Q_ASSERT(((int)(*signal) - '0') == QSIGNAL_CODE); \ signalIdx = SenderType::staticMetaObject.indexOfSignal(signal+1); \ } \ if (methodIdx < 0) { \ int code = ((int)(*method) - '0'); \ Q_ASSERT(code == QSLOT_CODE || code == QSIGNAL_CODE); \ if (code == QSLOT_CODE) \ methodIdx = ReceiverType::staticMetaObject.indexOfSlot(method+1); \ else \ methodIdx = ReceiverType::staticMetaObject.indexOfSignal(method+1); \ } \ Q_ASSERT(signalIdx != -1 && methodIdx != -1); \ QMetaObject::connect(sender, signalIdx, receiver, methodIdx, Qt::DirectConnection); \ } /*! Disconnect \a Signal of \a Sender from \a Method of \a Receiver. \a Signal must be of type \a SenderType and \a Receiver of type \a ReceiverType. Unlike QObject::disconnect(), this method caches the lookup of the signal and method indexes. It also does not require lazy QMetaObjects to be built so should be preferred in all QML code that might interact with QML built objects. \code QQuickTextControl *control; QQuickTextEdit *textEdit; qmlobject_disconnect(control, QQuickTextControl, SIGNAL(updateRequest(QRectF)), textEdit, QQuickTextEdit, SLOT(updateDocument())); \endcode */ #define qmlobject_disconnect(Sender, SenderType, Signal, Receiver, ReceiverType, Method) \ { \ SenderType *sender = (Sender); \ ReceiverType *receiver = (Receiver); \ const char *signal = (Signal); \ const char *method = (Method); \ static int signalIdx = -1; \ static int methodIdx = -1; \ if (signalIdx < 0) { \ Q_ASSERT(((int)(*signal) - '0') == QSIGNAL_CODE); \ signalIdx = SenderType::staticMetaObject.indexOfSignal(signal+1); \ } \ if (methodIdx < 0) { \ int code = ((int)(*method) - '0'); \ Q_ASSERT(code == QSLOT_CODE || code == QSIGNAL_CODE); \ if (code == QSLOT_CODE) \ methodIdx = ReceiverType::staticMetaObject.indexOfSlot(method+1); \ else \ methodIdx = ReceiverType::staticMetaObject.indexOfSignal(method+1); \ } \ Q_ASSERT(signalIdx != -1 && methodIdx != -1); \ QMetaObject::disconnect(sender, signalIdx, receiver, methodIdx); \ } /*! This method is identical to qobject_cast() except that it does not require lazy QMetaObjects to be built, so should be preferred in all QML code that might interact with QML built objects. \code QObject *object; if (QQuickTextEdit *textEdit = qmlobject_cast(object)) { // ...Do something... } \endcode */ template T qmlobject_cast(QObject *object) { if (object && QQmlMetaObject::canConvert(object, &reinterpret_cast(object)->staticMetaObject)) return static_cast(object); else return 0; } inline quint16 qmlSourceCoordinate(int n) { return (n > 0 && n <= static_cast(USHRT_MAX)) ? static_cast(n) : 0; } inline int qmlSourceCoordinate(quint16 n) { return (n == 0) ? -1 : static_cast(n); } #define IS_SIGNAL_CONNECTED(Sender, SenderType, Name, Arguments) \ do { \ QObject *sender = (Sender); \ void (SenderType::*signal)Arguments = &SenderType::Name; \ static QMetaMethod method = QMetaMethod::fromSignal(signal); \ static int signalIdx = QMetaObjectPrivate::signalIndex(method); \ return QObjectPrivate::get(sender)->isSignalConnected(signalIdx); \ } while (0) struct QQmlGraphics_DerivedObject : public QObject { void setParent_noEvent(QObject *parent) { bool sce = d_ptr->sendChildEvents; d_ptr->sendChildEvents = false; setParent(parent); d_ptr->sendChildEvents = sce; } }; /*! Returns true if the case of \a fileName is equivalent to the file case of \a fileName on disk, and false otherwise. This is used to ensure that the behavior of QML on a case-insensitive file system is the same as on a case-sensitive file system. This function performs a "best effort" attempt to determine the real case of the file. It may have false positives (say the case is correct when it isn't), but it should never have a false negative (say the case is incorrect when it is correct). */ bool QQml_isFileCaseCorrect(const QString &fileName); /*! Makes the \a object a child of \a parent. Note that when using this method, neither \a parent nor the object's previous parent (if it had one) will receive ChildRemoved or ChildAdded events. */ inline void QQml_setParent_noEvent(QObject *object, QObject *parent) { static_cast(object)->setParent_noEvent(parent); } class QQmlValueType; class QV8Engine; class Q_QML_PRIVATE_EXPORT QQmlValueTypeProvider { public: QQmlValueTypeProvider(); QQmlValueType *createValueType(int); bool initValueType(int, void *, size_t); bool destroyValueType(int, void *, size_t); bool copyValueType(int, const void *, void *, size_t); QVariant createValueType(int, int, const void *[]); bool createValueFromString(int, const QString &, void *, size_t); bool createStringFromValue(int, const void *, QString *); QVariant createVariantFromString(const QString &); QVariant createVariantFromString(int, const QString &, bool *); QVariant createVariantFromJsObject(int, QQmlV8Handle, QV8Engine *, bool*); bool equalValueType(int, const void *, const void *, size_t); bool storeValueType(int, const void *, void *, size_t); bool readValueType(int, const void *, size_t, int, void *); bool writeValueType(int, const void *, void *, size_t); private: virtual bool create(int, QQmlValueType *&); virtual bool init(int, void *, size_t); virtual bool destroy(int, void *, size_t); virtual bool copy(int, const void *, void *, size_t); virtual bool create(int, int, const void *[], QVariant *); virtual bool createFromString(int, const QString &, void *, size_t); virtual bool createStringFrom(int, const void *, QString *); virtual bool variantFromString(const QString &, QVariant *); virtual bool variantFromString(int, const QString &, QVariant *); virtual bool variantFromJsObject(int, QQmlV8Handle, QV8Engine *, QVariant *); virtual bool equal(int, const void *, const void *, size_t); virtual bool store(int, const void *, void *, size_t); virtual bool read(int, const void *, size_t, int, void *); virtual bool write(int, const void *, void *, size_t); friend Q_QML_PRIVATE_EXPORT void QQml_addValueTypeProvider(QQmlValueTypeProvider *); QQmlValueTypeProvider *next; }; Q_QML_PRIVATE_EXPORT void QQml_addValueTypeProvider(QQmlValueTypeProvider *); Q_AUTOTEST_EXPORT QQmlValueTypeProvider *QQml_valueTypeProvider(); class Q_QML_PRIVATE_EXPORT QQmlColorProvider { public: virtual QVariant colorFromString(const QString &, bool *); virtual unsigned rgbaFromString(const QString &, bool *); virtual QVariant fromRgbF(double, double, double, double); virtual QVariant fromHslF(double, double, double, double); virtual QVariant lighter(const QVariant &, qreal); virtual QVariant darker(const QVariant &, qreal); virtual QVariant tint(const QVariant &, const QVariant &); }; Q_QML_PRIVATE_EXPORT QQmlColorProvider *QQml_setColorProvider(QQmlColorProvider *); Q_QML_PRIVATE_EXPORT QQmlColorProvider *QQml_colorProvider(); class Q_QML_PRIVATE_EXPORT QQmlGuiProvider { public: virtual QObject *application(QObject *parent); virtual QObject *inputMethod(); virtual QStringList fontFamilies(); virtual bool openUrlExternally(QUrl &); }; Q_QML_PRIVATE_EXPORT QQmlGuiProvider *QQml_setGuiProvider(QQmlGuiProvider *); Q_AUTOTEST_EXPORT QQmlGuiProvider *QQml_guiProvider(); QT_END_NAMESPACE QT_END_HEADER #endif // QQMLGLOBAL_H