summaryrefslogtreecommitdiffstats
path: root/collectionfoldersview.h
blob: dae87cf85541f9d71a23b2c29dc882e3f265af71 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#ifndef COLLECTIONFOLDERSVIEW_H
#define COLLECTIONFOLDERSVIEW_H

#include "collectionwidget.h"

class CollectionFoldersView : public CollectionWidget {
    Q_OBJECT
    public:
        CollectionFoldersView(QWidget *parent = nullptr);

    public slots:
        virtual void populate();
        virtual void readSettings();
        void itemDoubleCliced(const QModelIndex &idx);

    private:
        QString mCurrentFolder;
};

#endif // COLLECTIONFOLDERSVIEW_H