What is the difference between a QWindow and QWidget
QWindow has been introduced in Qt 5.0 due to the gui / widgets split. QWidget now lives in its own library (QtWidgets); it was necessary to provide the abstraction of a “toplevel window” for non-widgets based applications, and thus QWindow was created — and lives in QtGui. There is an entire class of non-widgets based … Read more