mirror of
https://github.com/Chatterino/chatterino2.git
synced 2024-11-13 19:49:51 +01:00
25 lines
461 B
C++
25 lines
461 B
C++
#pragma once
|
|
|
|
#include "channel.hpp"
|
|
#include "widgets/basewidget.hpp"
|
|
#include "widgets/helper/channelview.hpp"
|
|
|
|
namespace chatterino {
|
|
namespace widgets {
|
|
|
|
class EmotePopup : public BaseWidget
|
|
{
|
|
public:
|
|
explicit EmotePopup(singletons::ThemeManager &);
|
|
|
|
void loadChannel(std::shared_ptr<Channel> channel);
|
|
void loadEmojis();
|
|
|
|
private:
|
|
ChannelView *viewEmotes;
|
|
ChannelView *viewEmojis;
|
|
};
|
|
|
|
} // namespace widgets
|
|
} // namespace chatterino
|