我想在QGraphicsView
中显示有限自动机。子类QGraphicsItem
我有一个表示状态的类:Node
,它保存指向Link
实例的指针,指定状态之间的移动。每个链接还包含其原点和目标(指向Node
个实例的指针)。
我希望我的代码通过移动其中一个状态来更新(重绘)链接。我不能找到一种方法来调用paint()
或以某种方式强制链接更新。
节点实施:
Node::Node( QGraphicsItem * parent) :
QGraphicsObject(parent)
{
setFlag(ItemIsMovable);
setFlag(ItemSendsGeometryChanges);
setCacheMode(DeviceCoordinateCache);
setZValue(-1);
}
void Node::paint(QPainter *painter, const QStyleOptionGraphicsItem *option, QWidget *widget)
{
QPen pen(Qt::black);
if(option->state & QStyle::State_Selected)
{
pen.setStyle(Qt::DotLine);
pen.setWidth(2);
}
painter->setPen(pen);
painter->drawEllipse(-m_size.width()/2,-m_size.height()/2,m_size.width(),m_size.height());
painter->drawText(boundingRect(),Qt::AlignCenter,m_label);
}
QRectF Node::boundingRect() const
{
return QRectF(topLeft(),m_size);
}
//...
void Node::addLink(Link* newLink)
{
links.append(newLink);
}
// protected members
QVariant Node::itemChange(GraphicsItemChange change, const QVariant &value)
{
switch (change)
{
case ItemPositionHasChanged:
foreach (Link *link, links)
{
link->update(); // This has no effect
}
break;
default:
break;
};
return QGraphicsItem::itemChange(change, value);
}
链接实施:
Link::Link(QGraphicsItem *parent) :
QGraphicsObject(parent)
{
setFlag(ItemIsMovable);
setFlag(ItemSendsGeometryChanges);
setCacheMode(DeviceCoordinateCache);
setZValue(-1);
}
Link::Link(Node *From, Node *To, QGraphicsItem *parent ):
QGraphicsObject(parent),
from(From),
to(To)
{
setFlag(ItemIsMovable);
setFlag(ItemSendsGeometryChanges);
setCacheMode(DeviceCoordinateCache);
setZValue(-1);
}
void Link::paint(QPainter *painter, const QStyleOptionGraphicsItem *option, QWidget *widget)
{
m_painter = painter;
QPen pen(Qt::black);
if(option->state & QStyle::State_Selected)
{
pen.setStyle(Qt::DotLine);
pen.setWidth(2);
}
painter->setPen(pen);
painter->drawLine(from->pos(),to->pos());
}
QRectF Link::boundingRect() const
{
return QRectF(from->pos(),to->pos());
}
答案 0 :(得分:0)
由于您的链接似乎是连接节点,因此您需要使用ItemPositionChange而不是ItemPositionHasChanged,因为在用户移动项目时将调用ItemPositionChange。
然后,您应该更新链接的位置,以便它仍然连接到您的节点并调用其update()。
所以你的问题是ItemPositionHasChanged应该是ItemPositionChange,你也想要在链接发生变化时更新节点,而不是当节点从我能告诉的变化时。