mirror-chatterino2/src/widgets/emotepopup.hpp

24 lines
435 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"
2017-11-12 17:21:50 +01:00
#include "widgets/helper/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:
2017-09-17 02:13:57 +02:00
explicit EmotePopup(ColorScheme &, EmoteManager &, WindowManager &);
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
};
}
}