summaryrefslogtreecommitdiffstats
path: root/fswidget.h
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 /fswidget.h
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 'fswidget.h')
-rw-r--r--fswidget.h25
1 files changed, 25 insertions, 0 deletions
diff --git a/fswidget.h b/fswidget.h
new file mode 100644
index 0000000..e77ab2d
--- /dev/null
+++ b/fswidget.h
@@ -0,0 +1,25 @@
+#ifndef FSWIDGET_H
+#define FSWIDGET_H
+
+#include <QWidget>
+
+class QComboBox;
+class QTreeView;
+
+class FSWidget : public QWidget {
+ Q_OBJECT
+ public:
+ explicit FSWidget(QWidget *parent = nullptr);
+
+ signals:
+
+ public slots:
+
+ private:
+ void setupWidget();
+ QComboBox *mDirCB;
+ QComboBox *mFilterCB;
+ QTreeView *mFileView;
+};
+
+#endif // FSWIDGET_H