Mon, 27 Mar 2017 14:56:05 +0300
LibraryCollection now derives from QObject and QVector<Library>
/* * LDForge: LDraw parts authoring CAD * Copyright (C) 2013 - 2017 Teemu Piippo * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ #pragma once #include <QDir> #include "main.h" struct Library { class SubdirectoryNotFoundError : public std::exception {}; enum FileType { Part, Subpart, Primitive, HighResolutionPrimitive, LowResolutionPrimitive, }; QDir path; QString name; QDir subdirectory(FileType type) const; static QString subdirectoryName(FileType type); }; /* * Models a collection of libraries. A library is a folder containing directories named "p" and * "parts" that contains part and subpart files. */ class LibraryCollection : public QObject, private QVector<Library> { Q_OBJECT using Super = QVector<Library>; public: struct FileSpec { QString name; Library::FileType type; }; void addLibrary(QDir dir, QString name); QString find(QString relativePath) const; QString find(const QString& name, Library::FileType type) const; QString find(const FileSpec& spec) const; static const QStringList directoryNames; };