hide the itembackground when the mouse leaes the toolbox

svn path=/trunk/KDE/kdelibs/; revision=1118442
This commit is contained in:
Marco Martin 2010-04-24 19:21:04 +00:00
parent be75656033
commit 9c0e6c20fd

View File

@ -118,6 +118,16 @@ class EmptyGraphicsItem : public QGraphicsWidget
return false;
}
void hoverEnterEvent(QGraphicsSceneHoverEvent *event)
{
event->accept();
}
void hoverLeaveEvent(QGraphicsSceneHoverEvent *event)
{
m_itemBackground->hide();
}
private:
QRectF m_rect;
Plasma::FrameSvg *m_background;