mirror-chatterino2/src/widgets/emotepopup.hpp

25 lines
448 B
C++
Raw Normal View History

2017-09-15 17:23:49 +02:00
#pragma once
#include "channel.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-12-17 02:18:13 +01:00
explicit EmotePopup(ColorScheme &);
2017-09-15 17:23:49 +02:00
void loadChannel(std::shared_ptr<Channel> channel);
2017-12-19 03:18:00 +01:00
void loadEmojis();
private:
2017-12-19 03:18:00 +01:00
ChannelView *viewEmotes;
ChannelView *viewEmojis;
2017-09-15 17:23:49 +02:00
};
2017-12-17 02:10:35 +01:00
} // namespace widgets
} // namespace chatterino