[qet] [2944] cross ref item:reduce table and redrawing symbolic by joshua |
[ Thread Index |
Date Index
| More lists.tuxfamily.org/qet Archives
]
Revision: 2944
Author: scorpio810
Date: 2014-03-21 03:28:47 +0100 (Fri, 21 Mar 2014)
Log Message:
-----------
cross ref item:reduce table and redrawing symbolic by joshua
Basic shapes: workaround,pen set with 1px only in Win OS
Modified Paths:
--------------
trunk/sources/qetgraphicsitem/crossrefitem.cpp
trunk/sources/qetgraphicsitem/qetshapeitem.cpp
Modified: trunk/sources/qetgraphicsitem/crossrefitem.cpp
===================================================================
--- trunk/sources/qetgraphicsitem/crossrefitem.cpp 2014-03-20 14:09:31 UTC (rev 2943)
+++ trunk/sources/qetgraphicsitem/crossrefitem.cpp 2014-03-21 02:28:47 UTC (rev 2944)
@@ -20,6 +20,9 @@
#include "qetapp.h"
#include "diagramposition.h"
+//define the height of the header.
+#define header 5
+
/**
* @brief CrossRefItem::CrossRefItem
* Default constructor
@@ -54,36 +57,35 @@
QPainter qp(&drawing_);
QPen pen_;
pen_.setWidthF(0.2);
- pen_.setCosmetic(true);
qp.setPen(pen_);
//calcul the size
setUpBoundingRect();
//draw the cross
- qp.drawLine(30, 0, 30, boundingRect().height()); //vertical line
- qp.drawLine(0, 5, boundingRect().width(), 5); //horizontal line
+ qp.drawLine(boundingRect().width()/2, 0, boundingRect().width()/2, boundingRect().height()); //vertical line
+ qp.drawLine(0, header, boundingRect().width(), header); //horizontal line
//draw the symbolic NO
- qp.drawLine(11, 2, 14, 2);
+ qp.drawLine(5, 3, 10, 3);
static const QPointF p1[3] = {
- QPointF(14, 1),
- QPointF(16, 2),
- QPointF(18, 2),
+ QPointF(10, 0),
+ QPointF(15, 3),
+ QPointF(20, 3),
};
qp.drawPolyline(p1,3);
//draw the symbolic NC
static const QPointF p2[3] = {
- QPointF(36, 2),
- QPointF(39, 2),
- QPointF(39, 0),
+ QPointF(30, 3),
+ QPointF(35, 3),
+ QPointF(35, 0),
};
qp.drawPolyline(p2,3);
static const QPointF p3[3] = {
- QPointF(38, 0),
- QPointF(41, 2),
- QPointF(43, 2),
+ QPointF(34, 0),
+ QPointF(40, 3),
+ QPointF(45, 3),
};
qp.drawPolyline(p3,3);
@@ -155,8 +157,8 @@
t.setCosmetic(true);
painter -> setPen(t);
painter -> setRenderHint(QPainter::Antialiasing, false);
- painter->drawRect(boundingRect());
- painter->restore();
+ painter -> drawRect(boundingRect());
+ painter -> restore();
}
drawing_.play(painter);
}
@@ -189,7 +191,7 @@
*/
void CrossRefItem::setUpBoundingRect() {
//this is the default size of cross ref item
- QRectF default_bounding(0, 0, 60, 50);
+ QRectF default_bounding(0, 0, 50, 40);
//No need to calcul if nothing is linked
if (!element_->isFree()) {
@@ -211,7 +213,7 @@
//increase the height of bounding rect,
//according to the number of slave item less 4.
i-=4;
- default_bounding.setHeight(default_bounding.height() + (i*9));
+ default_bounding.setHeight(default_bounding.height() + (i*8));
}
}
@@ -236,8 +238,8 @@
else if (state == "NC") NC_list << elmt;
}
- painter -> setFont(QETApp::diagramTextsFont(4));
- painter -> setRenderHint(QPainter::Antialiasing, false);
+ painter -> setFont(QETApp::diagramTextsFont(5));
+ qreal half_cross = boundingRect().width()/2;
//fill the NO
QString contact_str;
foreach (Element *elmt, NO_list) {
@@ -246,8 +248,8 @@
contact_str += elmt->diagram()->convertPosition(elmt -> scenePos()).toString();
contact_str += "\n";
}
- QRectF rect_(0, 10, 26, (boundingRect().height()-10));
- painter->drawText(rect_, Qt::AlignHCenter, contact_str);
+ QRectF rect_(3, header, half_cross, (boundingRect().height()-header));
+ painter->drawText(rect_, Qt::AlignTop | Qt::AlignLeft, contact_str);
//fill the NC
contact_str.clear();
@@ -257,6 +259,6 @@
contact_str += elmt->diagram()->convertPosition(elmt -> scenePos()).toString();
contact_str += "\n";
}
- rect_.setRect(28, 10, 28, (boundingRect().height()-10));
- painter->drawText(rect_, Qt::AlignHCenter, contact_str);
+ rect_.setRect(half_cross+3 , header, half_cross, (boundingRect().height()-header));
+ painter -> drawText(rect_, Qt::AlignTop | Qt::AlignLeft, contact_str);
}
Modified: trunk/sources/qetgraphicsitem/qetshapeitem.cpp
===================================================================
--- trunk/sources/qetgraphicsitem/qetshapeitem.cpp 2014-03-20 14:09:31 UTC (rev 2943)
+++ trunk/sources/qetgraphicsitem/qetshapeitem.cpp 2014-03-21 02:28:47 UTC (rev 2944)
@@ -104,8 +104,11 @@
painter -> setRenderHint(QPainter::Antialiasing, false);
QRectF rec = boundingRect();
QPen pen(Qt::black);
- pen.setWidthF(1.0);
+#ifdef Q_WS_WIN
+ pen.setWidthF(1);
+#endif
+
if (isSelected())
pen.setColor(Qt::red);
pen.setStyle(_shapeStyle);