#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