MCPcopy Create free account
hub / github.com/dail8859/NotepadNext / runInternal

Method runInternal

src/widgets/FadingIndicator.cpp:111–118  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

109
110private:
111 void runInternal()
112 {
113 QPropertyAnimation *anim = new QPropertyAnimation(m_effect, "opacity", this);
114 anim->setDuration(200);
115 anim->setEndValue(0.);
116 connect(anim, &QAbstractAnimation::finished, this, &QObject::deleteLater);
117 anim->start(QAbstractAnimation::DeleteWhenStopped);
118 }
119
120 QGraphicsOpacityEffect *m_effect;
121 QLabel *m_label;

Callers

nothing calls this directly

Calls 1

startMethod · 0.80

Tested by

no test coverage detected