The examples are working fine.
The code of the Mainwindow contructor is:
MainWindow
::MainWindow(QWidget *parent, Qt
::WFlags f
):DPSMainWindow
(parent, f
){ splash.show();
setupUi(this);
init();
readSettings();
splash.finish(this);
}
MainWindow::MainWindow(QWidget *parent, Qt::WFlags f):DPSMainWindow(parent, f){
QSplashScreen splash(QPixmap(":/images/splash.png"));
splash.show();
setupUi(this);
init();
readSettings();
splash.finish(this);
}
To copy to clipboard, switch view to plain text mode
DPSMainWindow is only a subclass of QMainWindow, dont change anything
Bookmarks