mirror of
https://github.com/Chatterino/chatterino2.git
synced 2024-11-13 19:49:51 +01:00
24 lines
428 B
C++
24 lines
428 B
C++
#pragma once
|
|
|
|
#include "channel.hpp"
|
|
#include "emotemanager.hpp"
|
|
#include "widgets/basewidget.hpp"
|
|
#include "widgets/channelview.hpp"
|
|
|
|
namespace chatterino {
|
|
namespace widgets {
|
|
|
|
class EmotePopup : public BaseWidget
|
|
{
|
|
public:
|
|
explicit EmotePopup(ColorScheme &, EmoteManager &, WindowManager &);
|
|
|
|
void loadChannel(std::shared_ptr<Channel> channel);
|
|
|
|
private:
|
|
ChannelView *view;
|
|
EmoteManager &emoteManager;
|
|
};
|
|
}
|
|
}
|