/*
Copyright 2006-2021 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 .
*/
#ifndef REALTERMINAL_H
#define REALTERMINAL_H
#include
#include
#include "../properties/elementdata.h"
class TerminalStrip;
class Element;
class TerminalElement;
class PhysicalTerminal;
class TerminalStripBridge;
/**
* @brief The RealTerminal class
* Represent a real terminal.
* A real terminal can be a drawed terminal in a folio
* or a terminal set by user but not present
* on any folio (for example a reserved terminal).
*
* When create a new instance of RealTerminal you must
* call sharedRef() and only use the returned QSharedPointer
* instead of the raw pointer
*/
class RealTerminal
{
friend class TerminalElement;
friend class PhysicalTerminal;
private:
RealTerminal(Element *element);
QSharedPointer sharedRef();
QSharedPointer sharedRef() const;
QWeakPointer weakRef();
void setPhysicalTerminal(const QSharedPointer &phy_t);
public:
~RealTerminal();
TerminalStrip *parentStrip() const noexcept;
QSharedPointer physicalTerminal() const noexcept;
QDomElement toXml(QDomDocument &parent_document) const;
int level() const;
QString label() const;
QString Xref() const;
QString cable() const;
QString cableWire() const;
QString conductor() const;
ElementData::TerminalType type() const;
ElementData::TerminalFunction function() const;
bool isLed() const;
bool isElement() const;
bool isBridged() const;
QSharedPointer bridge() const;
Element* element() const;
QUuid elementUuid() const;
static QString xmlTagName();
private :
QPointer m_element;
QWeakPointer m_this_weak;
QSharedPointer m_physical_terminal;
};
#endif // REALTERMINAL_H