src/ui/objecteditor.h

Sat, 05 Mar 2022 16:57:28 +0200

author
Teemu Piippo <teemu@hecknology.net>
date
Sat, 05 Mar 2022 16:57:28 +0200
changeset 168
24590af32ad6
parent 152
03f8e6d42e13
child 177
f69d53c053df
permissions
-rw-r--r--

Draw tool now renders the winding of the new polygon

#pragma once
#include <QWidget>
#include "../main.h"
#include "../model.h"
#include "polygonobjecteditor.h"

class Document;

class ObjectEditor : public QWidget
{
	Q_OBJECT
public:
	explicit ObjectEditor(Document* document, ldraw::id_t id = ldraw::NULL_ID);
	void setObjectId(ldraw::id_t id);
private:
	Document* const document;
	ldraw::id_t objectId = ldraw::NULL_ID;
	std::optional<PolygonObjectEditor> polygonEditor;
};

mercurial