blob: d803c0672bda927f3c4039c984ad8227cf97e04f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
#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);
void deleteCurrent();
private:
QString mCurrentFolder;
};
#endif // COLLECTIONFOLDERSVIEW_H
|