summaryrefslogtreecommitdiffstats
path: root/shemov.cpp
diff options
context:
space:
mode:
authorArno <arno@disconnect.de>2018-03-30 18:18:06 +0200
committerArno <arno@disconnect.de>2018-03-30 18:18:06 +0200
commit8e685d4ab524da43bae639274e12221fc28fc847 (patch)
treef1a937cc2fba101d5302c4f9c6819ca84b740ab5 /shemov.cpp
parente932aafaa203f70c9be29879fc17bde9d2ac53c2 (diff)
downloadSheMov-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.cpp3
1 files changed, 3 insertions, 0 deletions
diff --git a/shemov.cpp b/shemov.cpp
index 0779a8f..242bf94 100644
--- a/shemov.cpp
+++ b/shemov.cpp
@@ -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);