Files
qt-creator/share/qtcreator/qml/qmlpuppet/commands/view3dactioncommand.cpp
Lucie Gérard a7956df3ca Use SPDX license identifiers
Replace the current license disclaimer in files by
a SPDX-License-Identifier.

Task-number: QTBUG-67283
Change-Id: I708fd1f9f2b73d60f57cc3568646929117825813
Reviewed-by: Eike Ziller <eike.ziller@qt.io>
2022-08-26 12:27:18 +00:00

79 lines
1.6 KiB
C++

// Copyright (C) 2020 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0 WITH Qt-GPL-exception-1.0
#include "view3dactioncommand.h"
#include <QDebug>
#include <QDataStream>
namespace QmlDesigner {
View3DActionCommand::View3DActionCommand(Type type, const QVariant &value)
: m_type(type)
, m_value(value)
{
}
View3DActionCommand::View3DActionCommand(int pos)
: m_type(ParticlesSeek)
, m_value(pos)
{
}
bool View3DActionCommand::isEnabled() const
{
return m_value.toBool();
}
QVariant View3DActionCommand::value() const
{
return m_value;
}
View3DActionCommand::Type View3DActionCommand::type() const
{
return m_type;
}
int View3DActionCommand::position() const
{
bool ok = false;
int result = m_value.toInt(&ok);
if (!ok) {
qWarning() << "View3DActionCommand: returning a position that is not int; command type = "
<< m_type;
}
return result;
}
QDataStream &operator<<(QDataStream &out, const View3DActionCommand &command)
{
out << command.value();
out << qint32(command.type());
return out;
}
QDataStream &operator>>(QDataStream &in, View3DActionCommand &command)
{
QVariant value;
qint32 type;
in >> value;
in >> type;
command.m_value = value;
command.m_type = View3DActionCommand::Type(type);
return in;
}
QDebug operator<<(QDebug debug, const View3DActionCommand &command)
{
return debug.nospace() << "View3DActionCommand(type: "
<< command.m_type << ","
<< command.m_value << ")\n";
}
} // namespace QmlDesigner