qucs_s/qucs/module.h

76 lines
2.2 KiB
C
Raw Normal View History

//Added by qt3to4:
#include <Q3PtrList>
2013-03-15 18:14:06 +01:00
#include <Q3Dict>
2014-02-26 21:29:09 +01:00
#include <QMap>
/***************************************************************************
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);
2014-02-26 21:29:09 +01:00
typedef Element * (* pInfoVAFunc) (QString&, char * &, bool, QString);
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);
2014-02-19 22:01:06 +01:00
static void registerDynamicComponents(void);
public:
static Q3Dict<Module> Modules;
2014-02-26 21:29:09 +01:00
static QMap<QString, QString> vaComponents;
public:
static void registerModules (void);
static void unregisterModules (void);
public:
pInfoFunc info;
2014-02-26 21:29:09 +01:00
pInfoVAFunc infoVA;
QString category;
};
class Category
{
public:
Category ();
Category (const QString);
~Category ();
public:
static Q3PtrList<Category> Categories;
public:
static QStringList getCategories (void);
static Q3PtrList<Module> getModules (QString);
static int getModulesNr (QString);
public:
QString Name;
Q3PtrList<Module> Content;
};
#endif /* __MODULE_H__ */