KGuiAddons

kcolorschemewatcher.h
1/*
2 * SPDX-FileCopyrightText: 2021 Nicolas Fella <nicolas.fella@gmx.de>
3 *
4 * SPDX-License-Identifier: LGPL-2.0-or-later
5 */
6
7#ifndef KCOLORSCHEMEWATCHER_H
8#define KCOLORSCHEMEWATCHER_H
9
10#include "kguiaddons_export.h"
11
12#include <QObject>
13
14#include <memory>
15
16class KColorSchemeWatcherPrivate;
17
18/**
19 * Information about system-wide color preferences.
20 * @since 5.100
21 */
22class KGUIADDONS_EXPORT KColorSchemeWatcher : public QObject
23{
25public:
26 /**
27 * Encodes the color preference of the user to be used by applications
28 * as configured in the system settings. On some systems not all values
29 * are returned, e.g. @c PreferHighContrast is currently only returned
30 * on Windows.
31 * @see systemPreference
32 */
34 NoPreference = 0, /** No preference available */
35 PreferDark, /** The user prefers a dark color scheme */
36 PreferLight, /** The user prefers a light color scheme */
37 PreferHighContrast, /** The user prefers a system-provided high-contrast color scheme
38 @since 6.13 */
39 };
40 Q_ENUM(ColorPreference)
41
42 KColorSchemeWatcher(QObject *parent = nullptr);
43 ~KColorSchemeWatcher() override;
44
45 /**
46 * The system-wide color preference.
47 */
48 ColorPreference systemPreference() const;
49
50Q_SIGNALS:
51 /**
52 * Emitted when systemPreference changes.
53 */
55
56private:
57 std::unique_ptr<KColorSchemeWatcherPrivate> const d;
58};
59
60#endif
Information about system-wide color preferences.
ColorPreference
Encodes the color preference of the user to be used by applications as configured in the system setti...
@ PreferHighContrast
The user prefers a light color scheme.
@ PreferLight
The user prefers a dark color scheme.
@ PreferDark
No preference available.
void systemPreferenceChanged()
Emitted when systemPreference changes.
QObject(QObject *parent)
Q_ENUM(...)
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.