99b5426a21
Introduces partially checked checkboxes for Effects. If an Effect has an enabled by default function and doesn't have an explicit value in the config file the checkbox is set to partially. If there is a value in the config, this will be used. Clicking on Default will return to the partially checked state. So far only the built-in effects support the partially checked state and also the mutual exclusive groups do not support the partial checked (main reason: RadioButton doesn't support it) BUG: 336045 REVIEW: 118658
199 lines
6.5 KiB
C++
199 lines
6.5 KiB
C++
/**************************************************************************
|
|
* 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
|
|
|
|
#include <KColorScheme>
|
|
#include <KSharedConfig>
|
|
#include <QAbstractItemModel>
|
|
#include <QHash>
|
|
#include <QList>
|
|
#include <QQuickView>
|
|
#include <QSortFilterProxyModel>
|
|
#include <QString>
|
|
|
|
namespace KWin {
|
|
namespace Compositing {
|
|
|
|
enum class EffectStatus {
|
|
Disabled = Qt::Unchecked,
|
|
EnabledUndeterminded = Qt::PartiallyChecked,
|
|
Enabled = Qt::Checked
|
|
};
|
|
|
|
struct EffectData {
|
|
QString name;
|
|
QString description;
|
|
QString authorName;
|
|
QString authorEmail;
|
|
QString license;
|
|
QString version;
|
|
QString category;
|
|
QString serviceName;
|
|
EffectStatus effectStatus;
|
|
bool enabledByDefault;
|
|
bool enabledByDefaultFunction;
|
|
QUrl video;
|
|
bool supported;
|
|
QString exclusiveGroup;
|
|
bool internal;
|
|
bool configurable;
|
|
bool scripted;
|
|
bool changed = false;
|
|
};
|
|
|
|
class EffectModel : public QAbstractItemModel
|
|
{
|
|
|
|
Q_OBJECT
|
|
|
|
public:
|
|
enum EffectRoles {
|
|
NameRole = Qt::UserRole + 1,
|
|
DescriptionRole,
|
|
AuthorNameRole,
|
|
AuthorEmailRole,
|
|
LicenseRole,
|
|
VersionRole,
|
|
CategoryRole,
|
|
ServiceNameRole,
|
|
EffectStatusRole,
|
|
VideoRole,
|
|
SupportedRole,
|
|
ExclusiveRole,
|
|
InternalRole,
|
|
ConfigurableRole,
|
|
ScriptedRole
|
|
};
|
|
|
|
explicit EffectModel(QObject *parent = 0);
|
|
|
|
QModelIndex index(int row, int column, const QModelIndex &parent = QModelIndex()) const override;
|
|
QModelIndex parent(const QModelIndex &child) const override;
|
|
int rowCount(const QModelIndex &parent = QModelIndex()) const override;
|
|
int columnCount(const QModelIndex &parent = QModelIndex()) 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;
|
|
QString serviceName(const QString &effectName);
|
|
|
|
virtual QHash< int, QByteArray > roleNames() const override;
|
|
|
|
void updateEffectStatus(const QModelIndex &rowIndex, EffectStatus effectState);
|
|
void syncEffectsToKWin();
|
|
void syncConfig();
|
|
void loadEffects();
|
|
void defaults();
|
|
|
|
private:
|
|
int findRowByServiceName(const QString &serviceName);
|
|
QList<EffectData> m_effectsList;
|
|
QList<EffectData> m_effectsChanged;
|
|
|
|
};
|
|
|
|
class EffectView : public QQuickView
|
|
{
|
|
|
|
Q_OBJECT
|
|
|
|
public:
|
|
enum ViewType {
|
|
DesktopEffectsView,
|
|
CompositingSettingsView
|
|
};
|
|
EffectView(ViewType type, QWindow *parent = 0);
|
|
|
|
Q_INVOKABLE QColor backgroundViewColor() { return KColorScheme(QPalette::Active, KColorScheme::Window, KSharedConfigPtr(0)).background(KColorScheme::NormalBackground).color(); };
|
|
|
|
void save();
|
|
void load();
|
|
void defaults();
|
|
|
|
Q_SIGNALS:
|
|
void changed();
|
|
|
|
private Q_SLOTS:
|
|
void slotImplicitSizeChanged();
|
|
private:
|
|
void init(ViewType type);
|
|
};
|
|
|
|
|
|
class EffectFilterModel : public QSortFilterProxyModel
|
|
{
|
|
Q_OBJECT
|
|
Q_PROPERTY(QString filter READ filter WRITE setFilter NOTIFY filterChanged)
|
|
/**
|
|
* If @c true not supported effects are excluded, if @c false no restriction on supported.
|
|
* Default value is @c true.
|
|
**/
|
|
Q_PROPERTY(bool filterOutUnsupported MEMBER m_filterOutUnsupported NOTIFY filterOutUnsupportedChanged)
|
|
/**
|
|
* If @c true internal effects are excluded, if @c false no restriction on internal.
|
|
* Default value is @c true.
|
|
**/
|
|
Q_PROPERTY(bool filterOutInternal MEMBER m_filterOutInternal NOTIFY filterOutInternalChanged)
|
|
Q_PROPERTY(QColor backgroundActiveColor READ backgroundActiveColor CONSTANT);
|
|
Q_PROPERTY(QColor backgroundNormalColor READ backgroundNormalColor CONSTANT);
|
|
Q_PROPERTY(QColor backgroundAlternateColor READ backgroundAlternateColor CONSTANT);
|
|
Q_PROPERTY(QColor sectionColor READ sectionColor CONSTANT)
|
|
public:
|
|
EffectFilterModel(QObject *parent = 0);
|
|
const QString &filter() const;
|
|
|
|
Q_INVOKABLE void updateEffectStatus(int rowIndex, int effectState);
|
|
Q_INVOKABLE void syncConfig();
|
|
Q_INVOKABLE void load();
|
|
|
|
QColor backgroundActiveColor() { return KColorScheme(QPalette::Active, KColorScheme::Selection, KSharedConfigPtr(0)).background(KColorScheme::LinkBackground).color(); };
|
|
QColor backgroundNormalColor() { return KColorScheme(QPalette::Active, KColorScheme::View, KSharedConfigPtr(0)).background(KColorScheme::NormalBackground).color(); };
|
|
QColor backgroundAlternateColor() { return KColorScheme(QPalette::Active, KColorScheme::View, KSharedConfigPtr(0)).background(KColorScheme::AlternateBackground).color(); };
|
|
|
|
QColor sectionColor() const {
|
|
QColor color = KColorScheme(QPalette::Active).foreground().color();
|
|
color.setAlphaF(0.6);
|
|
return color;
|
|
}
|
|
|
|
void defaults();
|
|
|
|
public Q_SLOTS:
|
|
void setFilter(const QString &filter);
|
|
|
|
protected:
|
|
virtual bool filterAcceptsRow(int source_row, const QModelIndex &source_parent) const;
|
|
|
|
Q_SIGNALS:
|
|
void effectModelChanged();
|
|
void filterChanged();
|
|
void filterOutUnsupportedChanged();
|
|
void filterOutInternalChanged();
|
|
|
|
private:
|
|
EffectModel *m_effectModel;
|
|
QString m_filter;
|
|
bool m_filterOutUnsupported;
|
|
bool m_filterOutInternal;
|
|
};
|
|
}
|
|
}
|
|
#endif
|