src/modeleditcontext.h

Thu, 27 Feb 2020 14:38:48 +0200

author
Teemu Piippo <teemu@hecknology.net>
date
Thu, 27 Feb 2020 14:38:48 +0200
changeset 59
60650929dc82
parent 35
98906a94732f
child 73
97df974b5ed5
permissions
-rw-r--r--

fixed testing of whether screenToModelCoordinates's result value is behind the camera

/*
 *  LDForge: LDraw parts authoring CAD
 *  Copyright (C) 2013 - 2020 Teemu Piippo
 *
 *  This program is free software: you can redistribute it and/or modify
 *  it under the terms of the GNU General Public License as published by
 *  the Free Software Foundation, either version 3 of the License, or
 *  (at your option) any later version.
 *
 *  This program is distributed in the hope that it will be useful,
 *  but WITHOUT ANY WARRANTY; without even the implied warranty of
 *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 *  GNU General Public License for more details.
 *
 *  You should have received a copy of the GNU General Public License
 *  along with this program.  If not, see <http://www.gnu.org/licenses/>.
 */

#pragma once
#include "model.h"
#include "linetypes/object.h"

class Model::EditContext
{
public:
	template<typename T, typename... Args>
	ldraw::Id append(Args&&... args);
	ldraw::Id append(std::unique_ptr<ldraw::Object>&& object);
	template<typename T, typename... Args>
	ldraw::Id insert(int position, Args&&... args);
	void setObjectProperty(
		ldraw::Object* object,
		ldraw::Property property,
		const QVariant &value);
	void invertObject(ldraw::Id id);
private:
	EditContext(Model& model);
	friend class Model;
	Model& model;
};

template<typename T, typename... Args>
ldraw::Id Model::EditContext::append(Args&&... args)
{
	return this->model.append<T>(args...);
}

template<typename T, typename... Args>
ldraw::Id Model::EditContext::insert(int position, Args&&... args)
{
	return this->model.insert<T>(position, args...);
}

mercurial