2013-06-25 14:07:48 +00:00
|
|
|
/**************************************************************************
|
|
|
|
* KWin - the KDE window manager *
|
|
|
|
* This file is part of the KDE project. *
|
|
|
|
* *
|
|
|
|
* Copyright (C) 2013 Antonis Tsiapaliokas <kok3rs@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. *
|
|
|
|
* *
|
|
|
|
* This program is distributed in the hope that it will be useful, *
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of *
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
|
|
|
|
* GNU General Public License for more details. *
|
|
|
|
* *
|
|
|
|
* You should have received a copy of the GNU General Public License *
|
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>. *
|
|
|
|
**************************************************************************/
|
|
|
|
|
|
|
|
|
|
|
|
#ifndef MODEL_H
|
|
|
|
#define MODEL_H
|
2013-08-09 12:29:05 +00:00
|
|
|
#include <QAbstractItemModel>
|
2013-06-25 14:07:48 +00:00
|
|
|
#include <QHash>
|
|
|
|
#include <QList>
|
|
|
|
#include <QQuickView>
|
2013-08-09 12:29:05 +00:00
|
|
|
#include <QSortFilterProxyModel>
|
2013-06-25 14:07:48 +00:00
|
|
|
#include <QString>
|
|
|
|
|
2013-08-07 16:52:45 +00:00
|
|
|
namespace KWin {
|
|
|
|
namespace Compositing {
|
|
|
|
|
|
|
|
struct EffectData {
|
2013-06-25 14:07:48 +00:00
|
|
|
QString name;
|
|
|
|
QString description;
|
|
|
|
QString authorName;
|
|
|
|
QString authorEmail;
|
|
|
|
QString license;
|
|
|
|
QString version;
|
|
|
|
QString category;
|
2013-08-07 16:52:45 +00:00
|
|
|
QString serviceName;
|
|
|
|
bool effectStatus;
|
2013-06-25 14:07:48 +00:00
|
|
|
};
|
|
|
|
|
2013-08-09 12:29:05 +00:00
|
|
|
class EffectModel : public QAbstractItemModel {
|
2013-06-25 14:07:48 +00:00
|
|
|
|
|
|
|
Q_OBJECT
|
|
|
|
|
|
|
|
public:
|
|
|
|
enum EffectRoles {
|
2013-08-07 16:52:45 +00:00
|
|
|
NameRole = Qt::UserRole + 1,
|
|
|
|
DescriptionRole,
|
|
|
|
AuthorNameRole,
|
|
|
|
AuthorEmailRole,
|
|
|
|
LicenseRole,
|
|
|
|
VersionRole,
|
|
|
|
CategoryRole,
|
|
|
|
ServiceNameRole,
|
|
|
|
EffectStatusRole
|
2013-06-25 14:07:48 +00:00
|
|
|
};
|
|
|
|
|
2013-08-08 09:08:54 +00:00
|
|
|
explicit EffectModel(QObject *parent = 0);
|
2013-08-09 12:29:05 +00:00
|
|
|
|
|
|
|
QModelIndex index(int row, int column, const QModelIndex &parent = QModelIndex()) const;
|
|
|
|
QModelIndex parent(const QModelIndex &child) const;
|
2013-06-25 14:07:48 +00:00
|
|
|
int rowCount(const QModelIndex &parent = QModelIndex()) const;
|
2013-08-09 12:29:05 +00:00
|
|
|
int columnCount(const QModelIndex &parent = QModelIndex()) const;
|
2013-06-25 14:07:48 +00:00
|
|
|
QVariant data(const QModelIndex &index, int role = Qt::DisplayRole) const;
|
2013-08-08 16:00:28 +00:00
|
|
|
bool setData(const QModelIndex& index, const QVariant& value, int role = Qt::EditRole);
|
2013-08-07 16:52:45 +00:00
|
|
|
QString serviceName(const QString &effectName);
|
2013-08-09 12:29:05 +00:00
|
|
|
bool effectListContains(const QString &effectFilter, int source_row);
|
2013-06-25 14:07:48 +00:00
|
|
|
|
2013-08-08 16:00:28 +00:00
|
|
|
Q_INVOKABLE void effectStatus(const QModelIndex &index, bool effectState);
|
2013-08-07 17:25:04 +00:00
|
|
|
Q_INVOKABLE QString findImage(const QString &imagePath, int size = 128);
|
2013-08-08 09:08:54 +00:00
|
|
|
Q_INVOKABLE void reload();
|
2013-08-08 16:00:28 +00:00
|
|
|
Q_INVOKABLE void syncConfig();
|
2013-08-07 17:25:04 +00:00
|
|
|
|
2013-06-25 14:07:48 +00:00
|
|
|
private:
|
|
|
|
void loadEffects();
|
2013-08-19 16:50:01 +00:00
|
|
|
void handleDesktopSwitching(int row);
|
2013-08-07 16:52:45 +00:00
|
|
|
QList<EffectData> m_effectsList;
|
2013-06-25 14:07:48 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
class EffectView : public QQuickView {
|
|
|
|
|
|
|
|
Q_OBJECT
|
|
|
|
|
|
|
|
public:
|
|
|
|
EffectView(QWindow *parent = 0);
|
|
|
|
void init();
|
|
|
|
};
|
2013-08-07 16:52:45 +00:00
|
|
|
|
2013-08-09 12:29:05 +00:00
|
|
|
|
|
|
|
class EffectFilterModel : public QSortFilterProxyModel
|
|
|
|
{
|
|
|
|
Q_OBJECT
|
|
|
|
Q_PROPERTY(KWin::Compositing::EffectModel *effectModel READ effectModel WRITE setEffectModel NOTIFY effectModelChanged)
|
|
|
|
Q_PROPERTY(QString filter READ filter WRITE setFilter NOTIFY filterChanged)
|
|
|
|
public:
|
|
|
|
EffectFilterModel(QObject *parent = 0);
|
|
|
|
EffectModel *effectModel() const;
|
|
|
|
const QString &filter() const;
|
|
|
|
|
|
|
|
public Q_SLOTS:
|
|
|
|
void setEffectModel(EffectModel *effectModel);
|
|
|
|
void setFilter(const QString &filter);
|
|
|
|
|
|
|
|
protected:
|
|
|
|
virtual bool filterAcceptsRow(int source_row, const QModelIndex &source_parent) const;
|
|
|
|
|
|
|
|
Q_SIGNALS:
|
|
|
|
void effectModelChanged();
|
|
|
|
void filterChanged();
|
|
|
|
|
|
|
|
private:
|
|
|
|
EffectModel *m_effectModel;
|
|
|
|
QString m_filter;
|
|
|
|
};
|
2013-08-07 16:52:45 +00:00
|
|
|
}
|
|
|
|
}
|
2013-06-25 14:07:48 +00:00
|
|
|
#endif
|