File indexing completed on 2024-05-12 16:27:38

0001 /*
0002    SPDX-FileCopyrightText: 2021-2024 Laurent Montel <montel@kde.org>
0003 
0004    SPDX-License-Identifier: LGPL-2.0-or-later
0005 */
0006 
0007 #pragma once
0008 
0009 #include <QComboBox>
0010 
0011 #include "libruqolawidgets_private_export.h"
0012 class LIBRUQOLAWIDGETS_TESTS_EXPORT TeamChannelsComboBox : public QComboBox
0013 {
0014     Q_OBJECT
0015 public:
0016     explicit TeamChannelsComboBox(QWidget *parent = nullptr);
0017     ~TeamChannelsComboBox() override;
0018 
0019 private:
0020     LIBRUQOLAWIDGETS_NO_EXPORT void init();
0021 };