165 lines
4.2 KiB
C++
165 lines
4.2 KiB
C++
/********************************************************************
|
|
KWin - the KDE window manager
|
|
This file is part of the KDE project.
|
|
|
|
Copyright (C) 2018 Vlad Zahorodnii <vlad.zahorodnii@kde.org>
|
|
|
|
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/>.
|
|
*********************************************************************/
|
|
|
|
#include "animationsmodel.h"
|
|
|
|
namespace KWin
|
|
{
|
|
|
|
AnimationsModel::AnimationsModel(QObject *parent)
|
|
: EffectsModel(parent)
|
|
{
|
|
connect(this, &EffectsModel::loaded, this,
|
|
[this] {
|
|
setEnabled(modelCurrentEnabled());
|
|
setCurrentIndex(modelCurrentIndex());
|
|
}
|
|
);
|
|
connect(this, &AnimationsModel::currentIndexChanged, this,
|
|
[this] {
|
|
const QModelIndex index_ = index(m_currentIndex, 0);
|
|
if (!index_.isValid()) {
|
|
return;
|
|
}
|
|
const bool configurable = index_.data(ConfigurableRole).toBool();
|
|
if (configurable != m_currentConfigurable) {
|
|
m_currentConfigurable = configurable;
|
|
emit currentConfigurableChanged();
|
|
}
|
|
}
|
|
);
|
|
}
|
|
|
|
bool AnimationsModel::enabled() const
|
|
{
|
|
return m_enabled;
|
|
}
|
|
|
|
void AnimationsModel::setEnabled(bool enabled)
|
|
{
|
|
if (m_enabled != enabled) {
|
|
m_enabled = enabled;
|
|
emit enabledChanged();
|
|
}
|
|
}
|
|
|
|
int AnimationsModel::currentIndex() const
|
|
{
|
|
return m_currentIndex;
|
|
}
|
|
|
|
void AnimationsModel::setCurrentIndex(int index)
|
|
{
|
|
if (m_currentIndex != index) {
|
|
m_currentIndex = index;
|
|
emit currentIndexChanged();
|
|
}
|
|
}
|
|
|
|
bool AnimationsModel::currentConfigurable() const
|
|
{
|
|
return m_currentConfigurable;
|
|
}
|
|
|
|
bool AnimationsModel::shouldStore(const EffectData &data) const
|
|
{
|
|
return data.untranslatedCategory.contains(
|
|
QStringLiteral("Virtual Desktop Switching Animation"), Qt::CaseInsensitive);
|
|
}
|
|
|
|
EffectsModel::Status AnimationsModel::status(int row) const
|
|
{
|
|
return Status(data(index(row, 0), static_cast<int>(StatusRole)).toInt());
|
|
}
|
|
|
|
bool AnimationsModel::modelCurrentEnabled() const
|
|
{
|
|
for (int i = 0; i < rowCount(); ++i) {
|
|
if (status(i) != Status::Disabled) {
|
|
return true;
|
|
}
|
|
}
|
|
|
|
return false;
|
|
}
|
|
|
|
int AnimationsModel::modelCurrentIndex() const
|
|
{
|
|
for (int i = 0; i < rowCount(); ++i) {
|
|
if (status(i) != Status::Disabled) {
|
|
return i;
|
|
}
|
|
}
|
|
|
|
return 0;
|
|
}
|
|
|
|
void AnimationsModel::load()
|
|
{
|
|
EffectsModel::load();
|
|
}
|
|
|
|
void AnimationsModel::save()
|
|
{
|
|
for (int i = 0; i < rowCount(); ++i) {
|
|
const auto status = (m_enabled && i == m_currentIndex)
|
|
? EffectsModel::Status::Enabled
|
|
: EffectsModel::Status::Disabled;
|
|
updateEffectStatus(index(i, 0), status);
|
|
}
|
|
|
|
EffectsModel::save();
|
|
}
|
|
|
|
void AnimationsModel::defaults()
|
|
{
|
|
EffectsModel::defaults();
|
|
setEnabled(modelCurrentEnabled());
|
|
setCurrentIndex(modelCurrentIndex());
|
|
}
|
|
|
|
bool AnimationsModel::isDefaults() const
|
|
{
|
|
// effect at m_currentIndex index may not be the current saved selected effect
|
|
const bool enabledByDefault = index(m_currentIndex, 0).data(EnabledByDefaultRole).toBool();
|
|
return enabledByDefault;
|
|
}
|
|
|
|
bool AnimationsModel::needsSave() const
|
|
{
|
|
KConfigGroup kwinConfig(KSharedConfig::openConfig("kwinrc"), "Plugins");
|
|
|
|
for (int i = 0; i < rowCount(); ++i) {
|
|
const QModelIndex index_ = index(i, 0);
|
|
const bool enabledConfig = kwinConfig.readEntry(
|
|
index_.data(ServiceNameRole).toString() + QLatin1String("Enabled"),
|
|
index_.data(EnabledByDefaultRole).toBool()
|
|
);
|
|
const bool enabled = (m_enabled && i == m_currentIndex);
|
|
|
|
if (enabled != enabledConfig) {
|
|
return true;
|
|
}
|
|
}
|
|
|
|
return false;
|
|
}
|
|
|
|
}
|