cross ref item: don't show postion of element 'power'.

git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@2959 bfdf4180-ca20-0410-9c96-a3a8aa849046
This commit is contained in:
blacksun
2014-04-02 17:36:40 +00:00
parent e686dc4405
commit 1ce608e7df
2 changed files with 15 additions and 7 deletions

View File

@@ -88,8 +88,8 @@ void CrossRefItem::updateLabel() {
//draw the cross
QRectF br = boundingRect();
qp.drawLine(br.width()/2, 0, br.width()/2, br.height() - text_rect_.height()); //vertical line
qp.drawLine(br.width()/2-25, header, br.width()/2+25, header); //horizontal line
qp.drawLine(br.width()/2, 0, br.width()/2, br.height() - text_rect_.height()); //vertical line
qp.drawLine(br.width()/2-(crossWidth/2), header, br.width()/2+(crossWidth/2), header); //horizontal line
//draw the symbolic NO
qreal xoffset = br.width()/2 - 25;
@@ -277,6 +277,7 @@ void CrossRefItem::fillCrossRef(QPainter &painter) {
//find each no and nc of connected element to element_
foreach (Element *elmt, element_->linkedElements()) {
if (elmt->kindInformations()["type"].toString() == "power") continue;
QString state = elmt->kindInformations()["state"].toString();
if (state == "NO") NO_list << elmt;
else if (state == "NC") NC_list << elmt;