Warning, file /network/ruqola/src/widgets/room/readonlylineeditwidget.h was not indexed or was modified since last indexation (in which case cross-reference links may be missing, inaccurate or erroneous).
0001 /* 0002 SPDX-FileCopyrightText: 2020-2024 Laurent Montel <montel@kde.org> 0003 0004 SPDX-License-Identifier: LGPL-2.0-or-later 0005 */ 0006 0007 #pragma once 0008 0009 #include "libruqolawidgets_private_export.h" 0010 #include <QWidget> 0011 class QLabel; 0012 class LIBRUQOLAWIDGETS_TESTS_EXPORT ReadOnlyLineEditWidget : public QWidget 0013 { 0014 Q_OBJECT 0015 public: 0016 explicit ReadOnlyLineEditWidget(QWidget *parent = nullptr); 0017 ~ReadOnlyLineEditWidget() override; 0018 void setMessage(const QString &str); 0019 0020 private: 0021 QLabel *const mLabel; 0022 };