digiKam
camerainfodialog.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 : 2003-01-28
7  * Description : a dialog to display camera information.
8  *
9  * Copyright (C) 2003-2005 by Renchi Raju <renchi dot raju at gmail dot com>
10  * Copyright (C) 2006-2022 by Gilles Caulier <caulier dot gilles at gmail dot com>
11  *
12  * This program is free software; you can redistribute it
13  * and/or modify it under the terms of the GNU General
14  * Public License as published by the Free Software Foundation;
15  * either version 2, or (at your option)
16  * any later version.
17  *
18  * This program is distributed in the hope that it will be useful,
19  * but WITHOUT ANY WARRANTY; without even the implied warranty of
20  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
21  * GNU General Public License for more details.
22  *
23  * ============================================================ */
24 
25 #ifndef DIGIKAM_CAMERA_INFO_DIALOG_H
26 #define DIGIKAM_CAMERA_INFO_DIALOG_H
27 
28 // Qt includes
29 
30 #include <QString>
31 #include <QDialog>
32 
33 namespace Digikam
34 {
35 
36 class CameraInfoDialog : public QDialog
37 {
38  Q_OBJECT
39 
40 public:
41 
42  CameraInfoDialog(QWidget* const parent,
43  const QString& summary,
44  const QString& manual,
45  const QString& about);
46  ~CameraInfoDialog() override;
47 
48 private Q_SLOTS:
49 
50  void slotHelp();
51 };
52 
53 } // namespace Digikam
54 
55 #endif // DIGIKAM_CAMERA_INFO_DIALOG_H
Definition: camerainfodialog.h:37
~CameraInfoDialog() override
Definition: camerainfodialog.cpp:99
CameraInfoDialog(QWidget *const parent, const QString &summary, const QString &manual, const QString &about)
Definition: camerainfodialog.cpp:47
Definition: datefolderview.cpp:43