File indexing completed on 2025-01-05 03:59:47
0001 /* ============================================================ 0002 * 0003 * This file is a part of digiKam project 0004 * https://www.digikam.org 0005 * 0006 * Date : 2003-01-28 0007 * Description : a dialog to display camera information. 0008 * 0009 * SPDX-FileCopyrightText: 2003-2005 by Renchi Raju <renchi dot raju at gmail dot com> 0010 * SPDX-FileCopyrightText: 2006-2024 by Gilles Caulier <caulier dot gilles at gmail dot com> 0011 * 0012 * SPDX-License-Identifier: GPL-2.0-or-later 0013 * 0014 * ============================================================ */ 0015 0016 #ifndef DIGIKAM_CAMERA_INFO_DIALOG_H 0017 #define DIGIKAM_CAMERA_INFO_DIALOG_H 0018 0019 // Qt includes 0020 0021 #include <QString> 0022 #include <QDialog> 0023 0024 namespace Digikam 0025 { 0026 0027 class CameraInfoDialog : public QDialog 0028 { 0029 Q_OBJECT 0030 0031 public: 0032 0033 CameraInfoDialog(QWidget* const parent, 0034 const QString& summary, 0035 const QString& manual, 0036 const QString& about); 0037 ~CameraInfoDialog() override; 0038 0039 private Q_SLOTS: 0040 0041 void slotHelp(); 0042 }; 0043 0044 } // namespace Digikam 0045 0046 #endif // DIGIKAM_CAMERA_INFO_DIALOG_H