qucs_s/qucs/wire.cpp

208 lines
5.4 KiB
C++
Raw Normal View History

2003-10-15 21:32:36 +00:00
/***************************************************************************
wire.cpp - description
-------------------
begin : Wed Sep 3 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 "wire.h"
2004-03-28 19:51:04 +00:00
Wire::Wire(int _x1, int _y1, int _x2, int _y2, Node *n1, Node *n2)
2003-10-15 21:32:36 +00:00
{
2003-10-28 11:44:24 +00:00
cx = 0;
cy = 0;
2003-10-15 21:32:36 +00:00
x1 = _x1;
y1 = _y1;
x2 = _x2;
y2 = _y2;
Port1 = n1;
Port2 = n2;
2004-03-28 19:51:04 +00:00
Label = 0;
2003-10-15 21:32:36 +00:00
2003-10-28 11:44:24 +00:00
Type = isWire;
2003-10-15 21:32:36 +00:00
isSelected = false;
}
Wire::~Wire()
{
}
2003-11-11 07:33:56 +00:00
// ----------------------------------------------------------------
void Wire::rotate()
{
int xm, ym, tmp;
xm = (x1+x2) >> 1;
ym = (y1+y2) >> 1;
tmp = x1;
x1 = xm + y1 - ym;
y1 = ym - tmp + xm;
tmp = x2;
x2 = xm + y2 - ym;
y2 = ym - tmp + xm;
2004-04-04 15:56:10 +00:00
if(Label) {
tmp = Label->cx;
Label->cx = xm + Label->cy - ym;
Label->cy = ym - tmp + xm;
if(Label->Type == isHWireLabel) Label->Type = isVWireLabel;
else Label->Type = isHWireLabel;
}
2003-10-28 11:44:24 +00:00
}
// ----------------------------------------------------------------
void Wire::setCenter(int x, int y, bool relative)
{
if(relative) {
2004-03-28 19:51:04 +00:00
x1 += x; x2 += x;
y1 += y; y2 += y;
2004-10-02 16:21:06 +00:00
// if(Label) Label->setCenter(x, y, true);
2003-10-28 11:44:24 +00:00
}
else {
x1 = x; x2 = x;
y1 = y; y2 = y;
}
}
2004-08-01 18:49:01 +00:00
// ----------------------------------------------------------------
void Wire::getCenter(int& x, int& y)
{
x = (x1+x2) >> 1;
y = (y1+y2) >> 1;
}
2004-03-28 19:51:04 +00:00
// ----------------------------------------------------------------
// Lie x/y on wire ? 5 is the precision the coordinates have to fit.
bool Wire::getSelected(int x_, int y_)
{
if(x1-5 <= x_) if(x2+5 >= x_) if(y1-5 <= y_) if(y2+5 >= y_)
return true;
return false;
}
2004-09-25 12:10:08 +00:00
// ----------------------------------------------------------------
void Wire::paintScheme(QPainter *p)
{
p->drawLine(x1, y1, x2, y2);
// if(Label)
// if((Label->Type == isHWireLabel) || (Label->Type == isHWireLabel))
// if(Label->Type == isHWireLabel)
// Label->paintScheme(p);
}
2003-10-15 21:32:36 +00:00
// ----------------------------------------------------------------
2004-10-10 16:06:55 +00:00
void Wire::paint(ViewPainter *p)
2003-10-15 21:32:36 +00:00
{
if(isSelected) {
2004-10-10 16:06:55 +00:00
p->Painter->setPen(QPen(QPen::darkGray,6));
2003-10-15 21:32:36 +00:00
p->drawLine(x1, y1, x2, y2);
2004-10-10 16:06:55 +00:00
p->Painter->setPen(QPen(QPen::lightGray,2));
2003-10-15 21:32:36 +00:00
p->drawLine(x1, y1, x2, y2);
}
else {
2004-10-10 16:06:55 +00:00
p->Painter->setPen(QPen(QPen::darkBlue,2));
2003-10-15 21:32:36 +00:00
p->drawLine(x1, y1, x2, y2);
}
}
// ----------------------------------------------------------------
bool Wire::isHorizontal()
{
return (y1 == y2);
}
2004-02-21 18:38:50 +00:00
// ----------------------------------------------------------------
2004-03-28 19:51:04 +00:00
void Wire::setName(const QString& Name_, int delta_, int x_, int y_)
2004-02-21 18:38:50 +00:00
{
2004-03-28 19:51:04 +00:00
if(Name_.isEmpty()) {
if(Label) delete Label;
Label = 0;
return;
}
if(!Label) {
2004-05-22 12:33:45 +00:00
if(isHorizontal())
Label = new WireLabel(Name_, x1+delta_, y1, x_, y_, isHWireLabel);
else
Label = new WireLabel(Name_, x1, y1+delta_, x_, y_, isVWireLabel);
Label->pNode = 0;
Label->pWire = this;
2004-03-28 19:51:04 +00:00
}
else Label->setName(Name_);
2004-02-21 18:38:50 +00:00
}
2003-10-15 21:32:36 +00:00
// ----------------------------------------------------------------
// Converts all necessary data of the wire into a string. This can be used to
// save it to an ASCII file or to transport it via the clipboard.
QString Wire::save()
{
2004-06-22 16:49:55 +00:00
QString s = "<"+QString::number(x1)+" "+QString::number(y1);
2003-11-27 13:34:25 +00:00
s += " "+QString::number(x2)+" "+QString::number(y2);
2004-03-28 19:51:04 +00:00
if(Label) {
s += " \""+Label->Name +"\" ";
s += QString::number(Label->x1)+" "+QString::number(Label->y1)+" ";
s += QString::number(Label->cx-x1 + Label->cy-y1)+">";
}
else { s += " \"\" 0 0 0>"; }
2003-10-15 21:32:36 +00:00
return s;
}
// ----------------------------------------------------------------
// This is the counterpart to Wire::save.
bool Wire::load(const QString& _s)
{
bool ok;
QString s = _s;
if(s.at(0) != '<') return false;
if(s.at(s.length()-1) != '>') return false;
s = s.mid(1, s.length()-2); // cut off start and end character
2004-03-28 19:51:04 +00:00
2003-10-15 21:32:36 +00:00
QString n;
n = s.section(' ',0,0); // x1
x1 = n.toInt(&ok);
if(!ok) return false;
n = s.section(' ',1,1); // y1
y1 = n.toInt(&ok);
if(!ok) return false;
n = s.section(' ',2,2); // x2
x2 = n.toInt(&ok);
if(!ok) return false;
n = s.section(' ',3,3); // y2
y2 = n.toInt(&ok);
if(!ok) return false;
2004-03-28 19:51:04 +00:00
n = s.section('"',1,1);
if(!n.isEmpty()) { // is wire labeled ?
int nx = s.section(' ',5,5).toInt(&ok); // x coordinate
if(!ok) return false;
2003-10-15 21:32:36 +00:00
2004-03-28 19:51:04 +00:00
int ny = s.section(' ',6,6).toInt(&ok); // y coordinate
if(!ok) return false;
2003-10-15 21:32:36 +00:00
2004-03-28 19:51:04 +00:00
int delta = s.section(' ',7,7).toInt(&ok); // delta for x/y root coordinate
if(!ok) return false;
2003-10-15 21:32:36 +00:00
2004-03-28 19:51:04 +00:00
setName(n, delta, nx, ny); // Wire Label
}
2003-10-15 21:32:36 +00:00
return true;
}