Akonadi Contacts

messaginglistwidget.cpp
1 /*
2  This file is part of Contact Editor.
3 
4  SPDX-FileCopyrightText: 2016 eyeOS S.L.U., a Telefonica company, [email protected]
5  SPDX-FileCopyrightText: 2016-2020 Laurent Montel <montel.org>
6 
7  SPDX-License-Identifier: LGPL-2.0-or-later
8 */
9 
10 #include "messaginglistwidget.h"
11 #include "messagingwidgetlister.h"
12 #include <KContacts/Addressee>
13 #include <KLocalizedString>
14 #include <QLabel>
15 #include <QVBoxLayout>
16 using namespace ContactEditor;
17 
18 MessagingListWidget::MessagingListWidget(QWidget *parent)
19  : QWidget(parent)
20  , mMessagingWidgetLister(new ContactEditor::MessagingWidgetLister(this))
21 {
22  auto topLayout = new QVBoxLayout(this);
23  topLayout->setContentsMargins({});
24  topLayout->setSpacing(0);
25 
26  auto label = new QLabel(i18n("Messaging"), this);
27  label->setObjectName(QStringLiteral("messaginglistlabel"));
28  topLayout->addWidget(label);
29  mMessagingWidgetLister->setObjectName(QStringLiteral("messagingwidgetlister"));
30  topLayout->addWidget(mMessagingWidgetLister);
31 }
32 
33 MessagingListWidget::~MessagingListWidget() = default;
34 
35 void MessagingListWidget::loadContact(const KContacts::Addressee &contact)
36 {
37  mMessagingWidgetLister->loadContact(contact);
38 }
39 
40 void MessagingListWidget::storeContact(KContacts::Addressee &contact) const
41 {
42  mMessagingWidgetLister->storeContact(contact);
43 }
44 
45 void MessagingListWidget::setReadOnly(bool readOnly)
46 {
47  mMessagingWidgetLister->setReadOnly(readOnly);
48 }
QString i18n(const char *text, const TYPE &arg...)
QString label(StandardShortcut id)
This file is part of the KDE documentation.
Documentation copyright © 1996-2023 The KDE developers.
Generated on Sat Apr 1 2023 04:09:05 by doxygen 1.8.17 written by Dimitri van Heesch, © 1997-2006

KDE's Doxygen guidelines are available online.