2022-01-04 17:12:46 +00:00
|
|
|
/*
|
|
|
|
|
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 {
|
|
|
|
|
/**
|
Fix various typos
Fixes typos in various source comments.
Found via `codespell -S "*.po,*.svg,*.pgm,*.xml,./po,*.desktop,*.json,*.actions" -L aline,aparent,childs,distroname,indexin,indx,logicaly,lokal,nd,splitted,te`
2025-09-05 12:21:15 +00:00
|
|
|
* Color temperature is constant throughout the day.
|
2022-01-04 17:12:46 +00:00
|
|
|
*/
|
|
|
|
|
Constant,
|
2025-10-08 13:33:41 +00:00
|
|
|
/**
|
|
|
|
|
* The color temperature is adjusted based on time of day.
|
|
|
|
|
*/
|
|
|
|
|
DarkLight,
|
2022-01-04 17:12:46 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
Q_ENUM_NS(NightColorMode)
|
|
|
|
|
}
|