mirror of
https://github.com/ra3xdh/qucs_s
synced 2025-03-28 21:13:26 +00:00
81 lines
2.2 KiB
C++
81 lines
2.2 KiB
C++
/***************************************************************************
|
|
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
|
|
|
|
#include <QList>
|
|
#include <QHash>
|
|
#include <QMap>
|
|
#include "component.h"
|
|
|
|
class QPixmap;
|
|
|
|
// function typedefs for circuits and analyses
|
|
typedef Element * (* pInfoFunc) (QString&, char * &, bool);
|
|
typedef Element * (* pInfoVAFunc) (QString&, QString&, 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);
|
|
static void registerDynamicComponents(void);
|
|
|
|
public:
|
|
static QHash<QString, Module *> Modules;
|
|
static QMap<QString, QString> vaComponents;
|
|
|
|
public:
|
|
static void registerModules (void);
|
|
static void unregisterModules (void);
|
|
|
|
public:
|
|
pInfoFunc info = 0;
|
|
pInfoVAFunc infoVA = 0;
|
|
QString category;
|
|
|
|
QPixmap *icon;
|
|
};
|
|
|
|
class Category
|
|
{
|
|
public:
|
|
Category ();
|
|
Category (QString);
|
|
~Category ();
|
|
|
|
public:
|
|
static QList<Category *> Categories;
|
|
|
|
public:
|
|
static QStringList getCategories (void);
|
|
static QList<Module *> getModules (QString);
|
|
static int getModulesNr (QString);
|
|
|
|
public:
|
|
QString Name;
|
|
QList<Module *> Content;
|
|
};
|
|
|
|
#endif /* __MODULE_H__ */
|