Element Terminale add label

Nomenclature Add terminal element


git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4681 bfdf4180-ca20-0410-9c96-a3a8aa849046
This commit is contained in:
scorpio810
2016-09-02 05:28:26 +00:00
parent 30a9aa9cfe
commit db458143bf
6 changed files with 98 additions and 3 deletions

View File

@@ -20,12 +20,26 @@
#include "customelement.h"
class CommentItem;
class QETProject;
class TerminalElement : public CustomElement
{
Q_OBJECT
public:
TerminalElement(const ElementsLocation &, QGraphicsItem * = 0, int * = 0);
~TerminalElement();
virtual void initLink(QETProject *project);
signals:
public slots:
void updateLabel(DiagramContext old_info, DiagramContext new_info);
void changeElementInfo();
private:
CommentItem *m_comment_item;
CommentItem *m_location_item;
};
#endif // TERMINALELEMENT_H