mirror of
https://github.com/Chatterino/chatterino2.git
synced 2024-11-13 19:49:51 +01:00
53 lines
1.2 KiB
C++
53 lines
1.2 KiB
C++
#pragma once
|
|
|
|
#include "widgets/BasePopup.hpp"
|
|
|
|
#include <pajlada/signals/signal.hpp>
|
|
#include <QLineEdit>
|
|
|
|
namespace chatterino {
|
|
|
|
struct Link;
|
|
class ChannelView;
|
|
class Channel;
|
|
using ChannelPtr = std::shared_ptr<Channel>;
|
|
class Notebook;
|
|
class TwitchChannel;
|
|
|
|
class EmotePopup : public BasePopup
|
|
{
|
|
public:
|
|
EmotePopup(QWidget *parent = nullptr);
|
|
|
|
void loadChannel(ChannelPtr channel);
|
|
|
|
void closeEvent(QCloseEvent *event) override;
|
|
|
|
pajlada::Signals::Signal<Link> linkClicked;
|
|
|
|
private:
|
|
ChannelView *globalEmotesView_{};
|
|
ChannelView *channelEmotesView_{};
|
|
ChannelView *subEmotesView_{};
|
|
ChannelView *viewEmojis_{};
|
|
/**
|
|
* @brief Visible only when the user has specified a search query into the `search_` input.
|
|
* Otherwise the `notebook_` and all other views are visible.
|
|
*/
|
|
ChannelView *searchView_{};
|
|
|
|
ChannelPtr channel_;
|
|
TwitchChannel *twitchChannel_{};
|
|
|
|
QLineEdit *search_;
|
|
Notebook *notebook_;
|
|
|
|
void filterTwitchEmotes(std::shared_ptr<Channel> searchChannel,
|
|
const QString &searchText);
|
|
void filterEmotes(const QString &text);
|
|
void addShortcuts() override;
|
|
bool eventFilter(QObject *object, QEvent *event) override;
|
|
};
|
|
|
|
} // namespace chatterino
|