mirror-chatterino2/src/widgets/emotepopup.hpp
fourtf 10850c0ec7 I BROKE EVERYTHING
refactored the rendering process
2018-01-11 20:17:41 +01:00

25 lines
450 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(SharedChannel channel);
void loadEmojis();
private:
ChannelView *viewEmotes;
ChannelView *viewEmojis;
};
} // namespace widgets
} // namespace chatterino