Akonadi Contacts

emailaddressselectionmodel.h
1/*
2 This file is part of Akonadi Contact.
3
4 SPDX-FileCopyrightText: 2017-2020 Laurent Montel <montel.org>
5
6 SPDX-License-Identifier: LGPL-2.0-or-later
7*/
8
9#pragma once
10
11#include "akonadi-contact-core_export.h"
12#include <QObject>
13
14namespace Akonadi
15{
16class ContactsTreeModel;
17class AKONADI_CONTACT_CORE_EXPORT EmailAddressSelectionModel : public QObject
18{
19 Q_OBJECT
20public:
21 explicit EmailAddressSelectionModel(QObject *parent = nullptr);
22 ~EmailAddressSelectionModel() override;
23 [[nodiscard]] Akonadi::ContactsTreeModel *model() const;
24
25private:
26 Akonadi::ContactsTreeModel *mModel = nullptr;
27};
28}
A model for contacts and contact groups as available in Akonadi.
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.