digiKam
Loading...
Searching...
No Matches
dpluginaboutdlg.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 : 2018-12-31
7 * Description : digiKam plugin about dialog
8 *
9 * SPDX-FileCopyrightText: 2018-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 <QDialog>
20
21// Local includes
22
23#include "digikam_export.h"
24#include "dplugin.h"
25
26namespace Digikam
27{
28
29class DIGIKAM_EXPORT DPluginAboutDlg : public QDialog
30{
31 Q_OBJECT
32
33public:
34
35 explicit DPluginAboutDlg(DPlugin* const tool, QWidget* const parent = nullptr);
36 ~DPluginAboutDlg() override = default;
37
38private Q_SLOTS:
39
40 void slotOnlineHandbook();
41
42private:
43
44 Q_DISABLE_COPY(DPluginAboutDlg)
45
46private:
47
48 DPlugin* m_tool = nullptr;
49};
50
51} // namespace Digikam
Definition dpluginaboutdlg.h:30
~DPluginAboutDlg() override=default
Definition dplugin.h:51
Definition datefolderview.cpp:34