2003-10-15 21:32:36 +00:00
|
|
|
/***************************************************************************
|
|
|
|
node.cpp - 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. *
|
|
|
|
* *
|
|
|
|
***************************************************************************/
|
|
|
|
#include "node.h"
|
|
|
|
|
2004-11-06 16:29:51 +00:00
|
|
|
#include "wirelabel.h"
|
|
|
|
|
2014-11-04 12:48:23 +08:00
|
|
|
#include <QPainter>
|
|
|
|
|
2024-07-16 18:56:55 +02:00
|
|
|
Node::Node(int x, int y)
|
2003-10-15 21:32:36 +00:00
|
|
|
{
|
2004-03-28 19:51:04 +00:00
|
|
|
Label = 0;
|
|
|
|
Type = isNode;
|
2004-06-16 17:41:33 +00:00
|
|
|
State = 0;
|
2009-09-12 15:59:29 +00:00
|
|
|
DType = "";
|
2004-03-28 19:51:04 +00:00
|
|
|
|
2024-07-16 18:56:55 +02:00
|
|
|
cx = x;
|
|
|
|
cy = y;
|
2003-10-15 21:32:36 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
Node::~Node()
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2024-05-05 13:35:52 +03:00
|
|
|
void Node::paint(QPainter* painter) const {
|
|
|
|
painter->save();
|
|
|
|
|
2024-07-16 18:56:55 +02:00
|
|
|
switch(connections.size()) {
|
2024-05-05 13:35:52 +03:00
|
|
|
case 1:
|
|
|
|
if (Label) {
|
|
|
|
painter->fillRect(cx-2, cy-2, 4, 4, Qt::darkBlue); // open but labeled
|
|
|
|
} else {
|
|
|
|
painter->setPen(QPen(Qt::red,1)); // node is open
|
|
|
|
painter->drawEllipse(cx-4, cy-4, 8, 8);
|
|
|
|
}
|
|
|
|
painter->restore();
|
|
|
|
return;
|
|
|
|
|
|
|
|
case 2:
|
2024-07-16 18:56:55 +02:00
|
|
|
if (connections.front()->Type == isWire && connections.back()->Type == isWire) {
|
2024-05-05 13:35:52 +03:00
|
|
|
painter->restore();
|
|
|
|
return;
|
|
|
|
}
|
2024-07-07 21:25:11 +02:00
|
|
|
painter->fillRect(cx-2, cy-2, 4, 4, Qt::darkBlue);
|
2024-05-05 13:35:52 +03:00
|
|
|
break;
|
|
|
|
|
|
|
|
default:
|
|
|
|
painter->setBrush(Qt::darkBlue); // more than 2 connections
|
|
|
|
painter->setPen(QPen(Qt::darkBlue,1));
|
|
|
|
painter->drawEllipse(cx-3, cy-3, 6, 6);
|
|
|
|
}
|
|
|
|
painter->restore();
|
|
|
|
}
|
|
|
|
|
2024-07-16 18:56:55 +02:00
|
|
|
bool Node::getSelected(int x, int y)
|
2004-03-28 19:51:04 +00:00
|
|
|
{
|
2024-07-16 18:56:55 +02:00
|
|
|
return cx - 5 <= x && x <= cx + 5 && cy - 5 <= y && y <= cy + 5;
|
2004-03-28 19:51:04 +00:00
|
|
|
}
|
|
|
|
|
2024-07-16 18:56:55 +02:00
|
|
|
void Node::setName(const QString& name, const QString& value, int x, int y)
|
2004-03-28 19:51:04 +00:00
|
|
|
{
|
2024-07-16 18:56:55 +02:00
|
|
|
if (name.isEmpty() && value.isEmpty()) {
|
|
|
|
if (Label) {
|
|
|
|
delete Label;
|
|
|
|
Label = nullptr;
|
|
|
|
}
|
2004-03-28 19:51:04 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2024-07-16 18:56:55 +02:00
|
|
|
if (!Label) {
|
|
|
|
Label = new WireLabel(name, cx, cy, x, y, isNodeLabel);
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
Label->setName(name);
|
|
|
|
}
|
2005-08-15 06:04:52 +00:00
|
|
|
Label->pOwner = this;
|
2024-07-16 18:56:55 +02:00
|
|
|
Label->initValue = value;
|
2003-10-15 21:32:36 +00:00
|
|
|
}
|
2024-07-16 18:56:55 +02:00
|
|
|
|
|
|
|
Element* Node::other_than(Element* elem) const
|
|
|
|
{
|
|
|
|
auto other = std::find_if_not(connections.begin(), connections.end(), [elem](auto o){return o == elem;}
|
|
|
|
);
|
|
|
|
|
|
|
|
return other == connections.end() ? nullptr : *other;
|
|
|
|
}
|