Akonadi Contacts

mailwidget.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 
12 #include "contacteditor_private_export.h"
13 #include <KContacts/Email>
14 #include <QWidget>
15 class QToolButton;
16 namespace ContactEditor
17 {
18 class PreferredLineEditWidget;
19 class MailTypeCombobox;
20 class CONTACTEDITOR_TESTS_EXPORT MailWidget : public QWidget
21 {
22  Q_OBJECT
23 public:
24  explicit MailWidget(QWidget *parent = nullptr);
25  ~MailWidget() override;
26 
27  void clearWidget();
28  void updateAddRemoveButton(bool addButtonEnabled);
29  void setMail(const KContacts::Email &email);
30  KContacts::Email email();
31  void setPreferred(bool b);
32  void setReadOnly(bool readOnly);
33 Q_SIGNALS:
34  void addWidget(ContactEditor::MailWidget *);
35  void removeWidget(ContactEditor::MailWidget *);
36  void preferredChanged(ContactEditor::MailWidget *);
37 
38 private:
39  void slotAddMail();
40  void slotRemoveMail();
41  void slotPreferredChanged();
42  KContacts::Email mEmail;
43  QString mOldType;
44  PreferredLineEditWidget *mMailEdit = nullptr;
45  ContactEditor::MailTypeCombobox *mMailType = nullptr;
46  QToolButton *mAddButton = nullptr;
47  QToolButton *mRemoveButton = nullptr;
48 };
49 }
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.