Messagelib

scamdetectiondetailsdialog.h
1 /*
2  SPDX-FileCopyrightText: 2013-2023 Laurent Montel <[email protected]>
3 
4  SPDX-License-Identifier: LGPL-2.0-or-later
5 
6 */
7 
8 #pragma once
9 
10 #include <QDialog>
11 
12 namespace KPIMTextEdit
13 {
14 class RichTextEditorWidget;
15 }
16 
17 namespace MessageViewer
18 {
19 class ScamDetectionDetailsDialog : public QDialog
20 {
21  Q_OBJECT
22 public:
23  explicit ScamDetectionDetailsDialog(QWidget *parent = nullptr);
24  ~ScamDetectionDetailsDialog() override;
25 
26  void setDetails(const QString &details);
27 
28 private:
29  void slotSaveAs();
30  void writeConfig();
31  void readConfig();
32  KPIMTextEdit::RichTextEditorWidget *const mDetails;
33 };
34 }
Q_OBJECTQ_OBJECT
void readConfig()
This file is part of the KDE documentation.
Documentation copyright © 1996-2023 The KDE developers.
Generated on Fri Mar 24 2023 04:08:32 by doxygen 1.8.17 written by Dimitri van Heesch, © 1997-2006

KDE's Doxygen guidelines are available online.