2017-09-15 17:23:49 +02:00
|
|
|
#pragma once
|
|
|
|
|
2018-06-26 14:09:39 +02:00
|
|
|
#include "widgets/BaseWindow.hpp"
|
2017-09-15 17:23:49 +02:00
|
|
|
|
2018-01-24 20:58:53 +01:00
|
|
|
#include <pajlada/signals/signal.hpp>
|
|
|
|
|
2017-09-15 17:23:49 +02:00
|
|
|
namespace chatterino {
|
|
|
|
|
2018-09-30 19:15:17 +02:00
|
|
|
struct Link;
|
2018-08-11 22:23:06 +02:00
|
|
|
class ChannelView;
|
|
|
|
class Channel;
|
|
|
|
using ChannelPtr = std::shared_ptr<Channel>;
|
|
|
|
|
2018-01-14 21:55:36 +01:00
|
|
|
class EmotePopup : public BaseWindow
|
2017-09-15 17:23:49 +02:00
|
|
|
{
|
|
|
|
public:
|
2018-04-27 22:11:19 +02:00
|
|
|
EmotePopup();
|
2017-09-15 17:23:49 +02:00
|
|
|
|
2018-01-24 13:15:41 +01:00
|
|
|
void loadChannel(ChannelPtr channel);
|
2017-12-19 03:18:00 +01:00
|
|
|
void loadEmojis();
|
2017-09-16 00:05:06 +02:00
|
|
|
|
2018-06-28 19:38:57 +02:00
|
|
|
pajlada::Signals::Signal<Link> linkClicked;
|
2018-01-24 20:58:53 +01:00
|
|
|
|
2017-09-16 00:05:06 +02:00
|
|
|
private:
|
2018-08-11 14:20:53 +02:00
|
|
|
ChannelView *globalEmotesView_{};
|
|
|
|
ChannelView *channelEmotesView_{};
|
|
|
|
ChannelView *subEmotesView_{};
|
|
|
|
ChannelView *viewEmojis_{};
|
2017-09-15 17:23:49 +02:00
|
|
|
};
|
2017-12-17 02:10:35 +01:00
|
|
|
|
|
|
|
} // namespace chatterino
|