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

0001 /*
0002    SPDX-FileCopyrightText: 2022-2024 Laurent Montel <montel@kde.org>
0003 
0004    SPDX-License-Identifier: LGPL-2.0-or-later
0005 */
0006 #pragma once
0007 #include "libruqolawidgets_private_export.h"
0008 #include <QLabel>
0009 
0010 class LIBRUQOLAWIDGETS_TESTS_EXPORT RoomAvatarReadOnlyWidget : public QLabel
0011 {
0012     Q_OBJECT
0013 public:
0014     explicit RoomAvatarReadOnlyWidget(QWidget *parent = nullptr);
0015     ~RoomAvatarReadOnlyWidget() override;
0016 
0017     void setCurrentIconPath(const QString &currentPath);
0018 };