Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
00025
00026
00027
00028
00029
00030
00031
00032
00033
00034
00035
00036
00037
00038
00039
00040
00041
00042
00043
00044
00045 #include <QGraphicsScene>
00046 #include <QGraphicsSceneMouseEvent>
00047 #include <QPainter>
00048 #include <QStyleOption>
00049
00050 #include "joint.h"
00051 #include "ArmWidget.h"
00052 #include "ArmRotationWidget.h"
00053
00054 joint::joint(ArmWidget *graphWidget)
00055 : graph(graphWidget)
00056 {
00057 graph_rotation = NULL;
00058 setFlag(ItemSendsGeometryChanges);
00059 setCacheMode(DeviceCoordinateCache);
00060 setZValue(-1);
00061
00062 }
00063
00064 joint::joint(ArmRotationWidget *graphWidget)
00065 : graph_rotation(graphWidget)
00066 {
00067 graph = NULL;
00068 setFlag(ItemSendsGeometryChanges);
00069 setCacheMode(DeviceCoordinateCache);
00070 setZValue(-1);
00071
00072 }
00073
00074
00075 bool joint::advance()
00076
00077 {
00078 if (newPos == pos())
00079 return false;
00080
00081 setPos(newPos);
00082 return true;
00083 }
00084
00085 QRectF joint::boundingRect() const
00086 {
00087 qreal adjust = 2;
00088 return QRectF(-10 - adjust, -10 - adjust,
00089 23 + adjust, 23 + adjust);
00090 }
00091
00092 QPainterPath joint::shape() const
00093 {
00094 QPainterPath path;
00095 path.addEllipse(-10, -10, 20, 20);
00096 return path;
00097 }
00098
00099 void joint::paint(QPainter *painter, const QStyleOptionGraphicsItem *option, QWidget *)
00100 {
00101 painter->setPen(Qt::NoPen);
00102 painter->setBrush(Qt::darkGray);
00103 painter->drawEllipse(-7, -7, 10, 10);
00104
00105
00106
00107 QRadialGradient gradient(-3, -3, 10);
00108 if (option->state & QStyle::State_Sunken) {
00109 gradient.setCenter(3, 3);
00110 gradient.setFocalPoint(3, 3);
00111 gradient.setColorAt(1, QColor(Qt::yellow).light(120));
00112 gradient.setColorAt(0, QColor(Qt::darkYellow).light(120));
00113 } else {
00114 gradient.setColorAt(0, Qt::yellow);
00115 gradient.setColorAt(1, Qt::darkYellow);
00116 }
00117 painter->setBrush(gradient);
00118 painter->setPen(QPen(Qt::black, 0));
00119 painter->drawEllipse(-10, -10, 10, 10);
00120 }
00121
00122 QVariant joint::itemChange(GraphicsItemChange change, const QVariant &value)
00123 {
00124 switch (change) {
00125 case ItemPositionHasChanged:
00126
00127
00128 if(graph != NULL)
00129 graph->itemMoved();
00130 if(graph_rotation != NULL)
00131 graph_rotation->itemMoved();
00132 break;
00133 default:
00134 break;
00135 };
00136
00137 return QGraphicsItem::itemChange(change, value);
00138 }
00139
00140 void joint::mousePressEvent(QGraphicsSceneMouseEvent *event)
00141 {
00142 update();
00143 QGraphicsItem::mousePressEvent(event);
00144 }
00145
00146 void joint::mouseReleaseEvent(QGraphicsSceneMouseEvent *event)
00147 {
00148 update();
00149 QGraphicsItem::mouseReleaseEvent(event);
00150 }