diff options
author | Arno <arno@disconnect.de> | 2018-04-03 18:35:46 +0200 |
---|---|---|
committer | Arno <arno@disconnect.de> | 2018-04-03 18:35:46 +0200 |
commit | a72d06854cfb2d41762bfde48ef1543aca47020a (patch) | |
tree | 69cd71b6f1a85a8b0e02bd1f04e5497740a907f4 /shemov.cpp | |
parent | 5b2f85010f18c8a9b86df47308e30fa549c9eeb0 (diff) | |
download | SheMov-a72d06854cfb2d41762bfde48ef1543aca47020a.tar.gz SheMov-a72d06854cfb2d41762bfde48ef1543aca47020a.tar.bz2 SheMov-a72d06854cfb2d41762bfde48ef1543aca47020a.zip |
First implementation of MovieWidget
It's the replacement for the archive viewer thingy. Just keep it simple
and stupid. For now it shows series data.
Diffstat (limited to 'shemov.cpp')
-rw-r--r-- | shemov.cpp | 7 |
1 files changed, 7 insertions, 0 deletions
@@ -35,6 +35,7 @@ #include "searchdialog.h" #include "randomtab.h" #include "fswidget.h" +#include "moviewidget.h" #include "helper.h" SheMov::SheMov(QWidget *parent, Qt::WindowFlags flags) : QMainWindow(parent, flags) /*, mOpenWithGroupFS(0), mOpenWithGroupAV(0) */ { @@ -115,6 +116,12 @@ SheMov::SheMov(QWidget *parent, Qt::WindowFlags flags) : QMainWindow(parent, fla connect(mFileWidget, &FSWidget::needRefreshFs, this, &SheMov::setFsFree); connect(mFileWidget, &FSWidget::needConfig, this, &SheMov::configure); + //MovieWidget + splash.showMessage(tr("Constructing MovieWidget..."), Qt::AlignHCenter, Qt::yellow); + qApp->processEvents(); + mMovieWidget = new MovieWidget; + mTab->addTab(mMovieWidget, "MW"); + //experimental splash.showMessage(tr("Creating Movie archive..."), Qt::AlignHCenter, Qt::yellow); qApp->processEvents(); |