Mailcommon

redirectwidget.h
1/*
2 SPDX-FileCopyrightText: 2015-2024 Laurent Montel <montel@kde.org>
3
4 SPDX-License-Identifier: LGPL-2.0-or-later
5
6*/
7
8#pragma once
9
10#include <QWidget>
11
12namespace MessageComposer
13{
14class ComposerLineEdit;
15}
16
17namespace MailCommon
18{
19class RedirectWidget : public QWidget
20{
22public:
23 explicit RedirectWidget(QWidget *parent = nullptr);
24 ~RedirectWidget() override;
25
26 void setFocus();
27 [[nodiscard]] QString resend();
28
30 void addressChanged(const QString &);
31
32private:
33 void slotAddressSelection();
35 QString mResendStr;
36};
37}
The filter dialog.
Q_OBJECTQ_OBJECT
Q_SIGNALSQ_SIGNALS
QObject * parent() const const
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.