digiKam
iccprofileinfodlg.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 : 2006-02-16
7  * Description : a dialog to display ICC profile information.
8  *
9  * Copyright (C) 2006-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_ICC_PROFILE_INFO_DLG_H
25 #define DIGIKAM_ICC_PROFILE_INFO_DLG_H
26 
27 // Qt includes
28 
29 #include <QByteArray>
30 #include <QString>
31 #include <QDialog>
32 
33 // Local includes
34 
35 #include "digikam_export.h"
36 #include "icctransform.h"
37 
38 class QWidget;
39 
40 namespace Digikam
41 {
42 
43 class DIGIKAM_EXPORT ICCProfileInfoDlg : public QDialog
44 {
45  Q_OBJECT
46 
47 public:
48 
49  explicit ICCProfileInfoDlg(QWidget* const parent, const QString& profilePath, const IccProfile& profileData = IccProfile());
50  ~ICCProfileInfoDlg() override;
51 
52 private Q_SLOTS:
53 
54  void slotHelp();
55 };
56 
57 } // namespace Digikam
58 
59 #endif // DIGIKAM_ICC_PROFILE_INFO_DLG_H
Definition: iccprofileinfodlg.h:44
Definition: iccprofile.h:43
Definition: datefolderview.cpp:43