mirror of
https://github.com/YACReader/yacreader
synced 2025-05-27 19:00:29 -04:00
50 lines
943 B
C++
50 lines
943 B
C++
#ifndef COMICS_REMOVER_H
|
|
#define COMICS_REMOVER_H
|
|
|
|
#include <QThread>
|
|
|
|
#include <QModelIndex>
|
|
#include <comic_db.h>
|
|
|
|
class ComicsRemover : public QObject
|
|
{
|
|
Q_OBJECT
|
|
public:
|
|
explicit ComicsRemover(QModelIndexList &indexList, QList<QString> &paths, qulonglong parentId, QObject *parent = nullptr);
|
|
|
|
signals:
|
|
void remove(int);
|
|
void removeError();
|
|
void finished();
|
|
void removedItemsFromFolder(qulonglong);
|
|
|
|
public slots:
|
|
void process();
|
|
|
|
private:
|
|
QModelIndexList indexList;
|
|
QList<QString> paths;
|
|
qulonglong parentId;
|
|
};
|
|
|
|
class FoldersRemover : public QObject
|
|
{
|
|
Q_OBJECT
|
|
public:
|
|
explicit FoldersRemover(QModelIndexList &indexList, QList<QString> &paths, QObject *parent = nullptr);
|
|
|
|
signals:
|
|
void remove(QModelIndex);
|
|
void removeError();
|
|
void finished();
|
|
|
|
public slots:
|
|
void process();
|
|
|
|
private:
|
|
QModelIndexList indexList;
|
|
QList<QString> paths;
|
|
};
|
|
|
|
#endif // COMICS_REMOVER_H
|