| 246 | |
| 247 | |
| 248 | void |
| 249 | ConnectionGraphicsObject:: |
| 250 | addGraphicsEffect() |
| 251 | { |
| 252 | auto effect = new QGraphicsBlurEffect; |
| 253 | |
| 254 | effect->setBlurRadius(5); |
| 255 | setGraphicsEffect(effect); |
| 256 | |
| 257 | //auto effect = new QGraphicsDropShadowEffect; |
| 258 | //auto effect = new ConnectionBlurEffect(this); |
| 259 | //effect->setOffset(4, 4); |
| 260 | //effect->setColor(QColor(Qt::gray).darker(800)); |
| 261 | } |
| 262 | |
| 263 | void |
| 264 | ConnectionGraphicsObject:: |
nothing calls this directly
no outgoing calls
no test coverage detected