| 67 | } |
| 68 | |
| 69 | void ResizeItem::HandleItem::mousePressEvent(QGraphicsSceneMouseEvent* event) { |
| 70 | m_parent->container()->setUndoAware(false); |
| 71 | m_oldRect = m_parent->container()->rect(); |
| 72 | m_lastMousePos = event->scenePos(); |
| 73 | } |
| 74 | |
| 75 | void ResizeItem::HandleItem::mouseReleaseEvent(QGraphicsSceneMouseEvent*) { |
| 76 | m_parent->container()->setUndoAware(true); |
nothing calls this directly
no test coverage detected