src/primitives.h

Sat, 15 Jun 2013 19:14:42 +0300

author
Santeri Piippo <crimsondusk64@gmail.com>
date
Sat, 15 Jun 2013 19:14:42 +0300
changeset 292
4779ca562d5e
child 293
a0ed563e14b2
permissions
-rw-r--r--

Moved primitive handling to new code files

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

#ifndef PRIMITIVES_H
#define PRIMITIVES_H

#include "common.h"
#include "types.h"

struct Primitive {
	str name, title;
};

// =============================================================================
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
// =============================================================================
// PrimitiveLister
// 
// Worker object that scans the primitives folder for primitives and
// builds an index of them.
// =============================================================================
class PrimitiveLister : public QObject {
	Q_OBJECT
	
public:
	static void start ();
	
public slots:
	void work ();
	
signals:
	void starting (ulong num);
	void workDone ();
	void update (ulong i);
	
private:
	vector<Primitive> m_prims;
};

extern vector<Primitive> g_Primitives;
extern PrimitiveLister* g_activePrimLister;
extern bool g_primListerMutex;

void loadPrimitives ();

#endif // PRIMITIVES_H

mercurial