/**************************************************************************** ** ** Copyright (C) 2018 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** ** This file is part of the Qt Designer of the Qt Toolkit. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage ** Licensees holding valid commercial Qt licenses may use this file in ** accordance with the commercial license agreement provided with the ** Software or, alternatively, in accordance with the terms contained in ** a written agreement between you and The Qt Company. For licensing terms ** and conditions see https://www.qt.io/terms-conditions. For further ** information use the contact form at https://www.qt.io/contact-us. ** ** BSD License Usage ** Alternatively, you may use this file under the terms of the BSD license ** as follows: ** ** "Redistribution and use in source and binary forms, with or without ** modification, are permitted provided that the following conditions are ** met: ** * Redistributions of source code must retain the above copyright ** notice, this list of conditions and the following disclaimer. ** * Redistributions in binary form must reproduce the above copyright ** notice, this list of conditions and the following disclaimer in ** the documentation and/or other materials provided with the ** distribution. ** * Neither the name of The Qt Company Ltd nor the names of its ** contributors may be used to endorse or promote products derived ** from this software without specific prior written permission. ** ** ** THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS ** "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT ** LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR ** A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT ** OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, ** SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT ** LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, ** DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY ** THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT ** (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE ** OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE." ** ** $QT_END_LICENSE$ ** ****************************************************************************/ // // W A R N I N G // ------------- // // This file is not part of the Qt API. It exists for the convenience // of Qt Designer. This header // file may change from version to version without notice, or even be removed. // // We mean it. // #ifndef UILIBPROPERTIES_H #define UILIBPROPERTIES_H #include "uilib_global.h" #include #include #include #include #include #include "formbuilderextra_p.h" QT_BEGIN_NAMESPACE #ifdef QFORMINTERNAL_NAMESPACE namespace QFormInternal { #endif class QAbstractFormBuilder; class DomProperty; QDESIGNER_UILIB_EXPORT DomProperty *variantToDomProperty(QAbstractFormBuilder *abstractFormBuilder, const QMetaObject *meta, const QString &propertyName, const QVariant &value); QDESIGNER_UILIB_EXPORT QVariant domPropertyToVariant(const DomProperty *property); QDESIGNER_UILIB_EXPORT QVariant domPropertyToVariant(QAbstractFormBuilder *abstractFormBuilder, const QMetaObject *meta, const DomProperty *property); // This class exists to provide meta information // for enumerations only. class QAbstractFormBuilderGadget: public QWidget { Q_OBJECT Q_PROPERTY(Qt::ItemFlags itemFlags READ fakeItemFlags) Q_PROPERTY(Qt::CheckState checkState READ fakeCheckState) Q_PROPERTY(Qt::Alignment textAlignment READ fakeAlignment) Q_PROPERTY(Qt::Orientation orientation READ fakeOrientation) Q_PROPERTY(QSizePolicy::Policy sizeType READ fakeSizeType) Q_PROPERTY(QPalette::ColorRole colorRole READ fakeColorRole) Q_PROPERTY(QPalette::ColorGroup colorGroup READ fakeColorGroup) Q_PROPERTY(QFont::StyleStrategy styleStrategy READ fakeStyleStrategy) Q_PROPERTY(Qt::CursorShape cursorShape READ fakeCursorShape) Q_PROPERTY(Qt::BrushStyle brushStyle READ fakeBrushStyle) Q_PROPERTY(Qt::ToolBarArea toolBarArea READ fakeToolBarArea) Q_PROPERTY(QGradient::Type gradientType READ fakeGradientType) Q_PROPERTY(QGradient::Spread gradientSpread READ fakeGradientSpread) Q_PROPERTY(QGradient::CoordinateMode gradientCoordinate READ fakeGradientCoordinate) Q_PROPERTY(QLocale::Language language READ fakeLanguage) Q_PROPERTY(QLocale::Country country READ fakeCountry) public: QAbstractFormBuilderGadget() { Q_ASSERT(0); } Qt::Orientation fakeOrientation() const { Q_ASSERT(0); return Qt::Horizontal; } QSizePolicy::Policy fakeSizeType() const { Q_ASSERT(0); return QSizePolicy::Expanding; } QPalette::ColorGroup fakeColorGroup() const { Q_ASSERT(0); return static_cast(0); } QPalette::ColorRole fakeColorRole() const { Q_ASSERT(0); return static_cast(0); } QFont::StyleStrategy fakeStyleStrategy() const { Q_ASSERT(0); return QFont::PreferDefault; } Qt::CursorShape fakeCursorShape() const { Q_ASSERT(0); return Qt::ArrowCursor; } Qt::BrushStyle fakeBrushStyle() const { Q_ASSERT(0); return Qt::NoBrush; } Qt::ToolBarArea fakeToolBarArea() const { Q_ASSERT(0); return Qt::NoToolBarArea; } QGradient::Type fakeGradientType() const { Q_ASSERT(0); return QGradient::NoGradient; } QGradient::Spread fakeGradientSpread() const { Q_ASSERT(0); return QGradient::PadSpread; } QGradient::CoordinateMode fakeGradientCoordinate() const { Q_ASSERT(0); return QGradient::LogicalMode; } QLocale::Language fakeLanguage() const { Q_ASSERT(0); return QLocale::C; } QLocale::Country fakeCountry() const { Q_ASSERT(0); return QLocale::AnyCountry; } Qt::ItemFlags fakeItemFlags() const { Q_ASSERT(0); return Qt::NoItemFlags; } Qt::CheckState fakeCheckState() const { Q_ASSERT(0); return Qt::Unchecked; } Qt::Alignment fakeAlignment() const { Q_ASSERT(0); return Qt::AlignLeft; } }; // Convert key to value for a given QMetaEnum template inline EnumType enumKeyToValue(const QMetaEnum &metaEnum,const char *key, const EnumType* = 0) { int val = metaEnum.keyToValue(key); if (val == -1) { uiLibWarning(QCoreApplication::translate("QFormBuilder", "The enumeration-value '%1' is invalid. The default value '%2' will be used instead.") .arg(QString::fromUtf8(key)).arg(QString::fromUtf8(metaEnum.key(0)))); val = metaEnum.value(0); } return static_cast(val); } // Convert keys to value for a given QMetaEnum template inline EnumType enumKeysToValue(const QMetaEnum &metaEnum,const char *keys, const EnumType* = 0) { int val = metaEnum.keysToValue(keys); if (val == -1) { uiLibWarning(QCoreApplication::translate("QFormBuilder", "The flag-value '%1' is invalid. Zero will be used instead.") .arg(QString::fromUtf8(keys))); val = 0; } return static_cast(QFlag(val)); } // Access meta enumeration object of a qobject template inline QMetaEnum metaEnum(const char *name) { const int e_index = QObjectType::staticMetaObject.indexOfProperty(name); Q_ASSERT(e_index != -1); return QObjectType::staticMetaObject.property(e_index).enumerator(); } // Convert key to value for enumeration by name template inline EnumType enumKeyOfObjectToValue(const char *enumName, const char *key) { const QMetaEnum me = metaEnum(enumName); return enumKeyToValue(me, key); } #ifdef QFORMINTERNAL_NAMESPACE } #endif QT_END_NAMESPACE #endif // UILIBPROPERTIES_H