src/ldpaths.h

Mon, 31 Aug 2015 23:36:08 +0300

author
Teemu Piippo <crimsondusk64@gmail.com>
date
Mon, 31 Aug 2015 23:36:08 +0300
changeset 977
dc3ceb65cda7
parent 970
c8aae45afd85
child 1006
a6b462051ae0
permissions
-rw-r--r--

More refactor and removal of g_win uses

#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