mirror-chatterino2/src/widgets/emotepopup.hpp
2017-12-17 02:18:13 +01:00

23 lines
390 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(ColorScheme &);
void loadChannel(std::shared_ptr<Channel> channel);
private:
ChannelView *view;
};
} // namespace widgets
} // namespace chatterino