I have problem with hover events on QGraphicsItem.

Qt Code:
  1. class itdItem : public QGraphicsItem
  2. {
  3. ...
  4. };
  5. class itdNode : public itdItem
  6. {
  7. ...
  8. QRectF boundingRect() const;
  9. void paint(QPainter *painter, const QStyleOptionGraphicsItem *option, QWidget *widget = 0);
  10. void mousePressEvent(QGraphicsSceneMouseEvent *mouseEvent);
  11. void mouseMoveEvent(QGraphicsSceneMouseEvent *mouseEvent);
  12. void hoverEnterEvent(QGraphicsSceneHoverEvent * hoverEvent);
  13. void hoverLeaveEvent(QGraphicsSceneHoverEvent * hoverEvent);
  14. };
To copy to clipboard, switch view to plain text mode 

mousePressEvent and mouseMoveEvent are working perfect, but hoverEnterEvent and hoverLeaveEvent methods are never entered. Can somebody help me on this?