src/documentloader.h

Sun, 06 Sep 2015 15:13:33 +0300

author
Teemu Piippo <crimsondusk64@gmail.com>
date
Sun, 06 Sep 2015 15:13:33 +0300
changeset 989
1cd1d082a540
parent 980
4a95c6b06ebe
child 1014
f0a8ecb6a357
child 1217
314e12e23c3a
permissions
-rw-r--r--

Sort LDFORGE_HEADERS in CMakeLists.txt

/*
 *  LDForge: LDraw parts authoring CAD
 *  Copyright (C) 2013 - 2015 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();
};

mercurial