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
|
|
|
|
|
2014-11-05 23:49:38 +08:00
|
|
|
#include <QList>
|
2014-11-03 04:01:47 +08:00
|
|
|
#include <QHash>
|
2014-10-30 21:18:15 +08:00
|
|
|
#include <QMap>
|
2024-05-20 21:46:20 +03:00
|
|
|
#include "component.h"
|
2014-10-30 21:18:15 +08:00
|
|
|
|
2023-10-19 19:39:31 +03:00
|
|
|
class QPixmap;
|
|
|
|
|
2009-11-08 16:33:19 +00:00
|
|
|
// function typedefs for circuits and analyses
|
|
|
|
typedef Element * (* pInfoFunc) (QString&, char * &, bool);
|
2014-03-02 22:50:12 +01:00
|
|
|
typedef Element * (* pInfoVAFunc) (QString&, QString&, bool, QString);
|
2009-11-08 16:33:19 +00:00
|
|
|
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);
|
2009-11-08 16:33:19 +00:00
|
|
|
|
|
|
|
public:
|
2014-11-03 04:01:47 +08:00
|
|
|
static QHash<QString, Module *> Modules;
|
2014-02-26 21:29:09 +01:00
|
|
|
static QMap<QString, QString> vaComponents;
|
2009-11-08 16:33:19 +00:00
|
|
|
|
|
|
|
public:
|
|
|
|
static void registerModules (void);
|
|
|
|
static void unregisterModules (void);
|
|
|
|
|
|
|
|
public:
|
2016-07-17 16:21:41 +02:00
|
|
|
pInfoFunc info = 0;
|
|
|
|
pInfoVAFunc infoVA = 0;
|
2009-11-08 16:33:19 +00:00
|
|
|
QString category;
|
2023-10-19 19:39:31 +03:00
|
|
|
|
|
|
|
QPixmap *icon;
|
2009-11-08 16:33:19 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
class Category
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
Category ();
|
2023-01-15 02:23:02 +03:00
|
|
|
Category (QString);
|
2009-11-08 16:33:19 +00:00
|
|
|
~Category ();
|
|
|
|
|
|
|
|
public:
|
2014-11-05 23:49:38 +08:00
|
|
|
static QList<Category *> Categories;
|
2009-11-08 16:33:19 +00:00
|
|
|
|
|
|
|
public:
|
|
|
|
static QStringList getCategories (void);
|
2014-11-06 00:29:04 +08:00
|
|
|
static QList<Module *> getModules (QString);
|
2009-11-08 16:33:19 +00:00
|
|
|
static int getModulesNr (QString);
|
|
|
|
|
|
|
|
public:
|
|
|
|
QString Name;
|
2014-11-06 00:29:04 +08:00
|
|
|
QList<Module *> Content;
|
2009-11-08 16:33:19 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif /* __MODULE_H__ */
|