Sun, 12 Mar 2017 11:03:44 +0200
More work on library collections
/* * 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" /* * 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: enum FileType { Part, Subpart, Primitive, HighResolutionPrimitive, LowResolutionPrimitive, }; struct FileSpec { QString name; FileType type; }; void addLibrary(QDir dir, QString name); QString find(QString relativePath) const; QString find(const QString& name, FileType type) const; QString find(const FileSpec& spec) const; static const QStringList directoryNames; private: class SubdirectoryNotFoundError : public std::exception {}; struct Library { QDir path; QString name; QDir subdirectory(FileType type) const; static QString subdirectoryName(FileType type); }; QVector<Library> m_libraries; };