/*
Copyright (c) 2007 Paolo Capriotti
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 2 of the License, or
(at your option) any later version.
*/
#ifndef BACKGROUNDLISTMODEL_H
#define BACKGROUNDLISTMODEL_H
#include
#include
#include
#include
#include
#include
#include
class QEventLoop;
class KProgressDialog;
namespace Plasma
{
class Package;
} // namespace Plasma
class ImageSizeFinder : public QObject, public QRunnable
{
Q_OBJECT
public:
ImageSizeFinder(const QString &path, QObject *parent = 0);
void run();
Q_SIGNALS:
void sizeFound(const QString &path, const QSize &size);
private:
QString m_path;
};
class BackgroundListModel : public QAbstractListModel
{
Q_OBJECT
public:
BackgroundListModel(Plasma::Wallpaper *listener, QObject *parent);
virtual ~BackgroundListModel();
virtual int rowCount(const QModelIndex &parent = QModelIndex()) const;
virtual QVariant data(const QModelIndex &index, int role = Qt::DisplayRole) const;
Plasma::Package *package(int index) const;
void reload();
void reload(const QStringList &selected);
void addBackground(const QString &path);
QModelIndex indexOf(const QString &path) const;
virtual bool contains(const QString &bg) const;
void setWallpaperSize(const QSize& size);
void setResizeMethod(Plasma::Wallpaper::ResizeMethod resizeMethod);
protected Q_SLOTS:
void removeBackground(const QString &path);
void showPreview(const KFileItem &item, const QPixmap &preview);
void previewFailed(const KFileItem &item);
void sizeFound(const QString &path, const QSize &s);
void backgroundsFound(const QStringList &paths, const QString &token);
void processPaths(const QStringList &paths);
private:
QSize bestSize(Plasma::Package *package) const;
Plasma::Wallpaper *m_structureParent;
QList m_packages;
QHash m_sizeCache;
QHash m_previews;
QHash m_previewJobs;
KDirWatch m_dirwatch;
QSize m_size;
Plasma::Wallpaper::ResizeMethod m_resizeMethod;
QString m_findToken;
QPixmap m_previewUnavailablePix;
};
class BackgroundFinder : public QThread
{
Q_OBJECT
public:
BackgroundFinder(Plasma::Wallpaper *structureParent, const QStringList &p);
~BackgroundFinder();
QString token() const;
signals:
void backgroundsFound(const QStringList &paths, const QString &token);
protected:
void run();
private:
Plasma::PackageStructure::Ptr m_structure;
QStringList m_paths;
QString m_token;
};
#endif // BACKGROUNDLISTMODEL_H