src/linetypes/subfilereference.h

Wed, 25 May 2022 20:36:34 +0300

author
Teemu Piippo <teemu@hecknology.net>
date
Wed, 25 May 2022 20:36:34 +0300
changeset 199
6988973515d2
parent 183
97b591813c8b
permissions
-rw-r--r--

Fix pick() picking from weird places on the screen with high DPI scaling

glReadPixels reads data from the frame buffer, which contains data after
high DPI scaling, so any reads to that need to take this scaling into account

#pragma once
#include "compoundobject.h"
#include "invert.h"

class Model;

namespace ldraw
{
	class SubfileReference;
}

class ldraw::SubfileReference : public CompoundObject
{
public:
	SubfileReference() = default;
	SubfileReference(
		const glm::mat4& transformation,
		const QString &referenceName,
		const Color color = ldraw::MAIN_COLOR);
	QVariant getProperty(Property property) const override;
	QString textRepresentation() const override;
	void getPolygons(std::vector<gl::Polygon>& polygons, GetPolygonsContext* context) const override;
	Model* resolve(const ModelId callingModelId, DocumentManager* documents) const;
	Type typeIdentifier() const override;
	QDataStream& serialize(QDataStream& stream) const override;
	QDataStream& deserialize(QDataStream& stream) override;
	QString toLDrawCode() const override;
	QString iconName() const override;
	QString typeName() const override;
	QString referenceName;
protected:
	void setProperty(SetPropertyResult* result, const PropertyKeyValue& pair) override;
};

mercurial