114 lines
3.4 KiB
C++
114 lines
3.4 KiB
C++
|
#include "vvector3dproperty.h"
|
||
|
|
||
|
using namespace VPE;
|
||
|
|
||
|
#include "vproperty_p.h"
|
||
|
#include "../vnumberproperty.h"
|
||
|
#include <QStringList>
|
||
|
|
||
|
QVector3DProperty::QVector3DProperty(const QString& name)
|
||
|
: VProperty(name, QVariant::String) // todo: QVariant::Vector3D??
|
||
|
{
|
||
|
QVariant tmpFloat(0); tmpFloat.convert(QVariant::Double);
|
||
|
VDoubleProperty* tmpX = new VDoubleProperty("X"); addChild(tmpX); tmpX->setUpdateBehaviour(true, false);
|
||
|
VDoubleProperty* tmpY = new VDoubleProperty("Y"); addChild(tmpY); tmpY->setUpdateBehaviour(true, false);
|
||
|
VDoubleProperty* tmpZ = new VDoubleProperty("Z"); addChild(tmpZ); tmpZ->setUpdateBehaviour(true, false);
|
||
|
setVector(Vector3D());
|
||
|
}
|
||
|
|
||
|
|
||
|
//! Get the data how it should be displayed
|
||
|
QVariant QVector3DProperty::data (int column, int role) const
|
||
|
{
|
||
|
if(column == DPC_Data && Qt::DisplayRole == role)
|
||
|
{
|
||
|
Vector3D tmpVect = getVector();
|
||
|
return QString("(%1, %2, %3)").arg(QString::number(tmpVect.X),
|
||
|
QString::number(tmpVect.Y),
|
||
|
QString::number(tmpVect.Z));
|
||
|
}
|
||
|
else
|
||
|
return VProperty::data(column, role);
|
||
|
}
|
||
|
|
||
|
//! Returns item flags
|
||
|
Qt::ItemFlags QVector3DProperty::flags(int column) const
|
||
|
{
|
||
|
if(column == DPC_Name || column == DPC_Data)
|
||
|
return Qt::ItemIsEnabled | Qt::ItemIsSelectable;
|
||
|
else
|
||
|
return Qt::NoItemFlags;
|
||
|
}
|
||
|
|
||
|
|
||
|
//! Returns the Vector3d
|
||
|
Vector3D QVector3DProperty::getVector() const
|
||
|
{
|
||
|
Vector3D tmpVect;
|
||
|
|
||
|
if(d_ptr->Children.count() < 3)
|
||
|
return tmpVect;
|
||
|
|
||
|
tmpVect.X = d_ptr->Children.at(0)->getValue().toFloat();
|
||
|
tmpVect.Y = d_ptr->Children.at(1)->getValue().toFloat();
|
||
|
tmpVect.Z = d_ptr->Children.at(2)->getValue().toFloat();
|
||
|
|
||
|
return tmpVect;
|
||
|
}
|
||
|
|
||
|
//! Sets the Vector3d
|
||
|
void QVector3DProperty::setVector(const Vector3D &vect)
|
||
|
{
|
||
|
setVector(vect.X, vect.Y, vect.Z);
|
||
|
}
|
||
|
|
||
|
void QVector3DProperty::setVector(float x, float y, float z)
|
||
|
{
|
||
|
if(d_ptr->Children.count() < 3)
|
||
|
return;
|
||
|
|
||
|
QVariant tmpX(x); tmpX.convert(QVariant::Double);
|
||
|
QVariant tmpY(y); tmpY.convert(QVariant::Double);
|
||
|
QVariant tmpZ(z); tmpZ.convert(QVariant::Double);
|
||
|
d_ptr->Children.at(0)->setValue(tmpX);
|
||
|
d_ptr->Children.at(1)->setValue(tmpY);
|
||
|
d_ptr->Children.at(2)->setValue(tmpZ);
|
||
|
}
|
||
|
|
||
|
QString QVector3DProperty::type() const
|
||
|
{
|
||
|
return "vector3d";
|
||
|
}
|
||
|
|
||
|
VProperty* QVector3DProperty::clone(bool include_children, VProperty* container) const
|
||
|
{
|
||
|
if(!container) {
|
||
|
container = new QVector3DProperty(getName());
|
||
|
|
||
|
if(!include_children) {
|
||
|
QList<VProperty*> tmpChildren = container->getChildren();
|
||
|
foreach(VProperty* tmpChild, tmpChildren) {
|
||
|
container->removeChild(tmpChild);
|
||
|
delete tmpChild;
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
|
||
|
return VProperty::clone(false, container); // Child
|
||
|
}
|
||
|
|
||
|
void QVector3DProperty::setValue(const QVariant &value)
|
||
|
{
|
||
|
QStringList tmpStrings = value.toString().split(",");
|
||
|
if(tmpStrings.count() == 3) {
|
||
|
setVector(tmpStrings[0].toDouble(), tmpStrings[1].toDouble(), tmpStrings[2].toDouble());
|
||
|
}
|
||
|
|
||
|
}
|
||
|
|
||
|
QVariant QVector3DProperty::getValue() const
|
||
|
{
|
||
|
Vector3D tmpVect = getVector();
|
||
|
return QString("%1,%2,%3").arg(QString::number(tmpVect.X), QString::number(tmpVect.Y), QString::number(tmpVect.Z));
|
||
|
}
|