File indexing completed on 2024-12-08 04:34:23
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 <QWidget> 0010 #include <TextEmoticonsWidgets/EmoticonTextEditSelector> 0011 class RocketChatAccount; 0012 class EmoticonMenuWidget : public TextEmoticonsWidgets::EmoticonTextEditSelector 0013 { 0014 Q_OBJECT 0015 public: 0016 explicit EmoticonMenuWidget(QWidget *parent = nullptr); 0017 ~EmoticonMenuWidget() override; 0018 0019 void setCurrentRocketChatAccount(RocketChatAccount *currentRocketChatAccount); 0020 0021 protected: 0022 QSize sizeHint() const override; 0023 };