mirror of
https://github.com/ra3xdh/qucs_s
synced 2025-03-28 21:13:26 +00:00
Make digital simulation inherit from SimulationComponent
This commit is contained in:
parent
ff7aee4c5b
commit
1803e9ce66
@ -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";
|
||||
|
||||
|
@ -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();
|
||||
|
Loading…
x
Reference in New Issue
Block a user