src/documentloader.h

Thu, 23 Feb 2017 20:06:22 +0200

author
Teemu Piippo <teemu@hecknology.net>
date
Thu, 23 Feb 2017 20:06:22 +0200
changeset 1158
35ceb74fe53e
parent 1073
a0a0d581309b
child 1159
6ad8cdcd88d9
permissions
-rw-r--r--

Made the GL renderer recieve information of object deletion via signals.

/*
 *  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 "main.h"
#include "model.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 (Model* model, bool onForeground = false, QObject* parent = 0);

	Q_SLOT void abort();
	bool hasAborted();
	bool isDone() const;
	bool isOnForeground() const;
	const QVector<LDObject*>& objects() const;
	int progress() const;
	void read (QIODevice* fp);
	Q_SLOT void start();
	int warningCount() const;

private:
	class OpenProgressDialog* m_progressDialog;
	Model* _model;
	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();
};

mercurial