Messagelib

plugineditorconfigurebasewidget.h
1 /*
2  SPDX-FileCopyrightText: 2016-2023 Laurent Montel <[email protected]>
3 
4  SPDX-License-Identifier: LGPL-2.0-or-later
5 */
6 
7 #pragma once
8 
9 #include "messagecomposer_export.h"
10 #include <QWidget>
11 
12 namespace MessageComposer
13 {
14 /**
15  * @brief The PluginEditorConfigureBaseWidget class
16  * @author Laurent Montel <[email protected]>
17  */
18 class MESSAGECOMPOSER_EXPORT PluginEditorConfigureBaseWidget : public QWidget
19 {
20  Q_OBJECT
21 public:
22  explicit PluginEditorConfigureBaseWidget(QWidget *parent = nullptr);
24 
25  virtual void loadSettings() = 0;
26  virtual void saveSettings() = 0;
27  virtual void resetSettings() = 0;
28  virtual QString helpAnchor() const;
29 Q_SIGNALS:
30  void configureChanged();
31 };
32 }
Simple interface that both EncryptJob and SignEncryptJob implement so the composer can extract some e...
This file is part of the KDE documentation.
Documentation copyright © 1996-2023 The KDE developers.
Generated on Mon Mar 27 2023 04:08:18 by doxygen 1.8.17 written by Dimitri van Heesch, © 1997-2006

KDE's Doxygen guidelines are available online.