src/ui/objecteditor.cpp

Sun, 29 Aug 2021 22:14:42 +0300

author
Teemu Piippo <teemu@hecknology.net>
date
Sun, 29 Aug 2021 22:14:42 +0300
changeset 127
f64bfb7f5d26
parent 81
62373840e33a
child 152
03f8e6d42e13
permissions
-rw-r--r--

added a simple matrix transformation tool

#include <QVBoxLayout>
#include "objecteditor.h"

ObjectEditor::ObjectEditor(Model* model, const ldraw::id_t id, QWidget *parent) :
	QWidget{parent},
	model{model}
{
	this->setObjectId(id);
	this->setLayout(new QVBoxLayout{this});
}

void ObjectEditor::setObjectId(const ldraw::id_t id)
{
	this->objectId = id;
	const ldraw::Object* object = this->model->get(id);
	if (object != nullptr and object->numPoints() > 0)
	{
		if (not this->polygonEditor.has_value())
		{
			this->polygonEditor.emplace(this->model, id);
			this->layout()->addWidget(&*this->polygonEditor);
		}
		else
		{
			this->polygonEditor->setObjectId(id);
		}
	}
	else
	{
		this->polygonEditor.reset();
	}
}

mercurial