shift-shell/quicksettings/nightcolor/enum.h
Vlad Zahorodnii 4cfe3d6a27 quicksettings/nightcolor: Sync settings
Night Light settings had been changed in 6.5
2025-10-09 21:59:30 -04:00

26 lines
432 B
C++

/*
SPDX-FileCopyrightText: 2021 Benjamin Port <benjamin.port@enioka.com>
SPDX-License-Identifier: GPL-2.0-or-later
*/
#pragma once
#include <qobjectdefs.h>
namespace ColorCorrect
{
Q_NAMESPACE
enum NightColorMode {
/**
* Color temperature is constant throughout the day.
*/
Constant,
/**
* The color temperature is adjusted based on time of day.
*/
DarkLight,
};
Q_ENUM_NS(NightColorMode)
}