2020-05-25 22:17:17 +02:00
|
|
|
#include "terminaldata.h"
|
|
|
|
|
|
|
|
#include <QGraphicsObject>
|
|
|
|
|
|
|
|
TerminalData::TerminalData():
|
2020-07-19 20:05:58 +02:00
|
|
|
PropertiesInterface()
|
2020-05-25 22:17:17 +02:00
|
|
|
{
|
2020-07-19 20:05:58 +02:00
|
|
|
init();
|
2020-05-25 22:17:17 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
TerminalData::TerminalData(QGraphicsObject *parent):
|
2020-07-19 20:05:58 +02:00
|
|
|
PropertiesInterface(),
|
|
|
|
q(parent)
|
2020-05-25 22:17:17 +02:00
|
|
|
{
|
2020-07-19 20:05:58 +02:00
|
|
|
init();
|
2020-05-26 18:47:24 +02:00
|
|
|
}
|
2020-05-25 22:17:17 +02:00
|
|
|
|
2020-09-07 22:03:40 +02:00
|
|
|
void TerminalData::init()
|
|
|
|
{
|
2020-05-25 22:17:17 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
TerminalData::~TerminalData()
|
|
|
|
{
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2020-07-19 20:05:58 +02:00
|
|
|
/**
|
|
|
|
@brief TerminalData::setParent
|
|
|
|
@param parent
|
|
|
|
*/
|
2020-05-25 22:17:17 +02:00
|
|
|
void TerminalData::setParent(QGraphicsObject* parent)
|
|
|
|
{
|
2020-07-19 20:05:58 +02:00
|
|
|
q = parent;
|
2020-05-25 22:17:17 +02:00
|
|
|
}
|
|
|
|
|
2020-08-25 20:14:38 +02:00
|
|
|
void TerminalData::toSettings(QSettings& settings, const QString&) const
|
2020-05-25 22:17:17 +02:00
|
|
|
|
2020-06-20 21:22:41 +02:00
|
|
|
{
|
|
|
|
Q_UNUSED(settings);
|
2020-05-25 22:17:17 +02:00
|
|
|
}
|
|
|
|
|
2020-08-25 20:14:38 +02:00
|
|
|
void TerminalData::fromSettings(const QSettings& settings, const QString&)
|
2020-05-25 22:17:17 +02:00
|
|
|
{
|
2020-06-20 21:22:41 +02:00
|
|
|
Q_UNUSED(settings);
|
2020-05-25 22:17:17 +02:00
|
|
|
}
|
|
|
|
|
2020-07-19 20:05:58 +02:00
|
|
|
/**
|
|
|
|
@brief TerminalData::toXml
|
|
|
|
Save properties to xml element
|
|
|
|
write the name, number, position and orientation of the terminal
|
|
|
|
to xml_element
|
|
|
|
|
|
|
|
@note This method is only called from the PartTerminal
|
|
|
|
and should never called from the Terminal class
|
|
|
|
@param xml_document
|
|
|
|
@return xml_element : DomElement with
|
|
|
|
the name, number, position and orientation of the terminal
|
|
|
|
*/
|
2020-05-25 22:17:17 +02:00
|
|
|
QDomElement TerminalData::toXml(QDomDocument &xml_document) const
|
|
|
|
{
|
2020-10-13 21:51:34 +02:00
|
|
|
QDomElement xml_element = xml_document.createElement("terminaldata");
|
2020-05-25 22:17:17 +02:00
|
|
|
|
|
|
|
|
2020-10-13 21:51:34 +02:00
|
|
|
// 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, "orientation", orientationToString(m_orientation)));
|
2020-05-25 22:17:17 +02:00
|
|
|
|
2020-07-19 20:05:58 +02:00
|
|
|
return(xml_element);
|
2020-05-25 22:17:17 +02:00
|
|
|
}
|
2020-07-19 20:05:58 +02:00
|
|
|
|
2020-09-14 21:21:32 +02:00
|
|
|
bool TerminalData::fromXml (const QDomElement &xml_element) // RETURNS True
|
2020-05-25 22:17:17 +02:00
|
|
|
{
|
2020-07-19 20:05:58 +02:00
|
|
|
// lit la position de la borne
|
2020-10-13 21:51:34 +02:00
|
|
|
qreal term_x = 0.0, term_y = 0.0;
|
2020-08-13 23:27:11 +02:00
|
|
|
|
2020-10-13 21:51:34 +02:00
|
|
|
if (propertyDouble(xml_element, "x", &term_x))
|
2020-07-19 20:05:58 +02:00
|
|
|
return false;
|
2020-05-25 22:17:17 +02:00
|
|
|
|
2020-10-13 21:51:34 +02:00
|
|
|
if (propertyDouble(xml_element, "y", &term_y))
|
2020-07-19 20:05:58 +02:00
|
|
|
return false;
|
2020-05-25 22:17:17 +02:00
|
|
|
|
2020-07-19 20:05:58 +02:00
|
|
|
m_pos = QPointF(term_x, term_y);
|
2020-05-25 22:17:17 +02:00
|
|
|
|
2020-10-01 14:38:08 +02:00
|
|
|
// emit posFromXML(QPointF(term_x, term_y));
|
2020-05-25 22:17:17 +02:00
|
|
|
|
2020-10-13 21:51:34 +02:00
|
|
|
// do not write uuid from this class, because only PartTerminal::fromXml need
|
|
|
|
// to write it to xml file. Terminal::fromXml does not need.
|
2020-05-25 22:17:17 +02:00
|
|
|
|
|
|
|
|
2020-10-13 21:51:34 +02:00
|
|
|
//if (propertyString(xml_element, "name", &m_name))
|
|
|
|
// return false;
|
|
|
|
propertyString(xml_element, "name", &m_name); // some parts do not have a name. Example: affuteuse_250h.qet, Terminal at x="0" y="-20"
|
2020-08-13 23:27:11 +02:00
|
|
|
|
2020-10-13 21:51:34 +02:00
|
|
|
QString o;
|
|
|
|
if (propertyString(xml_element, "orientation", &o))
|
|
|
|
return false;
|
2020-05-25 22:17:17 +02:00
|
|
|
|
2020-07-19 20:05:58 +02:00
|
|
|
// lit l'orientation de la borne
|
2020-10-13 21:51:34 +02:00
|
|
|
m_orientation = orientationFromString(o);
|
2020-05-25 22:17:17 +02:00
|
|
|
|
2020-07-19 20:05:58 +02:00
|
|
|
return true;
|
2020-05-25 22:17:17 +02:00
|
|
|
}
|
|
|
|
|
2020-09-14 21:21:32 +02:00
|
|
|
bool TerminalData::valideXml(const QDomElement& xml_element) {
|
2020-10-13 21:51:34 +02:00
|
|
|
if (propertyDouble(xml_element, "x"))
|
|
|
|
return false;
|
2020-08-25 20:14:38 +02:00
|
|
|
|
2020-10-13 21:51:34 +02:00
|
|
|
if (propertyDouble(xml_element, "y"))
|
|
|
|
return false;
|
2020-08-25 20:14:38 +02:00
|
|
|
|
2020-10-13 21:51:34 +02:00
|
|
|
// legacy elements do not have an uuid
|
2020-09-14 21:21:32 +02:00
|
|
|
// if (propertyUuid(xml_element, "uuid"))
|
|
|
|
// return false;
|
2020-08-25 20:14:38 +02:00
|
|
|
|
2020-10-13 21:51:34 +02:00
|
|
|
//if (propertyString(xml_element, "name")) // some parts do not have a name. Example: affuteuse_250h.qet, Terminal at x="0" y="-20"
|
|
|
|
// return false;
|
2020-08-25 20:14:38 +02:00
|
|
|
|
2020-10-13 21:51:34 +02:00
|
|
|
if (propertyString(xml_element, "orientation"))
|
|
|
|
return false;
|
|
|
|
return true;
|
2020-05-25 22:17:17 +02:00
|
|
|
}
|