Sun, 04 Oct 2015 04:27:38 +0300
Added some pretty pics that I left out of the previous commit.
I seriously need to make a Mercurial hook to warn me if I'm going to commit with unignored, untracked files lying around..
#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; };