Akonadi Contacts

webwidget.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 <QWidget>
13 
14 #include <KContacts/ResourceLocatorUrl>
15 class QToolButton;
16 namespace ContactEditor
17 {
18 class WebSelectTypeCombobox;
19 class PreferredLineEditWidget;
20 class WebWidget : public QWidget
21 {
22  Q_OBJECT
23 public:
24  explicit WebWidget(QWidget *parent = nullptr);
25  ~WebWidget() override;
26  void updateAddRemoveButton(bool addButtonEnabled);
27 
28  void clearWidget();
29  void setPreferred(bool b);
30 
32  void loadWebSite(const KContacts::ResourceLocatorUrl &url);
33 
34  void setReadOnly(bool readOnly);
35 
36 Q_SIGNALS:
37  void addWidget(ContactEditor::WebWidget *);
38  void removeWidget(ContactEditor::WebWidget *);
39  void preferredChanged(ContactEditor::WebWidget *);
40 
41 private:
42  void slotRemoveWeb();
43  void slotAddWeb();
44  void slotPreferredChanged();
46  QStringList mWebSiteType;
47  QString mOldType;
48  PreferredLineEditWidget *mWebSiteEdit = nullptr;
49  QToolButton *mAddButton = nullptr;
50  QToolButton *mRemoveButton = nullptr;
51  ContactEditor::WebSelectTypeCombobox *mWebType = nullptr;
52 };
53 }
Q_OBJECTQ_OBJECT
Q_SIGNALSQ_SIGNALS
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.