diff options
Diffstat (limited to 'shemov.cpp')
-rw-r--r-- | shemov.cpp | 7 |
1 files changed, 7 insertions, 0 deletions
@@ -39,6 +39,7 @@ #include "pictureswidget.h" #include "smdirmodel.h" #include "framecache.h" +#include "archiveview.h" SheMov::SheMov(QWidget *parent, Qt::WindowFlags flags) : QMainWindow(parent, flags), mOpenWithGroupFS(0), mOpenWithGroupAV(0) { //application icon @@ -73,6 +74,12 @@ SheMov::SheMov(QWidget *parent, Qt::WindowFlags flags) : QMainWindow(parent, fla connect(mATree->filesWidget(), SIGNAL(statusMessage(QString)), this, SLOT(statusbarMessage(QString))); connect(this, SIGNAL(configChanged()), mATree, SLOT(readSettings())); + //experimental + splash.showMessage(tr("Creating experimental"), Qt::AlignHCenter, Qt::yellow); + qApp->processEvents(); + mArchive = new ArchiveView; + mTab->addTab(mArchive, "Experimental"); + //pictures splash.showMessage(tr("Creating Picture Archive..."), Qt::AlignHCenter, Qt::yellow); qApp->processEvents(); |