I'm new to Qt. How can I capture click events/signals of a QGraphicsSvgItem inside a QGraphicsScene? I have the following code:

Qt Code:
  1. QGraphicsScene *scene = new QGraphicsScene(this);
  2. QGraphicsSvgItem *svgItem = new QGraphicsSvgItem(":/SomeGraphic.svg");
  3. svgItem->scale(0.1, 0.1);
  4. svgItem->setPos(-200,-200);
  5. scene->addItem(svgItem);
To copy to clipboard, switch view to plain text mode 
Is it possible to connect() the click() signal of svgItem to a slot?