File indexing completed on 2025-01-05 04:58:21
0001 /* 0002 SPDX-FileCopyrightText: 2014-2024 Laurent Montel <montel@kde.org> 0003 SPDX-FileCopyrightText: 2021 Carl Schwan <carlschwan@kde.org> 0004 0005 SPDX-License-Identifier: LGPL-2.0-or-later 0006 */ 0007 0008 #pragma once 0009 0010 #include "pimcommonakonadi_export.h" 0011 #include <QComboBox> 0012 0013 namespace PimCommon 0014 { 0015 class IncidencesForWidgetPrivate; 0016 /** 0017 * @brief The IncidencesForWidget class is used for configuring which 0018 * users sharing this folder should get "busy" periods in their freebusy 0019 * lists. 0020 * @author Laurent Montel <montel@kde.org> 0021 */ 0022 class PIMCOMMONAKONADI_EXPORT IncidencesForWidget : public QComboBox 0023 { 0024 Q_OBJECT 0025 public: 0026 explicit IncidencesForWidget(QWidget *parent = nullptr); 0027 ~IncidencesForWidget() override; 0028 0029 /// Label name of the combobox. 0030 static QString labelName(); 0031 }; 0032 }