blob: 523c45bfa6aee41b82ce8cd872ccd993151435b2 [file] [log] [blame]
/****************************************************************************
**
** Copyright (C) 2019 The Qt Company Ltd.
** Contact: https://www.qt.io/licensing/
**
** This file is part of Qt Quick 3D.
**
** $QT_BEGIN_LICENSE:GPL$
** 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.
**
** GNU General Public License Usage
** Alternatively, this file may be used under the terms of the GNU
** General Public License version 3 or (at your option) any later version
** approved by the KDE Free Qt Foundation. The licenses are as published by
** the Free Software Foundation and appearing in the file LICENSE.GPL3
** included in the packaging of this file. Please review the following
** information to ensure the GNU General Public License requirements will
** be met: https://www.gnu.org/licenses/gpl-3.0.html.
**
** $QT_END_LICENSE$
**
****************************************************************************/
#ifndef ENUMMAPS_H
#define ENUMMAPS_H
#include "uippresentation.h"
QT_BEGIN_NAMESPACE
struct EnumNameMap
{
int value;
const char *str;
};
template <typename T>
struct EnumParseMap
{
};
template <>
struct EnumParseMap<UipPresentation::Rotation>
{
static EnumNameMap *get();
};
template <>
struct EnumParseMap<Node::RotationOrder>
{
static EnumNameMap *get();
};
template <>
struct EnumParseMap<Node::Orientation>
{
static EnumNameMap *get();
};
template <>
struct EnumParseMap<Slide::PlayMode>
{
static EnumNameMap *get();
};
template <>
struct EnumParseMap<Slide::InitialPlayState>
{
static EnumNameMap *get();
};
template <>
struct EnumParseMap<Slide::PlayThrough>
{
static EnumNameMap *get();
};
template <>
struct EnumParseMap<AnimationTrack::AnimationType>
{
static EnumNameMap *get();
};
template <>
struct EnumParseMap<LayerNode::ProgressiveAA>
{
static EnumNameMap *get();
};
template <>
struct EnumParseMap<LayerNode::MultisampleAA>
{
static EnumNameMap *get();
};
template <>
struct EnumParseMap<LayerNode::LayerBackground>
{
static EnumNameMap *get();
};
template <>
struct EnumParseMap<LayerNode::BlendType>
{
static EnumNameMap *get();
};
template <>
struct EnumParseMap<LayerNode::HorizontalFields>
{
static EnumNameMap *get();
};
template <>
struct EnumParseMap<LayerNode::Units>
{
static EnumNameMap *get();
};
template <>
struct EnumParseMap<LayerNode::VerticalFields>
{
static EnumNameMap *get();
};
template <>
struct EnumParseMap<Image::MappingMode>
{
static EnumNameMap *get();
};
template <>
struct EnumParseMap<Image::TilingMode>
{
static EnumNameMap *get();
};
template <>
struct EnumParseMap<ModelNode::Tessellation>
{
static EnumNameMap *get();
};
#if 0 // TODO: QTBUG-81016
template <>
struct EnumParseMap<CameraNode::ScaleMode>
{
static EnumNameMap *get();
};
template <>
struct EnumParseMap<CameraNode::ScaleAnchor>
{
static EnumNameMap *get();
};
#endif
template <>
struct EnumParseMap<LightNode::LightType>
{
static EnumNameMap *get();
};
template <>
struct EnumParseMap<DefaultMaterial::ShaderLighting>
{
static EnumNameMap *get();
};
template <>
struct EnumParseMap<DefaultMaterial::BlendMode>
{
static EnumNameMap *get();
};
template <>
struct EnumParseMap<DefaultMaterial::SpecularModel>
{
static EnumNameMap *get();
};
template <>
struct EnumParseMap<TextNode::HorizontalAlignment>
{
static EnumNameMap *get();
};
template <>
struct EnumParseMap<TextNode::VerticalAlignment>
{
static EnumNameMap *get();
};
template <>
struct EnumParseMap<TextNode::WordWrap>
{
static EnumNameMap *get();
};
template <>
struct EnumParseMap<TextNode::Elide>
{
static EnumNameMap *get();
};
class EnumMap
{
public:
template <typename T>
static bool enumFromStr(const QStringRef &str, T *v) {
QByteArray ba = str.toUtf8();
EnumNameMap *nameMap = EnumParseMap<T>::get();
for ( ; nameMap->str; ++nameMap) {
if (!strcmp(nameMap->str, ba.constData())) {
*v = static_cast<T>(nameMap->value);
return true;
}
}
return false;
}
template <typename T>
static const char *strFromEnum(T v) {
EnumNameMap *nameMap = EnumParseMap<T>::get();
for ( ; nameMap->str; ++nameMap) {
if (nameMap->value == v)
return nameMap->str;
}
return nullptr;
}
};
QT_END_NAMESPACE
#endif // ENUMMAPS_H