qucs_s/qucs/node.h

48 lines
1.6 KiB
C
Raw Normal View History

2003-10-15 21:32:36 +00:00
/***************************************************************************
node.h - description
-------------------
begin : Sat Sep 20 2003
copyright : (C) 2003 by Michael Margraf
2004-06-16 17:41:33 +00:00
email : michael.margraf@alumni.tu-berlin.de
2003-10-15 21:32:36 +00:00
***************************************************************************/
/***************************************************************************
* *
* 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"
2004-03-28 19:51:04 +00:00
#include "wirelabel.h"
2003-10-15 21:32:36 +00:00
#include <qpainter.h>
#include <qptrlist.h>
/**
*@author Michael Margraf
*/
2004-03-28 19:51:04 +00:00
class Node : public Element {
public:
Node(int _x, int _y);
~Node();
void paint(QPainter *p);
bool getSelected(int x_, int y_);
void setName(const QString& Name_, int x_=0, int y_=0);
2003-10-15 21:32:36 +00:00
QPtrList<Element> Connections;
2004-03-28 19:51:04 +00:00
WireLabel *Label; // label for node name
QString Name; // node name used by creation of netlist
2004-06-16 17:41:33 +00:00
int State; // remember some things during some operations
2003-10-15 21:32:36 +00:00
};
#endif