src/linetypes/comment.cpp

Sun, 24 Oct 2021 11:33:32 +0300

author
Teemu Piippo <teemu@hecknology.net>
date
Sun, 24 Oct 2021 11:33:32 +0300
changeset 147
37f936073cac
parent 141
185eb297dc1e
permissions
-rw-r--r--

update

#include <QFont>
#include "comment.h"

QFont ldraw::Comment::textRepresentationFont() const
{
	QFont font;
	font.setItalic(true);
	return font;
}

ldraw::Object::Type ldraw::Comment::typeIdentifier() const
{
	return Type::Comment;
}

QString ldraw::Comment::toLDrawCode() const
{
	return ("0 // " + this->storedText).trimmed();
}

mercurial