File: kwinsettings.cpp

package info (click to toggle)
plasma-mobile 6.5.4-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 20,412 kB
  • sloc: xml: 38,474; cpp: 18,529; javascript: 139; sh: 82; makefile: 5
file content (36 lines) | stat: -rw-r--r-- 1,151 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
/*
 *  SPDX-FileCopyrightText: 2025 Florian RICHER <florian.richer@protonmail.com>
 *
 *  SPDX-License-Identifier: GPL-2.0-or-later
 */

#include "kwinsettings.h"

const QString CONFIG_FILE = QStringLiteral("kwinrc");
const QString WAYLAND_CONFIG_GROUP = QStringLiteral("Wayland");

KWinSettings::KWinSettings(QObject *parent)
    : QObject{parent}
    , m_config{KSharedConfig::openConfig(CONFIG_FILE, KConfig::SimpleConfig)}
{
    m_configWatcher = KConfigWatcher::create(m_config);
    connect(m_configWatcher.data(), &KConfigWatcher::configChanged, this, [this](const KConfigGroup &group, const QByteArrayList &names) -> void {
        Q_UNUSED(names)
        if (group.name() == WAYLAND_CONFIG_GROUP) {
            Q_EMIT doubleTapWakeupChanged();
        }
    });
}

bool KWinSettings::doubleTapWakeup() const
{
    auto group = KConfigGroup{m_config, WAYLAND_CONFIG_GROUP};
    return group.readEntry("DoubleTapWakeup", true);
}

void KWinSettings::setDoubleTapWakeup(bool enabled)
{
    auto group = KConfigGroup{m_config, WAYLAND_CONFIG_GROUP};
    group.writeEntry("DoubleTapWakeup", enabled, KConfigGroup::Notify);
    m_config->sync();
}