qucs_s/qucs/node.h

44 lines
1.5 KiB
C
Raw Normal View History

2003-10-15 21:32:36 +00:00
/***************************************************************************
2005-08-15 06:04:52 +00:00
node.h
--------
2003-10-15 21:32:36 +00:00
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"
#include "qt3_compat/qt_compat.h"
2003-10-15 21:32:36 +00:00
2004-11-06 16:29:51 +00:00
class ViewPainter;
2003-10-15 21:32:36 +00:00
2005-08-15 06:04:52 +00:00
class Node : public Conductor {
2004-03-28 19:51:04 +00:00
public:
2004-10-10 16:06:55 +00:00
Node(int, int);
2005-08-15 06:04:52 +00:00
~Node();
2004-03-28 19:51:04 +00:00
2004-10-10 16:06:55 +00:00
void paint(ViewPainter*);
bool getSelected(int, int);
2004-12-19 16:06:24 +00:00
void setName(const QString&, const QString&, int x_=0, int y_=0);
2003-10-15 21:32:36 +00:00
Q3PtrList<Element> Connections;
QString Name; // node name used by creation of netlist
QString DType; // type of node (used by digital files)
int State; // remember some things during some operations
2003-10-15 21:32:36 +00:00
};
#endif