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 #include <QGraphicsScene>
00035 #include <QGraphicsSceneMouseEvent>
00036 #include <QPainter>
00037 #include <QStyleOption>
00038
00039 #include "joint.h"
00040 #include "ArmWidget.h"
00041 #include "ArmRotationWidget.h"
00042
00043 joint::joint(ArmWidget *graphWidget)
00044 : graph(graphWidget)
00045 {
00046 graph_rotation = NULL;
00047 setFlag(ItemSendsGeometryChanges);
00048 setCacheMode(DeviceCoordinateCache);
00049 setZValue(-1);
00050
00051 }
00052
00053 joint::joint(ArmRotationWidget *graphWidget)
00054 : graph_rotation(graphWidget)
00055 {
00056 graph = NULL;
00057 setFlag(ItemSendsGeometryChanges);
00058 setCacheMode(DeviceCoordinateCache);
00059 setZValue(-1);
00060
00061 }
00062
00063
00064 bool joint::advance()
00065
00066 {
00067 if (newPos == pos())
00068 return false;
00069
00070 setPos(newPos);
00071 return true;
00072 }
00073
00074 QRectF joint::boundingRect() const
00075 {
00076 qreal adjust = 2;
00077 return QRectF(-10 - adjust, -10 - adjust,
00078 23 + adjust, 23 + adjust);
00079 }
00080
00081 QPainterPath joint::shape() const
00082 {
00083 QPainterPath path;
00084 path.addEllipse(-10, -10, 20, 20);
00085 return path;
00086 }
00087
00088 void joint::paint(QPainter *painter, const QStyleOptionGraphicsItem *option, QWidget *)
00089 {
00090 painter->setPen(Qt::NoPen);
00091 painter->setBrush(Qt::darkGray);
00092 painter->drawEllipse(-7, -7, 10, 10);
00093
00094
00095
00096 QRadialGradient gradient(-3, -3, 10);
00097 if (option->state & QStyle::State_Sunken) {
00098 gradient.setCenter(3, 3);
00099 gradient.setFocalPoint(3, 3);
00100 gradient.setColorAt(1, QColor(Qt::yellow).light(120));
00101 gradient.setColorAt(0, QColor(Qt::darkYellow).light(120));
00102 } else {
00103 gradient.setColorAt(0, Qt::yellow);
00104 gradient.setColorAt(1, Qt::darkYellow);
00105 }
00106 painter->setBrush(gradient);
00107 painter->setPen(QPen(Qt::black, 0));
00108 painter->drawEllipse(-10, -10, 10, 10);
00109 }
00110
00111 QVariant joint::itemChange(GraphicsItemChange change, const QVariant &value)
00112
00113 {
00114 switch (change) {
00115 if(graph != NULL)
00116 graph->itemMoved();
00117 if(graph_rotation != NULL)
00118 graph_rotation->itemMoved();
00119 break;
00120 default:
00121 break;
00122 };
00123
00124 return QGraphicsItem::itemChange(change, value);
00125 }
00126
00127 void joint::mousePressEvent(QGraphicsSceneMouseEvent *event)
00128 {
00129 update();
00130 QGraphicsItem::mousePressEvent(event);
00131 }
00132
00133 void joint::mouseReleaseEvent(QGraphicsSceneMouseEvent *event)
00134 {
00135 update();
00136 QGraphicsItem::mouseReleaseEvent(event);
00137 }