Akonadi Contacts

nicknamewidget.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 "nicknamewidget.h"
11 #include <KContacts/Addressee>
12 #include <KLineEdit>
13 #include <KLocalizedString>
14 #include <QLabel>
15 #include <QVBoxLayout>
16 using namespace ContactEditor;
17 
18 NicknameWidget::NicknameWidget(QWidget *parent)
19  : QWidget(parent)
20  , mNickName(new KLineEdit(this))
21 {
22  auto topLayout = new QVBoxLayout(this);
23  topLayout->setContentsMargins({});
24  topLayout->setObjectName(QStringLiteral("mainlayout"));
25  auto nickNameLabel = new QLabel(i18n("Nickname"), this);
26  nickNameLabel->setObjectName(QStringLiteral("nicknamelabel"));
27  topLayout->addWidget(nickNameLabel);
28 
29  mNickName->setTrapReturnKey(true);
30  mNickName->setPlaceholderText(i18n("Add a Nickname"));
31  mNickName->setObjectName(QStringLiteral("nickname"));
32  topLayout->addWidget(mNickName);
33 }
34 
35 NicknameWidget::~NicknameWidget() = default;
36 
37 void NicknameWidget::loadContact(const KContacts::Addressee &contact)
38 {
39  mNickName->setText(contact.nickName());
40 }
41 
42 void NicknameWidget::storeContact(KContacts::Addressee &contact) const
43 {
44  contact.setNickName(mNickName->text().trimmed());
45 }
46 
47 void NicknameWidget::setReadOnly(bool readOnly)
48 {
49  mNickName->setReadOnly(readOnly);
50 }
QString i18n(const char *text, const TYPE &arg...)
QString nickName() const
void setNickName(const QString &nickName)
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.