KGuiAddons

kcolorschemewatcher_win.h
1/*
2 * SPDX-FileCopyrightText: 2020 Piyush Aggarwal <piyushaggarwal002@gmail.com>
3 *
4 * SPDX-License-Identifier: LGPL-2.0-or-later
5 */
6
7#ifndef KCOLORSCHEMEWATCHER_WIN_H
8#define KCOLORSCHEMEWATCHER_WIN_H
9
10#include <QAbstractNativeEventFilter>
11#include <QSettings>
12
13#include "kcolorschemewatcher.h"
14#include "kcolorschemewatcherbackend.h"
15
16class KColorSchemeWatcherWin : public KColorSchemeWatcherBackend, public QAbstractNativeEventFilter
17{
19public:
20 KColorSchemeWatcherWin();
21 KColorSchemeWatcher::ColorPreference systemPreference() const override;
22
23 bool nativeEventFilter(const QByteArray &eventType, void *message, qintptr *) override;
24
25private:
26 KColorSchemeWatcher::ColorPreference getCurrentSystemPreference() const;
27
28 QSettings m_settings{QStringLiteral("HKEY_CURRENT_USER\\Software\\Microsoft\\Windows\\CurrentVersion\\Themes\\Personalize"), QSettings::NativeFormat};
29 KColorSchemeWatcher::ColorPreference m_preference = KColorSchemeWatcher::NoPreference;
30};
31
32#endif
ColorPreference
Encodes the color preference of the user to be used by applications as configured in the system setti...
Q_OBJECTQ_OBJECT
This file is part of the KDE documentation.
Documentation copyright © 1996-2025 The KDE developers.
Generated on Fri Apr 4 2025 12:12:29 by doxygen 1.13.2 written by Dimitri van Heesch, © 1997-2006

KDE's Doxygen guidelines are available online.