diff options
author | Arno <arno@disconnect.de> | 2018-03-30 18:18:06 +0200 |
---|---|---|
committer | Arno <arno@disconnect.de> | 2018-03-30 18:18:06 +0200 |
commit | 8e685d4ab524da43bae639274e12221fc28fc847 (patch) | |
tree | f1a937cc2fba101d5302c4f9c6819ca84b740ab5 /shemov.cpp | |
parent | e932aafaa203f70c9be29879fc17bde9d2ac53c2 (diff) | |
download | SheMov-8e685d4ab524da43bae639274e12221fc28fc847.tar.gz SheMov-8e685d4ab524da43bae639274e12221fc28fc847.tar.bz2 SheMov-8e685d4ab524da43bae639274e12221fc28fc847.zip |
Basic layout for new FSWidget
Just the layout, does absolutely nothing yet.
Diffstat (limited to 'shemov.cpp')
-rw-r--r-- | shemov.cpp | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -38,6 +38,7 @@ #include "archivebrowser.h" #include "searchdialog.h" #include "randomtab.h" +#include "fswidget.h" SheMov::SheMov(QWidget *parent, Qt::WindowFlags flags) : QMainWindow(parent, flags), mOpenWithGroupFS(0), mOpenWithGroupAV(0) { //application icon @@ -61,6 +62,8 @@ SheMov::SheMov(QWidget *parent, Qt::WindowFlags flags) : QMainWindow(parent, fla mTab = new QTabWidget; mTab->addTab(mFSWidget, tr("Filemanager")); connect(this, &SheMov::configChanged, mFSWidget, &FilesystemWidget::configChanged); + mFileWidget = new FSWidget; + mTab->addTab(mFileWidget, tr("FS")); //experimental splash.showMessage(tr("Creating Movie archive..."), Qt::AlignHCenter, Qt::yellow); |