1 /*
2    SPDX-FileCopyrightText: 2013-2021 Laurent Montel <montel@kde.org>
3 
4    SPDX-License-Identifier: GPL-2.0-or-later
5 */
6 #pragma once
7 #include "noteshared_export.h"
8 #include <KCModule>
9 namespace NoteShared
10 {
11 class NOTESHARED_EXPORT NoteActionConfig : public KCModule
12 {
13     Q_OBJECT
14 public:
15     explicit NoteActionConfig(QWidget *parent = nullptr, const QVariantList &args = QVariantList());
16     /** Reimplemented from KCModule. */
17     void load() override;
18     void save() override;
19 
20 private:
21     void slotHelpLinkClicked(const QString &);
22 };
23 }
24