| 1212 | } |
| 1213 | |
| 1214 | void InfoElementPrivate::contextMenuEvent(QGraphicsSceneContextMenuEvent* event) { |
| 1215 | if (activate(event->pos())) { |
| 1216 | q->createContextMenu()->exec(event->screenPos()); |
| 1217 | return; |
| 1218 | } |
| 1219 | QGraphicsItem::contextMenuEvent(event); |
| 1220 | } |
| 1221 | |
| 1222 | void InfoElementPrivate::recalcShape() { |
| 1223 | m_shape = QPainterPath(); |
nothing calls this directly
no test coverage detected