2020-08-15 18:59:17 +02:00
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include <functional>
|
|
|
|
#include "common/Channel.hpp"
|
|
|
|
#include "widgets/BasePopup.hpp"
|
|
|
|
#include "widgets/listview/GenericListModel.hpp"
|
|
|
|
|
|
|
|
namespace chatterino {
|
|
|
|
|
|
|
|
class GenericListView;
|
|
|
|
|
|
|
|
class EmoteInputPopup : public BasePopup
|
|
|
|
{
|
|
|
|
using ActionCallback = std::function<void(const QString &)>;
|
|
|
|
|
2020-08-15 21:20:23 +02:00
|
|
|
constexpr static int maxEmoteCount = 200;
|
2020-08-15 18:59:17 +02:00
|
|
|
|
|
|
|
public:
|
|
|
|
EmoteInputPopup(QWidget *parent = nullptr);
|
|
|
|
|
|
|
|
void updateEmotes(const QString &text, ChannelPtr channel);
|
|
|
|
virtual bool eventFilter(QObject *, QEvent *event) override;
|
|
|
|
|
|
|
|
void setInputAction(ActionCallback callback);
|
|
|
|
|
2020-08-15 21:34:57 +02:00
|
|
|
protected:
|
|
|
|
void showEvent(QShowEvent *event) override;
|
|
|
|
void hideEvent(QHideEvent *event) override;
|
|
|
|
|
2020-08-15 18:59:17 +02:00
|
|
|
private:
|
|
|
|
void initLayout();
|
|
|
|
|
|
|
|
struct {
|
|
|
|
GenericListView *listView;
|
|
|
|
} ui_;
|
|
|
|
|
|
|
|
GenericListModel model_;
|
|
|
|
ActionCallback callback_;
|
2020-08-15 21:34:57 +02:00
|
|
|
QTimer redrawTimer_;
|
2020-08-15 18:59:17 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
} // namespace chatterino
|