Akonadi Contacts

maillistwidget.h
1/*
2 This file is part of Contact Editor.
3
4 SPDX-FileCopyrightText: 2016 eyeOS S.L.U., a Telefonica company, sales@eyeos.com
5 SPDX-FileCopyrightText: 2016-2020 Laurent Montel <montel.org>
6
7 SPDX-License-Identifier: LGPL-2.0-or-later
8*/
9
10#pragma once
11
12#include <QWidget>
13namespace KContacts
14{
15class Addressee;
16}
17namespace Akonadi
18{
19class MailWidgetLister;
20class MailListWidget : public QWidget
21{
23public:
24 explicit MailListWidget(QWidget *parent = nullptr);
25 ~MailListWidget() override;
26 void loadContact(const KContacts::Addressee &contact);
27 void storeContact(KContacts::Addressee &contact) const;
28 void setReadOnly(bool readOnly);
29
30private:
31 Akonadi::MailWidgetLister *mMailWidgetLister = nullptr;
32};
33}
A widget for editing the display name of a contact.
Q_OBJECTQ_OBJECT
QObject * parent() const const
This file is part of the KDE documentation.
Documentation copyright © 1996-2024 The KDE developers.
Generated on Fri Oct 11 2024 12:17:37 by doxygen 1.12.0 written by Dimitri van Heesch, © 1997-2006

KDE's Doxygen guidelines are available online.