Please excuse this potentially noobish question but when trying to hide a QWidget what is the difference between calling setVisible(False), setShown(False) and hide()?
Please excuse this potentially noobish question but when trying to hide a QWidget what
Share
show()is just a convenience function forsetVisible(true).Similarly
hide()is equivalent tosetVisible(false)Internally, the same code is used to render your view.
See http://doc.qt.io/archives/qt-4.7/qwidget.html#show as an example. According to it,
You’ll find lots of such functions in Qt to just make things more intuitive, especially when it comes to widgets and views.