digiKam
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  * Copyright (C) 2007-2022 by Gilles Caulier <caulier dot gilles at gmail dot com>
10  *
11  * This program is free software; you can redistribute it
12  * and/or modify it under the terms of the GNU General
13  * Public License as published by the Free Software Foundation;
14  * either version 2, or (at your option)
15  * any later version.
16  *
17  * This program is distributed in the hope that it will be useful,
18  * but WITHOUT ANY WARRANTY; without even the implied warranty of
19  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
20  * GNU General Public License for more details.
21  *
22  * ============================================================ */
23 
24 #ifndef DIGIKAM_EXPOSURE_CONTAINER_H
25 #define DIGIKAM_EXPOSURE_CONTAINER_H
26 
27 // Qt includes
28 
29 #include <QColor>
30 
31 // Local includes
32 
33 #include "digikam_export.h"
34 
35 namespace Digikam
36 {
37 
38 class DIGIKAM_EXPORT ExposureSettingsContainer
39 {
40 
41 public:
42 
44  : underExposureIndicator(false),
45  overExposureIndicator (false),
46  exposureIndicatorMode (true),
47  underExposurePercent (1.0),
48  overExposurePercent (1.0),
49  underExposureColor (Qt::white),
50  overExposureColor (Qt::black)
51  {
52  };
53 
55  {
56  };
57 
58 public:
59 
62 
70 
73 
76 
77 private:
78 
79  Q_DISABLE_COPY(ExposureSettingsContainer)
80 };
81 
82 } // namespace Digikam
83 
84 #endif // DIGIKAM_EXPOSURE_CONTAINER_H
Definition: exposurecontainer.h:39
float overExposurePercent
Definition: exposurecontainer.h:72
bool overExposureIndicator
Definition: exposurecontainer.h:61
virtual ~ExposureSettingsContainer()
Definition: exposurecontainer.h:54
QColor overExposureColor
Definition: exposurecontainer.h:75
bool exposureIndicatorMode
Definition: exposurecontainer.h:69
ExposureSettingsContainer()
Definition: exposurecontainer.h:43
bool underExposureIndicator
Definition: exposurecontainer.h:56
QColor underExposureColor
Definition: exposurecontainer.h:74
float underExposurePercent
Definition: exposurecontainer.h:71
Definition: datefolderview.cpp:43