mirror of
https://github.com/qelectrotech/qelectrotech-source-mirror.git
synced 2025-12-18 22:00:35 +01:00
use m_pos as value to store
This commit is contained in:
@@ -43,13 +43,18 @@ QDomElement TerminalData::toXml(QDomDocument &xml_document) const
|
|||||||
{
|
{
|
||||||
QDomElement xml_element = xml_document.createElement("terminaldata");
|
QDomElement xml_element = xml_document.createElement("terminaldata");
|
||||||
|
|
||||||
xml_element.appendChild(createXmlProperty(xml_document, "x", q->scenePos().x()));
|
|
||||||
xml_element.appendChild(createXmlProperty(xml_document, "y", q->scenePos().y()));
|
// m_pos cannot be stored, because in the partterminal it will not be updated.
|
||||||
|
// In PartTerminal m_pos is the position of the dock, in Terminal m_pos is the second side of the terminal
|
||||||
|
// This is hold for legacy compability reason
|
||||||
|
xml_element.appendChild(createXmlProperty(xml_document, "x", m_pos.x()));
|
||||||
|
xml_element.appendChild(createXmlProperty(xml_document, "y", m_pos.y()));
|
||||||
xml_element.appendChild(createXmlProperty(xml_document, "name", m_name));
|
xml_element.appendChild(createXmlProperty(xml_document, "name", m_name));
|
||||||
xml_element.appendChild(createXmlProperty(xml_document, "orientation", orientationToString(m_orientation)));
|
xml_element.appendChild(createXmlProperty(xml_document, "orientation", orientationToString(m_orientation)));
|
||||||
|
|
||||||
return(xml_element);
|
return(xml_element);
|
||||||
}
|
}
|
||||||
|
|
||||||
bool TerminalData::fromXml (const QDomElement &xml_element) // RETURNS True
|
bool TerminalData::fromXml (const QDomElement &xml_element) // RETURNS True
|
||||||
{
|
{
|
||||||
// lit la position de la borne
|
// lit la position de la borne
|
||||||
|
|||||||
@@ -733,7 +733,11 @@ QDomElement Terminal::toXml(QDomDocument &doc) const {
|
|||||||
// store terminal data too!
|
// store terminal data too!
|
||||||
|
|
||||||
// Do not store terminal data in its own child
|
// Do not store terminal data in its own child
|
||||||
|
// Bad hack. The problem is that in the diagrams the terminal is described by the position and in the Collection by the dock.
|
||||||
|
QPointF tempPos = d->m_pos;
|
||||||
|
d->m_pos = dock_elmt_;
|
||||||
QDomElement terminalDataElement = d->toXml(doc);
|
QDomElement terminalDataElement = d->toXml(doc);
|
||||||
|
d->m_pos = tempPos;
|
||||||
|
|
||||||
int childsCount = terminalDataElement.childNodes().count();
|
int childsCount = terminalDataElement.childNodes().count();
|
||||||
for (int i=0; i < childsCount; i++) {
|
for (int i=0; i < childsCount; i++) {
|
||||||
|
|||||||
Reference in New Issue
Block a user