Add Auto Folio Numbering Label to nomenclature export

git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4489 bfdf4180-ca20-0410-9c96-a3a8aa849046
This commit is contained in:
scorpio810
2016-05-18 05:39:42 +00:00
parent 2d3298fe41
commit f5c39e995c

View File

@@ -84,6 +84,7 @@ QString nomenclature::getNomenclature()
QString data = QObject::tr("NOMENCLATURE : ") + m_project -> title() + "\n\n"; QString data = QObject::tr("NOMENCLATURE : ") + m_project -> title() + "\n\n";
data += QObject::tr("N° de folio") +";" data += QObject::tr("N° de folio") +";"
""+ QObject::tr("Titre de folio") +";" ""+ QObject::tr("Titre de folio") +";"
""+ QObject::tr("Label de folio") +";"
""+ QObject::tr("Désignation qet") +";" ""+ QObject::tr("Désignation qet") +";"
""+ QObject::tr("Position") +";" ""+ QObject::tr("Position") +";"
""+ QObject::tr("Label") +";" ""+ QObject::tr("Label") +";"
@@ -128,6 +129,7 @@ QString nomenclature::getElementInfo(const Element *elmt) {
info += QString::number(diagram -> folioIndex()+1) + ";"; info += QString::number(diagram -> folioIndex()+1) + ";";
info += diagram -> title() + ";"; info += diagram -> title() + ";";
info += diagram -> border_and_titleblock.folio() + ";";
info += elmt -> name() + ";"; info += elmt -> name() + ";";
info += elmt-> diagram()-> convertPosition(elmt -> scenePos()).toString() + ";"; info += elmt-> diagram()-> convertPosition(elmt -> scenePos()).toString() + ";";
info += elmt_info["label"].toString() + ";"; info += elmt_info["label"].toString() + ";";