Mailcommon

snippetselectattachmentdialog.h
1/*
2 SPDX-FileCopyrightText: 2019-2024 Laurent Montel <montel@kde.org>
3
4 SPDX-License-Identifier: LGPL-2.0-only OR LGPL-3.0-only OR LicenseRef-KDE-Accepted-LGPL
5*/
6
7#pragma once
8
9#include "mailcommon_private_export.h"
10#include <QDialog>
11namespace MailCommon
12{
13class SnippetSelectAttachmentWidget;
14class MAILCOMMON_TESTS_EXPORT SnippetSelectAttachmentDialog : public QDialog
15{
16 Q_OBJECT
17public:
18 explicit SnippetSelectAttachmentDialog(QWidget *parent = nullptr);
19 ~SnippetSelectAttachmentDialog() override;
20
21 void setAttachments(const QStringList &lst);
22 [[nodiscard]] QStringList attachments() const;
23
24private:
25 MAILCOMMON_NO_EXPORT void writeConfig();
26 MAILCOMMON_NO_EXPORT void readConfig();
27 SnippetSelectAttachmentWidget *const mAttachmentWidget;
28};
29}
The filter dialog.
This file is part of the KDE documentation.
Documentation copyright © 1996-2024 The KDE developers.
Generated on Tue Mar 26 2024 11:14:01 by doxygen 1.10.0 written by Dimitri van Heesch, © 1997-2006

KDE's Doxygen guidelines are available online.