mirror-chatterino2/src/widgets/emotepopup.hpp

24 lines
411 B
C++
Raw Normal View History

2017-09-15 17:23:49 +02:00
#pragma once
#include "channel.hpp"
#include "emotemanager.hpp"
#include "widgets/basewidget.hpp"
#include "widgets/channelview.hpp"
2017-09-15 17:23:49 +02:00
namespace chatterino {
namespace widgets {
class EmotePopup : public BaseWidget
2017-09-15 17:23:49 +02:00
{
public:
explicit EmotePopup(ColorScheme &, EmoteManager &);
2017-09-15 17:23:49 +02:00
void loadChannel(std::shared_ptr<Channel> channel);
private:
ChannelView *view;
EmoteManager &emoteManager;
2017-09-15 17:23:49 +02:00
};
}
}