2012-10-31 09:15:06 +01:00
|
|
|
//Added by qt3to4:
|
|
|
|
#include <Q3PtrList>
|
2013-03-15 18:14:06 +01:00
|
|
|
#include <Q3Dict>
|
2009-11-08 16:33:19 +00:00
|
|
|
/***************************************************************************
|
|
|
|
module.h
|
|
|
|
----------
|
|
|
|
begin : Thu Nov 5 2009
|
|
|
|
copyright : (C) 2009 by Stefan Jahn
|
|
|
|
email : stefan@lkcc.org
|
|
|
|
***************************************************************************/
|
|
|
|
|
|
|
|
/***************************************************************************
|
|
|
|
* *
|
|
|
|
* 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 2 of the License, or *
|
|
|
|
* (at your option) any later version. *
|
|
|
|
* *
|
|
|
|
***************************************************************************/
|
|
|
|
|
|
|
|
#ifndef MODULE_H
|
|
|
|
#define MODULE_H
|
|
|
|
|
|
|
|
// function typedefs for circuits and analyses
|
|
|
|
typedef Element * (* pInfoFunc) (QString&, char * &, bool);
|
|
|
|
typedef Component * (* pCreatorFunc) ();
|
|
|
|
|
|
|
|
class Module
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
Module ();
|
|
|
|
~Module ();
|
|
|
|
static void registerModule (QString, pInfoFunc);
|
|
|
|
static void registerComponent (QString, pInfoFunc);
|
|
|
|
static void intoCategory (Module *);
|
|
|
|
static Component * getComponent (QString);
|
|
|
|
|
|
|
|
public:
|
2012-10-31 09:15:06 +01:00
|
|
|
static Q3Dict<Module> Modules;
|
2009-11-08 16:33:19 +00:00
|
|
|
|
|
|
|
public:
|
|
|
|
static void registerModules (void);
|
|
|
|
static void unregisterModules (void);
|
|
|
|
|
|
|
|
public:
|
|
|
|
pInfoFunc info;
|
|
|
|
QString category;
|
|
|
|
};
|
|
|
|
|
|
|
|
class Category
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
Category ();
|
|
|
|
Category (const QString);
|
|
|
|
~Category ();
|
|
|
|
|
|
|
|
public:
|
2012-10-31 09:15:06 +01:00
|
|
|
static Q3PtrList<Category> Categories;
|
2009-11-08 16:33:19 +00:00
|
|
|
|
|
|
|
public:
|
|
|
|
static QStringList getCategories (void);
|
2012-10-31 09:15:06 +01:00
|
|
|
static Q3PtrList<Module> getModules (QString);
|
2009-11-08 16:33:19 +00:00
|
|
|
static int getModulesNr (QString);
|
|
|
|
|
|
|
|
public:
|
|
|
|
QString Name;
|
2012-10-31 09:15:06 +01:00
|
|
|
Q3PtrList<Module> Content;
|
2009-11-08 16:33:19 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif /* __MODULE_H__ */
|