Akonadi Contacts

phonelistwidget.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 "akonadi_contact_widgets_private_export.h"
13#include <QWidget>
14namespace KContacts
15{
16class Addressee;
17}
18namespace Akonadi
19{
20class PhoneWidgetLister;
21class AKONADI_CONTACT_WIDGETS_TESTS_EXPORT PhoneListWidget : public QWidget
22{
23 Q_OBJECT
24public:
25 explicit PhoneListWidget(QWidget *parent = nullptr);
26 ~PhoneListWidget() override;
27 void loadContact(const KContacts::Addressee &contact);
28 void storeContact(KContacts::Addressee &contact) const;
29 void setReadOnly(bool readOnly);
30
31private:
32 Akonadi::PhoneWidgetLister *mPhoneWidgetLister = nullptr;
33};
34}
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 Fri Jul 26 2024 11:57:38 by doxygen 1.11.0 written by Dimitri van Heesch, © 1997-2006

KDE's Doxygen guidelines are available online.