src/polygoncache.h

Thu, 14 Jul 2022 16:47:59 +0300

author
Teemu Piippo <teemu.s.piippo@gmail.com>
date
Thu, 14 Jul 2022 16:47:59 +0300
changeset 334
083b0d8e220a
parent 333
07e65a4c6611
child 338
719b909a7d2b
permissions
-rw-r--r--

Convert text model to CR+LF when saving

#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