2003-10-15 21:32:36 +00:00
|
|
|
/***************************************************************************
|
|
|
|
element.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 "element.h"
|
2024-05-05 09:10:14 +03:00
|
|
|
#include "misc.h"
|
|
|
|
|
2024-06-20 23:06:11 +02:00
|
|
|
#include <cmath>
|
2024-05-31 17:55:25 +03:00
|
|
|
#include <QPainter>
|
|
|
|
|
2024-05-05 09:10:14 +03:00
|
|
|
namespace qucs {
|
|
|
|
|
|
|
|
void Line::draw(QPainter* painter) const {
|
2024-06-04 09:14:59 +03:00
|
|
|
painter->drawLine(QPointF{x1, y1}, QPointF{x2, y2});
|
2024-05-05 09:10:14 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
void Arc::draw(QPainter* painter) const {
|
2024-06-04 09:14:59 +03:00
|
|
|
painter->drawArc(QRectF{x, y, w, h}, angle, arclen);
|
2024-05-05 09:10:14 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
void Rect::draw(QPainter* painter) const {
|
2024-06-04 09:14:59 +03:00
|
|
|
painter->drawRect(QRectF{x, y, w, h});
|
2024-05-05 09:10:14 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
void Ellips::draw(QPainter* painter) const {
|
2024-06-04 09:14:59 +03:00
|
|
|
painter->drawEllipse(QRectF{x, y, w, h});
|
2024-05-05 09:10:14 +03:00
|
|
|
}
|
|
|
|
|
2024-06-04 19:35:17 +03:00
|
|
|
void Polyline::draw(QPainter* painter) const {
|
|
|
|
painter->drawPolyline(points.data(), points.size());
|
|
|
|
}
|
|
|
|
|
2024-05-05 09:10:14 +03:00
|
|
|
} // namespace qucs
|
|
|
|
|
|
|
|
void Text::draw(QPainter *painter) const {
|
|
|
|
draw(painter, nullptr);
|
|
|
|
}
|
|
|
|
|
2024-06-04 09:14:59 +03:00
|
|
|
void Text::draw(QPainter *painter, QRectF* br) const {
|
2024-05-05 09:10:14 +03:00
|
|
|
painter->save();
|
|
|
|
|
|
|
|
painter->translate(x, y);
|
|
|
|
painter->rotate(angle());
|
|
|
|
|
|
|
|
QFont newFont = painter->font();
|
|
|
|
newFont.setWeight(QFont::Light);
|
|
|
|
newFont.setOverline(over);
|
|
|
|
newFont.setUnderline(under);
|
|
|
|
newFont.setPixelSize(Size);
|
|
|
|
painter->setFont(newFont);
|
|
|
|
|
|
|
|
misc::draw_richtext(painter, 0, 0, s, br);
|
|
|
|
if (br) {
|
|
|
|
br->moveTo(x, y);
|
|
|
|
}
|
|
|
|
|
|
|
|
painter->restore();
|
|
|
|
}
|
|
|
|
|
|
|
|
double Text::angle() const {
|
2024-06-20 22:02:11 +02:00
|
|
|
// Historically Text uses mSin and mCos values to describe
|
|
|
|
// at what angle the text is rotated.
|
2024-05-05 09:10:14 +03:00
|
|
|
//
|
2024-06-20 22:02:11 +02:00
|
|
|
// It employed some clever technique to draw the text rotated
|
|
|
|
// by applying "skew" transformations to QPainter and using mCos
|
|
|
|
// and mSin as skew factors, but later the whole drawing routine
|
|
|
|
// was refactored and it switched to using QPainter::rotate() and
|
|
|
|
// degrees to describe the rotation angle.
|
2024-05-05 09:10:14 +03:00
|
|
|
//
|
2024-06-20 22:02:11 +02:00
|
|
|
// Many other parts of the codebase still depend on mCos and mSin,
|
|
|
|
// for example rotating and mirroring of a component and more than
|
|
|
|
// 200 component constructors. It is a piece of work to get rid
|
|
|
|
// of mCos and mSin completely, so they're kept as is and their
|
|
|
|
// "degrees" equivalent is calculated when the text needs to be drawn.
|
|
|
|
|
2024-06-21 08:25:26 +02:00
|
|
|
const double radians = std::atan2(mSin, mCos);
|
|
|
|
const double degrees = (radians * 180.0) / 3.14159265 /* Pi */;
|
|
|
|
|
|
|
|
// QPainter::rotate() rotates *clockwise*, so if you want a text
|
|
|
|
// to have rotation angle of 45° (towards up-right direction),
|
2024-06-20 22:02:11 +02:00
|
|
|
// then the -45° has to be passed to QPainter::rotate().
|
|
|
|
//
|
|
|
|
// QPainter::rotate() is called in Text::draw
|
2024-06-21 08:25:26 +02:00
|
|
|
return -degrees;
|
2024-05-05 09:10:14 +03:00
|
|
|
}
|
|
|
|
|
2024-07-14 10:12:58 +02:00
|
|
|
// x and y are relative to component's x and y
|
|
|
|
void Property::paint(int x, int y, QPainter* p)
|
|
|
|
{
|
|
|
|
p->drawText(x, y, 0, 0, Qt::TextDontClip, Name + "=" + Value, &br);
|
|
|
|
}
|
2014-10-30 21:18:15 +08:00
|
|
|
|
2003-10-15 21:32:36 +00:00
|
|
|
Element::Element()
|
|
|
|
{
|
2014-01-31 16:59:40 +00:00
|
|
|
Type = isDummyElement;
|
2007-05-06 14:37:51 +00:00
|
|
|
isSelected = false;
|
|
|
|
cx = cy = x1 = y1 = x2 = y2 = 0;
|
2003-10-15 21:32:36 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
Element::~Element()
|
|
|
|
{
|
|
|
|
}
|
2003-10-28 11:44:24 +00:00
|
|
|
|
2012-12-05 10:12:11 +01:00
|
|
|
void Element::paintScheme(Schematic *)
|
2003-10-28 11:44:24 +00:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2014-10-28 14:07:13 +08:00
|
|
|
void Element::paintScheme(QPainter *)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2003-10-28 11:44:24 +00:00
|
|
|
void Element::setCenter(int, int, bool)
|
|
|
|
{
|
|
|
|
}
|
2004-08-01 18:49:01 +00:00
|
|
|
|
|
|
|
void Element::getCenter(int&, int&)
|
|
|
|
{
|
|
|
|
}
|