digiKam
Loading...
Searching...
No Matches
setupeditoriface.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 : 2004-08-03
7 * Description : setup Image Editor interface.
8 *
9 * SPDX-FileCopyrightText: 2004-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 <QScrollArea>
20
21// Local includes
22
23#include "digikam_export.h"
24
25namespace Digikam
26{
27
28class DIGIKAM_EXPORT SetupEditorIface : public QScrollArea
29{
30 Q_OBJECT
31
32public:
33
34 explicit SetupEditorIface(QWidget* const parent = nullptr);
35 ~SetupEditorIface() override;
36
37 void applySettings();
38
39private Q_SLOTS:
40
41 void slotThemeBackgroundColor(bool);
42 void slotExpoSettingsChanged();
43 void slotShowOverExpoHistogramGuide(double);
44 void slotShowUnderExpoHistogramGuide(double);
45
46private:
47
48 void readSettings();
49
50private:
51
52 class Private;
53 Private* const d = nullptr;
54};
55
56} // namespace Digikam
Definition setupeditoriface.h:29
Definition datefolderview.cpp:34