Akonadi Contacts

addresseslocationwidget.h
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 #pragma once
11 #include <KContacts/Addressee>
12 #include <QSplitter>
13 
14 class QTreeView;
15 
16 namespace ContactEditor
17 {
18 class AddressModel;
19 class AddressLocationWidget;
20 
21 class AddressesLocationWidget : public QSplitter
22 {
23  Q_OBJECT
24 public:
25  explicit AddressesLocationWidget(QWidget *parent = nullptr);
26  ~AddressesLocationWidget() override;
27 
28  void loadContact(const KContacts::Addressee &contact);
29  void storeContact(KContacts::Addressee &contact) const;
30 
31  void setReadOnly(bool readOnly);
32  Q_REQUIRED_RESULT bool hasNoSavedData() const;
33 
34 private:
35  AddressLocationWidget *const mAddressLocationWidget;
36  QTreeView *const mAddressesLocationView;
37  AddressModel *const mAddressModel;
38  bool mReadOnly = false;
39 };
40 }
Q_OBJECTQ_OBJECT
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.