src/polygoncache.h

Mon, 04 Jul 2022 19:53:13 +0300

author
Teemu Piippo <teemu.s.piippo@gmail.com>
date
Mon, 04 Jul 2022 19:53:13 +0300
changeset 333
07e65a4c6611
parent 309
d862721d19a3
child 338
719b909a7d2b
permissions
-rw-r--r--

Experiment to delete the Model class and rely solely on text documents

#pragma once
#include <QTextDocument>
#include "src/basics.h"
#include "src/model.h"
#include "src/gl/common.h"

template<typename T>
struct WithId : T
{
	std::int32_t linenumber;
};

struct PolygonCache
{
	using vector_type = std::vector<WithId<PolygonElement>>;
	vector_type polygons;
	bool needRecache = true;
};

void recacheIfNeeded(
	PolygonCache* cache,
	Model* model,
	class DocumentManager* documents);
PolygonCache* findPolygonCacheForModel(QTextDocument* model, DocumentManager* context);

mercurial