Sat, 28 Jan 2017 17:23:04 +0200
Moved the identity matrix constant into Matrix's namespace
/* * LDForge: LDraw parts authoring CAD * Copyright (C) 2013 - 2016 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 "main.h" // // DocumentLoader // // Loads the given file and parses it to LDObjects. It's a separate class so as to be able to do the work progressively // through the event loop, allowing the program to maintain responsivity during loading. // class DocumentLoader : public QObject { Q_OBJECT public: DocumentLoader (bool onForeground = false, QObject* parent = 0); Q_SLOT void abort(); bool hasAborted(); bool isDone() const; bool isOnForeground() const; const LDObjectList& objects() const; int progress() const; void read (QIODevice* fp); Q_SLOT void start(); int warningCount() const; private: class OpenProgressDialog* m_progressDialog; LDObjectList m_objects; QStringList m_lines; int m_progress; int m_warningCount; bool m_isDone; bool m_hasAborted; bool m_isOnForeground; private slots: void work (int i); signals: void progressUpdate (int progress); void workDone(); };