Akonadi Contacts

contact-editor/editor/generalinfoeditor/categorieseditwidget.cpp
1 /*
2  This file is part of Contact Editor.
3 
4  SPDX-FileCopyrightText: 2009 Tobias Koenig <[email protected]>
5 
6  SPDX-License-Identifier: LGPL-2.0-or-later
7 */
8 
9 #include "categorieseditwidget.h"
10 
11 #include <QHBoxLayout>
12 
13 CategoriesEditWidget::CategoriesEditWidget(QWidget *parent)
14  : ContactEditor::CategoriesEditAbstractWidget(parent)
15 {
16  auto layout = new QHBoxLayout(this);
18 }
19 
20 CategoriesEditWidget::~CategoriesEditWidget() = default;
21 
22 void CategoriesEditWidget::setReadOnly(bool readOnly)
23 {
24  Q_UNUSED(readOnly)
25 }
26 
27 void CategoriesEditWidget::loadContact(const KContacts::Addressee &contact)
28 {
29  Q_UNUSED(contact)
30 }
31 
32 void CategoriesEditWidget::storeContact(KContacts::Addressee &contact) const
33 {
34  Q_UNUSED(contact)
35 }
QLayout * layout() const const
void setContentsMargins(int left, int top, int right, int bottom)
This file is part of the KDE documentation.
Documentation copyright © 1996-2023 The KDE developers.
Generated on Sat Apr 1 2023 04:09:04 by doxygen 1.8.17 written by Dimitri van Heesch, © 1997-2006

KDE's Doxygen guidelines are available online.