mirror of
https://github.com/Chatterino/chatterino2.git
synced 2024-11-13 19:49:51 +01:00
703f3717e2
Co-authored-by: LosFarmosCTL <80157503+LosFarmosCTL@users.noreply.github.com> Co-authored-by: Paweł <zneix@zneix.eu> Co-authored-by: Felanbird <41973452+Felanbird@users.noreply.github.com> Co-authored-by: Rasmus Karlsson <rasmus.karlsson@pajlada.com>
38 lines
744 B
C++
38 lines
744 B
C++
#pragma once
|
|
|
|
#include "widgets/BasePopup.hpp"
|
|
#include "widgets/Notebook.hpp"
|
|
|
|
#include <pajlada/signals/signal.hpp>
|
|
|
|
namespace chatterino {
|
|
|
|
struct Link;
|
|
class ChannelView;
|
|
class Channel;
|
|
using ChannelPtr = std::shared_ptr<Channel>;
|
|
|
|
class EmotePopup : public BasePopup
|
|
{
|
|
public:
|
|
EmotePopup(QWidget *parent = nullptr);
|
|
|
|
void loadChannel(ChannelPtr channel);
|
|
void loadEmojis();
|
|
|
|
virtual void closeEvent(QCloseEvent *event) override;
|
|
|
|
pajlada::Signals::Signal<Link> linkClicked;
|
|
|
|
private:
|
|
ChannelView *globalEmotesView_{};
|
|
ChannelView *channelEmotesView_{};
|
|
ChannelView *subEmotesView_{};
|
|
ChannelView *viewEmojis_{};
|
|
|
|
Notebook *notebook_;
|
|
void addShortcuts() override;
|
|
};
|
|
|
|
} // namespace chatterino
|