digiKam
Loading...
Searching...
No Matches
exposurecontainer.h
Go to the documentation of this file.
1/* ============================================================
2 *
3 * This file is a part of digiKam project
4 * https://www.digikam.org
5 *
6 * Date : 2007-01-12
7 * Description : exposure indicator settings container.
8 *
9 * SPDX-FileCopyrightText: 2007-2024 by Gilles Caulier <caulier dot gilles at gmail dot com>
10 *
11 * SPDX-License-Identifier: GPL-2.0-or-later
12 *
13 * ============================================================ */
14
15#pragma once
16
17// Qt includes
18
19#include <QColor>
20
21// Local includes
22
23#include "digikam_export.h"
24
25namespace Digikam
26{
27
28class DIGIKAM_EXPORT ExposureSettingsContainer
29{
30
31public:
32
34
35 virtual ~ExposureSettingsContainer() = default;
36
37public:
38
39 bool underExposureIndicator = false;
40 bool overExposureIndicator = false;
41
48 bool exposureIndicatorMode = true;
49
50 float underExposurePercent = 1.0;
51 float overExposurePercent = 1.0;
52
53 QColor underExposureColor = Qt::white;
54 QColor overExposureColor = Qt::black;
55
56private:
57
58 Q_DISABLE_COPY(ExposureSettingsContainer)
59};
60
61} // namespace Digikam
Definition exposurecontainer.h:29
virtual ~ExposureSettingsContainer()=default
Definition datefolderview.cpp:34