Akonadi Contacts

recipientseditormanager.h
1/*
2 SPDX-FileCopyrightText: 2017-2024 Laurent Montel <montel@kde.org>
3
4 SPDX-License-Identifier: LGPL-2.0-or-later
5*/
6
7#pragma once
8
9#include "akonadi-contact-widgets_export.h"
10#include <QObject>
11
12namespace Akonadi
13{
14class EmailAddressSelectionModel;
15class AKONADI_CONTACT_WIDGETS_EXPORT RecipientsEditorManager : public QObject
16{
17 Q_OBJECT
18public:
19 explicit RecipientsEditorManager(QObject *parent = nullptr);
20 ~RecipientsEditorManager() override;
21
22 static RecipientsEditorManager *self();
23 [[nodiscard]] Akonadi::EmailAddressSelectionModel *model();
24
25private:
26 Akonadi::EmailAddressSelectionModel *const mModel;
27};
28}
A widget for editing the display name of a contact.
This file is part of the KDE documentation.
Documentation copyright © 1996-2024 The KDE developers.
Generated on Tue Mar 26 2024 11:13:20 by doxygen 1.10.0 written by Dimitri van Heesch, © 1997-2006

KDE's Doxygen guidelines are available online.