qucs_s/qucs/wirelabel.cpp

203 lines
5.5 KiB
C++
Raw Normal View History

2004-03-28 19:51:04 +00:00
/***************************************************************************
wirelabel.cpp - description
-------------------
begin : Sun February 29 2004
copyright : (C) 2004 by Michael Margraf
2004-06-16 17:41:33 +00:00
email : michael.margraf@alumni.tu-berlin.de
2004-03-28 19:51:04 +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 "wirelabel.h"
#include "wire.h"
2004-05-29 13:05:04 +00:00
#include "main.h"
2004-03-28 19:51:04 +00:00
#include <QMargins>
#include <QString>
2014-11-04 12:48:23 +08:00
#include <QPainter>
2004-03-28 19:51:04 +00:00
2005-04-19 06:33:22 +00:00
WireLabel::WireLabel(const QString& _Name, int _cx, int _cy,
int _x1, int _y1, int _Type)
2004-03-28 19:51:04 +00:00
{
cx = _cx;
cy = _cy;
x1 = _x1;
y1 = _y1;
setName(_Name);
2004-12-19 16:06:24 +00:00
initValue = "";
2004-03-28 19:51:04 +00:00
Type = _Type;
isSelected = false;
isHighlighted = false;
2004-03-28 19:51:04 +00:00
}
WireLabel::~WireLabel()
{
}
// ----------------------------------------------------------------
void WireLabel::paintScheme(QPainter *p)
{
2004-10-10 16:06:55 +00:00
p->drawRect(x1, y1, x2, y2);
2004-03-28 19:51:04 +00:00
2004-04-24 11:52:43 +00:00
// which corner of rectangle should be connected to line ?
if(cx < x1+(x2>>1)) {
2004-10-10 16:06:55 +00:00
if(cy < y1+(y2>>1))
2004-03-28 19:51:04 +00:00
p->drawLine(cx, cy, x1, y1);
2004-10-10 16:06:55 +00:00
else
p->drawLine(cx, cy, x1, y1+y2);
2004-03-28 19:51:04 +00:00
}
else {
2004-10-10 16:06:55 +00:00
if(cy < y1+(y2>>1))
2004-03-28 19:51:04 +00:00
p->drawLine(cx, cy, x1+x2, y1);
2004-10-10 16:06:55 +00:00
else
p->drawLine(cx, cy, x1+x2, y1+y2);
2004-03-28 19:51:04 +00:00
}
}
// ----------------------------------------------------------------
void WireLabel::setCenter(int x_, int y_, bool relative)
{
2004-06-16 17:41:33 +00:00
switch(Type) {
case isMovingLabel:
if(relative) {
x1 += x_; cx += x_;
y1 += y_; cy += y_;
}
else {
x1 = x_; cx = x_;
y1 = y_; cy = y_;
}
break;
case isHMovingLabel:
if(relative) { x1 += x_; cx += x_; }
else { x1 = x_; cx = x_; }
break;
case isVMovingLabel:
if(relative) { y1 += y_; cy += y_; }
else { y1 = y_; cy = y_; }
break;
default:
if(relative) {
x1 += x_; y1 += y_; // moving cx/cy is done by owner (wire, node)
}
else { x1 = x_; y1 = y_; }
2004-03-28 19:51:04 +00:00
}
}
// ----------------------------------------------------------------
bool WireLabel::getSelected(int x, int y)
{
if(x1 <= x)
2004-10-10 16:06:55 +00:00
if(y1 <= y)
2004-03-28 19:51:04 +00:00
if((x1+x2) >= x)
2004-10-10 16:06:55 +00:00
if((y1+y2) >= y)
2004-03-28 19:51:04 +00:00
return true;
return false;
}
void WireLabel::paint(QPainter *p) const {
p->save();
QFont newFont{ p->font() };
newFont.setWeight(isHighlighted ? QFont::Bold : QFont::Normal);
p->setFont(newFont);
p->setPen(QPen{
isHighlighted ? Qt::darkBlue : Qt::black,
isHighlighted ? 3.0 : 1.0
});
QRect text_br;
p->drawText(x1, y1, 1, 1, Qt::TextDontClip, Name, &text_br);
bool right = text_br.right() < cx;
bool bottom = text_br.bottom() < cy;
p->setPen(QPen{initValue.isEmpty() ? Qt::darkMagenta : Qt::red,0});
text_br = text_br.marginsAdded(QMargins{3, 3, 3, 3});
p->drawLine(cx, cy, right ? text_br.right() : text_br.left(), bottom ? text_br.bottom() : text_br.top());
p->drawLine(
right ? text_br.right() : text_br.left(),
bottom ? text_br.bottom() : text_br.top(),
right ? text_br.right() : text_br.left(),
bottom ? text_br.top() : text_br.bottom()
);
p->drawLine(
right ? text_br.right() : text_br.left(),
bottom ? text_br.bottom() : text_br.top(),
right ? text_br.left() : text_br.right(),
bottom ? text_br.bottom() : text_br.top()
);
if (Type != isNodeLabel) {
int start_angle = 0;
switch (Type) {
case isHWireLabel:
start_angle = 16 * (right ? 45 : 225);
break;
case isVWireLabel:
start_angle = 16 * (bottom ? -45 : 135);
break;
default:
assert(false); // shouln't get there
}
constexpr int span_angle = 16 * 270;
p->drawArc(cx-4, cy-4, 8, 8, start_angle, span_angle);
}
if(isSelected)
{
p->setPen(QPen(Qt::darkGray,3));
p->drawRoundedRect(x1-2, y1-2, x2+6, y2+5, 4, 4);
}
p->restore();
}
2004-03-28 19:51:04 +00:00
// ----------------------------------------------------------------
void WireLabel::setName(const QString& Name_)
{
Name = Name_;
// get size of text using the screen-compatible metric
QFontMetrics metrics(QucsSettings.font, 0);
QSize r = metrics.size(0, Name);
x2 = r.width();
y2 = r.height()-2; // remember size of text
2004-03-28 19:51:04 +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.
// Wire labels use the same format like wires, but with length zero.
QString WireLabel::save()
{
2004-06-22 16:49:55 +00:00
QString s("<");
s += QString::number(cx)+" "+QString::number(cy)+" "
+ QString::number(cx)+" "+QString::number(cy)
+ " \""+Name +"\" "
2004-12-19 16:06:24 +00:00
+ QString::number(x1)+" "+QString::number(y1)+" 0 \""
+ initValue+"\">";
2004-03-28 19:51:04 +00:00
return s;
}
void WireLabel::getLabelBounding(int& _xmin, int& _ymin, int& _xmax, int& _ymax)
{
_xmin = std::min(x1,x1+(x2+6));
_xmax = std::max(x1,x1+(x2+6));
_ymin = std::min(y1,y1+(y2+6));
_ymax = std::max(y1,y1+(y2+5));
_ymax = std::max(cy,_ymax);
}