diff options
Diffstat (limited to 'fswidget.h')
-rw-r--r-- | fswidget.h | 25 |
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 |