src/ldpaths.h

Sun, 04 Oct 2015 04:26:11 +0300

author
Teemu Piippo <crimsondusk64@gmail.com>
date
Sun, 04 Oct 2015 04:26:11 +0300
changeset 1000
c064cc048f14
parent 970
c8aae45afd85
child 1006
a6b462051ae0
permissions
-rw-r--r--

Begin work on Bézier curve support. They can be drawn but don't render in 3D and they load as comments.

#pragma once
#include "main.h"

class QDir;
class MainWindow;

class LDPaths : public QObject, public HierarchyElement
{
	Q_OBJECT

public:
	LDPaths (QObject* parent);
	void checkPaths();
	bool isValid (const class QDir& path) const;

	static QDir& baseDir();
	static QString& ldConfigPath();
	static QDir& primitivesDir();
	static QDir& partsDir();

public slots:
	bool configurePaths (QString path);

private:
	mutable QString m_error;
	class LDrawPathDialog* m_dialog;
};

mercurial