File indexing completed on 2024-10-27 04:50:59
0001 /* 0002 SPDX-FileCopyrightText: 2020-2024 Laurent Montel <montel@kde.org> 0003 0004 SPDX-License-Identifier: GPL-2.0-or-later 0005 */ 0006 0007 #pragma once 0008 0009 #include <KMessageWidget> 0010 #include <QWidget> 0011 0012 class AttachmentAddedFromExternalWarning : public KMessageWidget 0013 { 0014 Q_OBJECT 0015 public: 0016 explicit AttachmentAddedFromExternalWarning(QWidget *parent = nullptr); 0017 ~AttachmentAddedFromExternalWarning() override; 0018 0019 void setAttachmentNames(const QStringList &lst); 0020 };