You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
59 lines
1.4 KiB
59 lines
1.4 KiB
/* |
|
SPDX-FileCopyrightText: 2019 David Redondo <kde@david-redondo.de> |
|
|
|
SPDX-License-Identifier: GPL-2.0-or-later |
|
*/ |
|
|
|
#pragma once |
|
|
|
#include <QConcatenateTablesProxyModel> |
|
#include <QSet> |
|
#include <QSize> |
|
|
|
#include "model/imageroles.h" |
|
|
|
class ImageProxyModel; |
|
|
|
class SlideModel : public QConcatenateTablesProxyModel, public ImageRoles |
|
{ |
|
Q_OBJECT |
|
|
|
public: |
|
explicit SlideModel(const QSize &targetSize, QObject *parent = nullptr); |
|
|
|
QHash<int, QByteArray> roleNames() const override; |
|
QVariant data(const QModelIndex &index, int role = Qt::DisplayRole) const override; |
|
bool setData(const QModelIndex &index, const QVariant &value, int role = Qt::EditRole) override; |
|
|
|
int indexOf(const QString &packagePath) const; |
|
|
|
/** |
|
* @return added directories |
|
*/ |
|
QStringList addDirs(const QStringList &dirs); |
|
QString removeDir(const QString &selected); |
|
void setSlidePaths(const QStringList &slidePaths); |
|
|
|
void setUncheckedSlides(const QStringList &uncheckedSlides); |
|
|
|
bool loading() const; |
|
|
|
Q_SIGNALS: |
|
void done(); |
|
void targetSizeChanged(const QSize &size); |
|
void loadingChanged(); |
|
|
|
private Q_SLOTS: |
|
void slotSourceModelLoadingChanged(); |
|
|
|
private: |
|
QSize m_targetSize; |
|
bool m_loading = false; |
|
|
|
QHash<QString, ImageProxyModel *> m_models; |
|
int m_loaded = 0; |
|
|
|
QHash<QString, bool> m_checkedTable; |
|
|
|
friend class SlideModelTest; |
|
};
|
|
|