Qt Hover (Widget)
-
Hi
What hover effect ?
With QWidgets its controlled bywidget->setAttribute(Qt::WA_Hover);
widget->setMouseTracking(true);
and then
https://doc.qt.io/qt-5/qwidget.html#enterEvent
https://doc.qt.io/qt-5/qwidget.html#leaveEvent
You have to give better details of thats not enough. -
Hi
you mean like a fade out whole app ?
There is
QWidget::setWindowOpacity(qreal level)
but only works for windows Os.