mirror of
https://github.com/ra3xdh/qucs_s
synced 2025-03-28 21:13:26 +00:00

* schematic_file.cpp (createSubNetlistPlain): Adjusting type specifiers of VHDL subcircuits according to arbitrary signal types in VHDL files. 2009-03-10 Stefan Jahn <stefan@lkcc.org> * vhdlfile.cpp (loadFile): Extracting signal types and passing them to port specifications.
46 lines
1.5 KiB
C++
46 lines
1.5 KiB
C++
/***************************************************************************
|
|
node.h
|
|
--------
|
|
begin : Sat Sep 20 2003
|
|
copyright : (C) 2003 by Michael Margraf
|
|
email : michael.margraf@alumni.tu-berlin.de
|
|
***************************************************************************/
|
|
|
|
/***************************************************************************
|
|
* *
|
|
* 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 NODE_H
|
|
#define NODE_H
|
|
|
|
#include "element.h"
|
|
|
|
#include <qptrlist.h>
|
|
|
|
class ViewPainter;
|
|
class WireLabel;
|
|
class QPainter;
|
|
|
|
|
|
class Node : public Conductor {
|
|
public:
|
|
Node(int, int);
|
|
~Node();
|
|
|
|
void paint(ViewPainter*);
|
|
bool getSelected(int, int);
|
|
void setName(const QString&, const QString&, int x_=0, int y_=0);
|
|
|
|
QPtrList<Element> Connections;
|
|
QString Name; // node name used by creation of netlist
|
|
QString Type; // type of node (used by digital files)
|
|
int State; // remember some things during some operations
|
|
};
|
|
|
|
#endif
|