digiKam
Loading...
Searching...
No Matches
geopluginaboutdlg.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 : Geolocation 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 "PluginInterface.h"
24#include "digikam_export.h"
25
26using namespace Marble;
27
28namespace Digikam
29{
30
31class DIGIKAM_EXPORT GeoPluginAboutDlg : public QDialog
32{
33 Q_OBJECT
34
35public:
36
37 explicit GeoPluginAboutDlg(PluginInterface* const tool, QWidget* const parent = nullptr);
38 ~GeoPluginAboutDlg() override = default;
39
40private Q_SLOTS:
41
42 void slotOnlineHandbook();
43
44private:
45
46 Q_DISABLE_COPY(GeoPluginAboutDlg)
47
48private:
49
50 PluginInterface* m_tool = nullptr;
51};
52
53} // namespace Digikam
Definition geopluginaboutdlg.h:32
~GeoPluginAboutDlg() override=default
Definition datefolderview.cpp:34