2007-12-01 10:47:15 +00:00
|
|
|
/*
|
2020-06-15 17:42:37 +02:00
|
|
|
Copyright 2006-2020 The QElectroTech Team
|
2007-12-01 10:47:15 +00:00
|
|
|
This file is part of QElectroTech.
|
|
|
|
|
|
|
|
QElectroTech 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.
|
|
|
|
|
|
|
|
QElectroTech is distributed in the hope that it will be useful,
|
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
GNU General Public License for more details.
|
|
|
|
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
|
|
along with QElectroTech. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*/
|
2007-06-30 17:41:07 +00:00
|
|
|
#include "partterminal.h"
|
|
|
|
#include "terminal.h"
|
|
|
|
|
2007-12-05 21:16:01 +00:00
|
|
|
/**
|
|
|
|
Constructeur
|
|
|
|
@param editor L'editeur d'element concerne
|
|
|
|
@param parent Le QGraphicsItem parent de cette borne
|
|
|
|
@param scene La scene sur laquelle figure cette borne
|
|
|
|
*/
|
2015-02-09 08:57:40 +00:00
|
|
|
PartTerminal::PartTerminal(QETElementEditor *editor, QGraphicsItem *parent) :
|
2020-05-25 22:17:17 +02:00
|
|
|
CustomElementGraphicPart(editor, parent)
|
2007-06-30 17:41:07 +00:00
|
|
|
{
|
2020-05-25 22:17:17 +02:00
|
|
|
d = new TerminalData(this);
|
|
|
|
d->m_orientation = Qet::North;
|
|
|
|
d->m_uuid = QUuid::createUuid(); // if part is loaded this uuid will be overwritten, but being sure that terminal has a uuid
|
2007-06-30 17:41:07 +00:00
|
|
|
updateSecondPoint();
|
|
|
|
setZValue(100000);
|
|
|
|
}
|
|
|
|
|
2007-12-05 21:16:01 +00:00
|
|
|
/// Destructeur
|
2007-06-30 17:41:07 +00:00
|
|
|
PartTerminal::~PartTerminal() {
|
2010-02-18 00:42:41 +00:00
|
|
|
}
|
2007-06-30 17:41:07 +00:00
|
|
|
|
2007-12-05 21:16:01 +00:00
|
|
|
/**
|
|
|
|
Importe les proprietes d'une borne depuis un element XML
|
|
|
|
@param xml_elmt Element XML a lire
|
|
|
|
*/
|
2007-06-30 17:41:07 +00:00
|
|
|
void PartTerminal::fromXml(const QDomElement &xml_elmt) {
|
2020-05-25 22:17:17 +02:00
|
|
|
d->fromXml(xml_elmt);
|
|
|
|
setPos(d->m_pos);
|
2007-06-30 17:41:07 +00:00
|
|
|
updateSecondPoint();
|
|
|
|
}
|
|
|
|
|
2007-12-05 21:16:01 +00:00
|
|
|
/**
|
|
|
|
Exporte la borne en XML
|
|
|
|
@param xml_document Document XML a utiliser pour creer l'element XML
|
|
|
|
@return un element XML decrivant la borne
|
|
|
|
*/
|
2007-06-30 17:41:07 +00:00
|
|
|
const QDomElement PartTerminal::toXml(QDomDocument &xml_document) const {
|
2020-05-25 22:17:17 +02:00
|
|
|
return d->toXml(xml_document);
|
2007-06-30 17:41:07 +00:00
|
|
|
}
|
|
|
|
|
2007-12-05 21:16:01 +00:00
|
|
|
/**
|
|
|
|
Dessine la borne
|
2009-11-22 16:12:22 +00:00
|
|
|
@param p QPainter a utiliser pour rendre le dessin
|
2007-12-05 21:16:01 +00:00
|
|
|
@param options Options pour affiner le rendu
|
|
|
|
@param widget Widget sur lequel le rendu est effectue
|
|
|
|
*/
|
2009-11-22 16:12:22 +00:00
|
|
|
void PartTerminal::paint(QPainter *p, const QStyleOptionGraphicsItem *options, QWidget *widget) {
|
|
|
|
Q_UNUSED(widget);
|
2007-06-30 17:41:07 +00:00
|
|
|
p -> save();
|
|
|
|
|
|
|
|
// annulation des renderhints
|
|
|
|
p -> setRenderHint(QPainter::Antialiasing, false);
|
|
|
|
p -> setRenderHint(QPainter::TextAntialiasing, false);
|
|
|
|
p -> setRenderHint(QPainter::SmoothPixmapTransform, false);
|
|
|
|
|
|
|
|
QPen t;
|
|
|
|
t.setWidthF(1.0);
|
2009-04-18 18:54:25 +00:00
|
|
|
t.setCosmetic(options && options -> levelOfDetail < 1.0);
|
2007-06-30 17:41:07 +00:00
|
|
|
|
|
|
|
// dessin de la borne en rouge
|
2010-04-18 20:48:15 +00:00
|
|
|
t.setColor(isSelected() ? Terminal::neutralColor : Qt::red);
|
2007-06-30 17:41:07 +00:00
|
|
|
p -> setPen(t);
|
2020-05-25 22:17:17 +02:00
|
|
|
p -> drawLine(QPointF(0.0, 0.0), d->second_point);
|
2007-06-30 17:41:07 +00:00
|
|
|
|
|
|
|
// dessin du point d'amarrage au conducteur en bleu
|
2010-04-18 20:48:15 +00:00
|
|
|
t.setColor(isSelected() ? Qt::red : Terminal::neutralColor);
|
2007-06-30 17:41:07 +00:00
|
|
|
p -> setPen(t);
|
2010-04-18 20:48:15 +00:00
|
|
|
p -> setBrush(Terminal::neutralColor);
|
2007-06-30 17:41:07 +00:00
|
|
|
p -> drawPoint(QPointF(0.0, 0.0));
|
|
|
|
p -> restore();
|
2015-02-09 08:57:40 +00:00
|
|
|
|
|
|
|
if (m_hovered)
|
|
|
|
drawShadowShape(p);
|
2007-06-30 17:41:07 +00:00
|
|
|
}
|
|
|
|
|
2007-12-05 21:16:01 +00:00
|
|
|
/**
|
2015-02-09 08:57:40 +00:00
|
|
|
* @brief PartTerminal::shape
|
|
|
|
* @return the shape of this item
|
|
|
|
*/
|
|
|
|
QPainterPath PartTerminal::shape() const
|
|
|
|
{
|
|
|
|
QPainterPath shape;
|
2020-05-25 22:17:17 +02:00
|
|
|
shape.lineTo(d->second_point);
|
2015-02-09 08:57:40 +00:00
|
|
|
|
|
|
|
QPainterPathStroker pps;
|
|
|
|
pps.setWidth(1);
|
|
|
|
|
|
|
|
return (pps.createStroke(shape));
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief PartTerminal::boundingRect
|
|
|
|
* @return the bounding rect of this item
|
|
|
|
*/
|
|
|
|
QRectF PartTerminal::boundingRect() const
|
|
|
|
{
|
2020-05-25 22:17:17 +02:00
|
|
|
QRectF br(QPointF(0, 0), d->second_point);
|
2015-02-09 08:57:40 +00:00
|
|
|
br = br.normalized();
|
|
|
|
|
|
|
|
qreal adjust = (SHADOWS_HEIGHT + 1) / 2;
|
|
|
|
br.adjust(-adjust, -adjust, adjust, adjust);
|
2007-06-30 17:41:07 +00:00
|
|
|
return(br);
|
|
|
|
}
|
|
|
|
|
2007-12-05 21:16:01 +00:00
|
|
|
/**
|
|
|
|
Definit l'orientation de la borne
|
|
|
|
@param ori la nouvelle orientation de la borne
|
|
|
|
*/
|
2015-07-24 12:08:03 +00:00
|
|
|
void PartTerminal::setOrientation(Qet::Orientation ori)
|
|
|
|
{
|
2020-05-25 22:17:17 +02:00
|
|
|
if (d->m_orientation == ori) return;
|
2007-06-30 17:41:07 +00:00
|
|
|
prepareGeometryChange();
|
2020-05-25 22:17:17 +02:00
|
|
|
d->m_orientation = ori;
|
2007-06-30 17:41:07 +00:00
|
|
|
updateSecondPoint();
|
2015-07-24 12:08:03 +00:00
|
|
|
emit orientationChanged();
|
2007-06-30 17:41:07 +00:00
|
|
|
}
|
|
|
|
|
2020-05-25 22:17:17 +02:00
|
|
|
void PartTerminal::setName(QString& name)
|
|
|
|
{
|
|
|
|
if (d->m_name == name) return;
|
|
|
|
d->m_name = name;
|
|
|
|
emit nameChanged();
|
|
|
|
}
|
|
|
|
|
2007-12-05 21:16:01 +00:00
|
|
|
/**
|
|
|
|
Met a jour la position du second point en fonction de la position et de
|
|
|
|
l'orientation de la borne.
|
|
|
|
*/
|
2007-06-30 17:41:07 +00:00
|
|
|
void PartTerminal::updateSecondPoint() {
|
|
|
|
qreal ts = 4.0; // terminal size
|
2020-05-25 22:17:17 +02:00
|
|
|
switch(d->m_orientation) {
|
|
|
|
case Qet::North: d->second_point = QPointF(0.0, ts); break;
|
|
|
|
case Qet::East : d->second_point = QPointF(-ts, 0.0); break;
|
|
|
|
case Qet::South: d->second_point = QPointF(0.0, -ts); break;
|
|
|
|
case Qet::West : d->second_point = QPointF(ts, 0.0); break;
|
2007-06-30 17:41:07 +00:00
|
|
|
}
|
|
|
|
}
|
2007-12-15 21:57:00 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
@return true si cette partie n'est pas pertinente et ne merite pas d'etre
|
|
|
|
conservee / enregistree.
|
|
|
|
Une borne est toujours pertinente ; cette fonction renvoie donc
|
|
|
|
toujours false
|
|
|
|
*/
|
|
|
|
bool PartTerminal::isUseless() const {
|
|
|
|
return(false);
|
|
|
|
}
|
2013-02-08 22:05:12 +00:00
|
|
|
|
2013-02-11 18:35:13 +00:00
|
|
|
/**
|
|
|
|
@return the minimum, margin-less rectangle this part can fit into, in scene
|
|
|
|
coordinates. It is different from boundingRect() because it is not supposed
|
|
|
|
to imply any margin, and it is different from shape because it is a regular
|
|
|
|
rectangle, not a complex shape.
|
|
|
|
*/
|
|
|
|
QRectF PartTerminal::sceneGeometricRect() const {
|
|
|
|
return(sceneBoundingRect());
|
|
|
|
}
|
|
|
|
|
2013-02-08 22:05:12 +00:00
|
|
|
/**
|
|
|
|
Start the user-induced transformation, provided this primitive is contained
|
|
|
|
within the \a initial_selection_rect bounding rectangle.
|
|
|
|
*/
|
|
|
|
void PartTerminal::startUserTransformation(const QRectF &initial_selection_rect) {
|
|
|
|
Q_UNUSED(initial_selection_rect)
|
|
|
|
saved_position_ = scenePos();
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
Handle the user-induced transformation from \a initial_selection_rect to \a new_selection_rect
|
|
|
|
*/
|
|
|
|
void PartTerminal::handleUserTransformation(const QRectF &initial_selection_rect, const QRectF &new_selection_rect) {
|
|
|
|
QPointF mapped_point = mapPoints(initial_selection_rect, new_selection_rect, QList<QPointF>() << saved_position_).first();
|
|
|
|
setPos(mapped_point);
|
|
|
|
}
|