File indexing completed on 2024-04-21 14:56:35

0001 /*
0002  * SPDX-FileCopyrightText: 2021 Nicolas Fella <nicolas.fella@gmx.de>
0003  *
0004  * SPDX-License-Identifier: LGPL-2.0-or-later
0005  */
0006 
0007 #ifndef KCOLORSCHEMEWATCHERBACKEND_H
0008 #define KCOLORSCHEMEWATCHERBACKEND_H
0009 
0010 #include <QObject>
0011 
0012 #include "kcolorschemewatcher.h"
0013 
0014 class KColorSchemeWatcherBackend : public QObject
0015 {
0016     Q_OBJECT
0017 public:
0018     virtual KColorSchemeWatcher::ColorPreference systemPreference() const = 0;
0019 
0020 Q_SIGNALS:
0021     void systemPreferenceChanged();
0022 };
0023 
0024 #endif