Nomemclature: add field element position in the graphic scene to export .csv file

git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4003 bfdf4180-ca20-0410-9c96-a3a8aa849046
This commit is contained in:
scorpio810
2015-06-10 19:31:26 +00:00
parent 2cf6e61643
commit c5ee983905
2 changed files with 3 additions and 0 deletions

View File

@@ -84,6 +84,7 @@ QString nomenclature::getNomenclature() {
data += tr("N° de folio") +";"
""+ tr("Titre de folio") +";"
""+ tr("Désignation qet") +";"
""+ tr("Position") +";"
""+ tr("Label") +";"
""+ tr("Désignation") +";"
""+ tr("Commentaire") +";"
@@ -125,6 +126,7 @@ QString nomenclature::getElementInfo(const Element *elmt) {
info += QString::number(diagram -> folioIndex()+1) + ";";
info += diagram -> title() + ";";
info += elmt -> name() + ";";
info += elmt-> diagram()-> convertPosition(elmt -> scenePos()).toString() + ";";
info += elmt_info["label"].toString() + ";";
info += elmt_info["designation"].toString() + ";";
info += elmt_info["comment"].toString() + ";";