2015-01-15 17:07:43 +00:00
|
|
|
/*
|
|
|
|
Copyright (c) 2007 Paolo Capriotti <p.capriotti@gmail.com>
|
|
|
|
|
|
|
|
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
|
|
|
|
|
2015-11-25 11:50:42 +00:00
|
|
|
#include <QtCore/qabstractitemmodel.h>
|
2015-01-15 17:07:43 +00:00
|
|
|
#include <QPixmap>
|
|
|
|
|
|
|
|
#include <KDirWatch>
|
|
|
|
#include <KFileItem>
|
|
|
|
|
|
|
|
#include <Plasma/Wallpaper>
|
|
|
|
|
|
|
|
namespace Plasma
|
|
|
|
{
|
|
|
|
class Package;
|
|
|
|
} // namespace Plasma
|
|
|
|
|
|
|
|
class KProgressDialog;
|
|
|
|
|
|
|
|
class BackgroundListModel : public QAbstractListModel
|
|
|
|
{
|
|
|
|
Q_OBJECT
|
|
|
|
|
|
|
|
public:
|
|
|
|
BackgroundListModel(float ratio, 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);
|
|
|
|
int indexOf(const QString &path) const;
|
|
|
|
virtual bool contains(const QString &bg) const;
|
|
|
|
|
|
|
|
static QList<Plasma::Package *> findAllBackgrounds(Plasma::Wallpaper *structureParent,
|
|
|
|
const BackgroundListModel *container,
|
|
|
|
const QString &path, float ratio,
|
|
|
|
KProgressDialog *progress = 0);
|
|
|
|
static void initProgressDialog(KProgressDialog *dialog);
|
|
|
|
|
|
|
|
void setResizeMethod(Plasma::Wallpaper::ResizeMethod resizeMethod);
|
|
|
|
|
|
|
|
protected Q_SLOTS:
|
|
|
|
void showPreview(const KFileItem &item, const QPixmap &preview);
|
|
|
|
void previewFailed(const KFileItem &item);
|
|
|
|
void removeBackground(const QString &path);
|
|
|
|
|
|
|
|
private:
|
|
|
|
QSize bestSize(Plasma::Package *package) const;
|
|
|
|
|
|
|
|
Plasma::Wallpaper *m_listener;
|
|
|
|
Plasma::Wallpaper *m_structureParent;
|
|
|
|
QList<Plasma::Package *> m_packages;
|
|
|
|
QHash<Plasma::Package *, QSize> m_sizeCache;
|
|
|
|
QHash<Plasma::Package *, QPixmap> m_previews;
|
|
|
|
QHash<KUrl, QPersistentModelIndex> m_previewJobs;
|
|
|
|
float m_ratio;
|
|
|
|
KDirWatch m_dirwatch;
|
|
|
|
|
|
|
|
Plasma::Wallpaper::ResizeMethod m_resizeMethod;
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif // BACKGROUNDLISTMODEL_H
|