| 65 | |
| 66 | |
| 67 | QRectF |
| 68 | NodeGeometry:: |
| 69 | boundingRect() const |
| 70 | { |
| 71 | auto const &nodeStyle = StyleCollection::nodeStyle(); |
| 72 | |
| 73 | double addon = 2 * nodeStyle.ConnectionPointDiameter; |
| 74 | |
| 75 | return QRectF(0 - addon, |
| 76 | 0 - addon, |
| 77 | _width + 2 * addon, |
| 78 | _height + 2 * addon); |
| 79 | } |
| 80 | |
| 81 | |
| 82 | void |
nothing calls this directly
no outgoing calls
no test coverage detected