Akonadi Contacts

customfieldeditorwidget.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 "customfields_p.h"
13#include <QWidget>
14class KLineEdit;
15class QPushButton;
16class QCheckBox;
17class QComboBox;
18namespace Akonadi
19{
20class CustomFieldEditorWidget : public QWidget
21{
23public:
24 explicit CustomFieldEditorWidget(QWidget *parent = nullptr);
25 ~CustomFieldEditorWidget() override;
26 void setReadOnly(bool readOnly);
27
29 void addNewField(const CustomField &field);
30
31private:
32 void slotAddField();
33 void slotFielNameChanged(const QString &text);
34 void fillTypes();
35 KLineEdit *mFieldName = nullptr;
36 QPushButton *mAddField = nullptr;
37 QCheckBox *mUseAllContacts = nullptr;
38 QComboBox *mFieldType = nullptr;
39};
40}
A widget for editing the display name of a contact.
Q_OBJECTQ_OBJECT
Q_SIGNALSQ_SIGNALS
QObject * parent() const const
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.