summaryrefslogtreecommitdiffstats
path: root/fswidget.h
blob: e77ab2d03895bd60dde5589f3b71022d88d24207 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
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