mirror of
https://github.com/Chatterino/chatterino2.git
synced 2024-11-13 19:49:51 +01:00
23 lines
390 B
C++
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
|