Make digital simulation inherit from SimulationComponent

This commit is contained in:
Andrey Kalmykov 2024-06-23 11:33:56 +02:00
parent ff7aee4c5b
commit 1803e9ce66
2 changed files with 3 additions and 17 deletions

View File

@ -15,27 +15,13 @@
* *
***************************************************************************/
#include "digi_sim.h"
#include "main.h"
Digi_Sim::Digi_Sim()
{
Type = isDigitalComponent;
Description = QObject::tr("digital simulation");
QString s = Description;
int a = s.indexOf(" ");
if (a != -1) s[a] = '\n'; // break line before the word "simulation"
Texts.append(new Text(0, 0, s.left(a), Qt::darkBlue, QucsSettings.largeFontSize));
if (a != -1)
Texts.append(new Text(0, 0, s.mid(a+1), Qt::darkBlue, QucsSettings.largeFontSize));
x1 = -10; y1 = -9;
x2 = x1+120; y2 = y1+59;
tx = 0;
ty = y2+1;
initSymbol(Description);
Model = ".Digi";
Name = "Digi";

View File

@ -18,10 +18,10 @@
#ifndef DIGI_SIM_H
#define DIGI_SIM_H
#include "component.h"
#include "simulation.h"
class Digi_Sim : public Component {
class Digi_Sim : public qucs::component::SimulationComponent {
public:
Digi_Sim();
~Digi_Sim();