digiKam
Loading...
Searching...
No Matches
softproofdialog.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 : 2009-09-16
7 * Description : Dialog to adjust soft proofing settings
8 *
9 * SPDX-FileCopyrightText: 2009-2012 by Marcel Wiesweg <marcel dot wiesweg at gmx dot de>
10 * SPDX-FileCopyrightText: 2013-2024 by Gilles Caulier <caulier dot gilles at gmail dot com>
11 *
12 * SPDX-License-Identifier: GPL-2.0-or-later
13 *
14 * ============================================================ */
15
16#pragma once
17
18// Qt includes
19
20#include <QDialog>
21
22// Local includes
23
24#include "digikam_export.h"
26
27namespace Digikam
28{
29
30class SoftProofDialog : public QDialog
31{
32 Q_OBJECT
33
34public:
35
36 explicit SoftProofDialog(QWidget* const parent);
37 ~SoftProofDialog() override;
38
39 bool shallEnableSoftProofView() const;
40
41protected:
42
43 void readSettings();
44 void writeSettings();
45
46protected Q_SLOTS:
47
50
51private Q_SLOTS:
52
53 void slotHelp();
54 void slotOk();
55 void slotProfileInfo();
56
57private:
58
59 class Private;
60 Private* const d = nullptr;
61};
62
63} // namespace Digikam
Definition softproofdialog.h:31
void writeSettings()
Definition softproofdialog.cpp:202
void updateOkButtonState()
Definition softproofdialog.cpp:188
bool shallEnableSoftProofView() const
Definition softproofdialog.cpp:176
~SoftProofDialog() override
Definition softproofdialog.cpp:171
void updateGamutCheckState()
Definition softproofdialog.cpp:181
void readSettings()
Definition softproofdialog.cpp:193
Definition datefolderview.cpp:34