mirror of
https://github.com/qelectrotech/qelectrotech-source-mirror.git
synced 2026-08-15 19:14:12 +02:00
d988054aca
Follow-up to #740, which fixed the slave-side "(n-Xn)" cross-reference label. The master-side item - the small table/cross drawn next to a report or master element, listing where each of its slaves is used - was still missing from DXF export. Measured against examples/ industrial.qet with the PDF export as an oracle (renders the whole scene, so it shows what should be there): before after PDF slave xrefs "(n-Xn)" 41 41 41 (already fixed, #740) folio/position strings 358 403 403 DXF now matches the PDF exactly. ## Why this needed a different approach than #740 The slave label is a plain QGraphicsTextItem - one string, trivial to walk and re-emit as a single DXF TEXT entity, which is what #740 did. The master-side item (CrossRefItem) is not: it paints itself with ~600 lines of hand-written QPainter calls across three modes (drawAsCross/drawAsContacts/drawAsPlcTable), including a header table, contact symbols, and rules. Hand-porting that logic to emit DXF primitives directly would mean maintaining two divergent implementations of the same drawing that have to be kept in sync by hand forever. ## Approach: a QPaintEngine that intercepts CrossRefItem's own paint() DxfPaintEngine/DxfPaintDevice (sources/dxfpaintdevice.{h,cpp}) is a QPaintEngine/QPaintDevice pair - the same mechanism QPrinter and QSvgGenerator use to redirect QPainter output elsewhere. Constructing a QPainter on a DxfPaintDevice and calling item->paint() on it produces DXF entities instead of pixels, using the exact same drawing code that already renders correctly on screen. CrossRefItem::paint() is unmodified. Scope is deliberately narrow - only the QPainter calls CrossRefItem's paint() is observed to make: drawLines -> LINE, drawRects/drawPath's fill case -> outline-only LWPOLYLINE (no HATCH support in v1 - DXF's fill primitive is a separate, more involved entity type; documented as a known limitation rather than attempted here), drawEllipse -> CIRCLE or a flattened polygon for rotated ellipses, drawPath's arc case (from drawArc/drawPie) -> chord-flattened LINE segments, drawPolygon -> LWPOLYLINE, drawTextItem -> TEXT. drawPixmap is intentionally unimplemented (qWarning + skip) since CrossRefItem never calls it - this is not a general-purpose DXF paint engine, and isn't meant to be in this PR. CrossRefItem::paint() is protected, per the normal QGraphicsItem contract - added a small paintForExport() wrapper rather than making paint() itself public, or reaching around access control. ## Explicitly out of scope QetShapeItem::toDXF() and QetGraphicsTableItem::toDXF() (both already implemented and working) are untouched. Rewriting working exporters onto this engine to prove an architectural point would be a large, unrelated diff with no user-visible benefit - if that consolidation is wanted later, it's a separate proposal once this engine has shipped and proven out on the one item that currently has no DXF export at all. ## Testing Built clean on Qt5/Linux. Verified via the GUI export dialog (Fichier > Exporter > DXF) against examples/industrial.qet, 50 folios: export completes without error or crash, all 50 .dxf files are structurally well-formed (balanced SECTION/ENDSEC, single EOF each), and grepping the folio-position pattern gives the before/after/PDF numbers above. Spot-checked several real label strings (e.g. "18-B18", "20-A2") present as TEXT entity values in the output, not just an artifact of the count matching.
154 lines
4.7 KiB
C++
154 lines
4.7 KiB
C++
/*
|
|
Copyright 2006-2026 The QElectroTech Team
|
|
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/>.
|
|
*/
|
|
#ifndef CROSSREFITEM_H
|
|
#define CROSSREFITEM_H
|
|
|
|
#include "../properties/xrefproperties.h"
|
|
|
|
#include <QGraphicsObject>
|
|
#include <QMultiMap>
|
|
#include <QStyleOptionGraphicsItem>
|
|
|
|
class Element;
|
|
class DynamicElementTextItem;
|
|
class ElementTextItemGroup;
|
|
|
|
/**
|
|
@brief The CrossRefItem class
|
|
This clas provide an item, for show the cross reference,
|
|
like the contacts linked to a coil.
|
|
The item setpos automatically when parent move.
|
|
All slave displayed in cross ref will be updated
|
|
when folio position change in the project.
|
|
It's the responsibility of the master element
|
|
to inform displayed slave are moved,
|
|
by calling the slot updateLabel
|
|
By default master element is the parent graphics item of this Xref,
|
|
but if the Xref must be snap to the label of master,
|
|
the label become the parent of this Xref.
|
|
This behavior can be changed at anytime by calling setProperties.
|
|
*/
|
|
class CrossRefItem : public QGraphicsObject
|
|
{
|
|
Q_OBJECT
|
|
|
|
//Methods
|
|
public:
|
|
explicit CrossRefItem(Element *elmt);
|
|
explicit CrossRefItem(
|
|
Element *elmt, DynamicElementTextItem *text);
|
|
explicit CrossRefItem(
|
|
Element *elmt, ElementTextItemGroup *group);
|
|
~CrossRefItem() override;
|
|
private:
|
|
void init();
|
|
void setUpConnection();
|
|
|
|
public:
|
|
enum { Type = UserType + 1009 };
|
|
int type() const override { return Type; }
|
|
|
|
/**
|
|
@brief The CONTACTS enum
|
|
*/
|
|
enum CONTACTS {
|
|
NO = 1,
|
|
NC = 2,
|
|
NOC = 3,
|
|
SW = 4,
|
|
Power = 8,
|
|
DelayOn = 16,
|
|
DelayOff = 32,
|
|
DelayOnOff = 64,
|
|
Delay = 112,
|
|
Other = 128
|
|
};
|
|
|
|
QRectF boundingRect() const override;
|
|
QPainterPath shape() const override;
|
|
QString elementPositionText(
|
|
const Element *elmt,
|
|
const bool &add_prefix = false) const;
|
|
|
|
public slots:
|
|
void updateProperties();
|
|
void updateLabel();
|
|
void autoPos();
|
|
|
|
public:
|
|
/// DXF export: replay this item's paint() on an arbitrary QPainter
|
|
/// (e.g. one targeting DxfPaintDevice). paint() itself stays
|
|
/// protected, as it should for the normal
|
|
/// QGraphicsScene/QGraphicsView paint contract - this is a
|
|
/// deliberate, narrow escape hatch for exporters, not a general
|
|
/// relaxation of that contract.
|
|
void paintForExport(QPainter *painter)
|
|
{
|
|
QStyleOptionGraphicsItem option;
|
|
paint(painter, &option, nullptr);
|
|
}
|
|
|
|
protected:
|
|
bool sceneEvent(QEvent *event) override;
|
|
void paint(QPainter *painter,
|
|
const QStyleOptionGraphicsItem *option,
|
|
QWidget *widget) override;
|
|
void mouseDoubleClickEvent (
|
|
QGraphicsSceneMouseEvent * event ) override;
|
|
void hoverEnterEvent(QGraphicsSceneHoverEvent *event) override;
|
|
void hoverMoveEvent(QGraphicsSceneHoverEvent *event) override;
|
|
void hoverLeaveEvent(QGraphicsSceneHoverEvent *event) override;
|
|
|
|
private:
|
|
void linkedChanged();
|
|
void buildHeaderContact(QPainter &painter, QPointF no_pos, QPointF nc_pos);
|
|
void setUpCrossBoundingRect(QPainter &painter);
|
|
void drawAsCross(QPainter &painter);
|
|
void drawAsContacts(QPainter &painter);
|
|
void drawAsPlcTable(QPainter &painter);
|
|
QRectF drawContact(QPainter &painter, int flags, Element *elmt, int pole_index = 0);
|
|
void fillCrossRef(QPainter &painter);
|
|
void AddExtraInfo(QPainter &painter, const QString&);
|
|
QList<Element *> NOElements() const;
|
|
QList<Element *> NCElements() const;
|
|
|
|
//Attributes
|
|
private:
|
|
Element *m_element; //element to display the cross reference
|
|
QRectF m_bounding_rect;
|
|
QPainterPath m_shape_path;
|
|
XRefProperties m_properties;
|
|
int m_drawed_contacts;
|
|
bool m_update_map = false;
|
|
QMultiMap <Element *, QRectF> m_hovered_contacts_map;
|
|
Element *m_hovered_contact = nullptr;
|
|
DynamicElementTextItem *m_text = nullptr;
|
|
ElementTextItemGroup *m_group = nullptr;
|
|
QList <QMetaObject::Connection> m_slave_connection;
|
|
QList <QMetaObject::Connection> m_update_connection;
|
|
|
|
public:
|
|
/// Returns the map of linked elements and their clickable rects (local coords).
|
|
/// Used by the PDF export to inject hyperlink annotations.
|
|
const QMultiMap<Element *, QRectF> &hoveredContactsMap() const
|
|
{ return m_hovered_contacts_map; }
|
|
};
|
|
|
|
#endif // CROSSREFITEM_H
|
|
|