MCPcopy Create free account
hub / github.com/BehaviorTree/Groot / addGraphicsEffect

Method addGraphicsEffect

QtNodeEditor/src/ConnectionGraphicsObject.cpp:248–261  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

246
247
248void
249ConnectionGraphicsObject::
250addGraphicsEffect()
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
263void
264ConnectionGraphicsObject::

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected