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"
|
|
|
|
|
2022-02-13 18:32:19 +01:00
|
|
|
#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
|
|
|
|
2012-10-31 09:15:06 +01:00
|
|
|
Q3PtrList<Element> Connections;
|
2009-09-12 15:59:29 +00:00
|
|
|
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
|