mirror-chatterino2/src/widgets/dialogs/NotificationPopup.hpp

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

30 lines
529 B
C++
Raw Normal View History

2018-05-23 22:27:29 +02:00
#pragma once
2018-06-26 14:09:39 +02:00
#include "widgets/BaseWindow.hpp"
2018-05-23 22:27:29 +02:00
namespace chatterino {
2018-05-23 22:27:29 +02:00
class ChannelView;
class Channel;
using ChannelPtr = std::shared_ptr<Channel>;
struct Message;
using MessagePtr = std::shared_ptr<const Message>;
2018-05-23 22:27:29 +02:00
class NotificationPopup : public BaseWindow
{
public:
enum Location { TopLeft, TopRight, BottomLeft, BottomRight };
NotificationPopup();
void addMessage(MessagePtr msg);
2018-05-23 22:27:29 +02:00
void updatePosition();
2018-05-23 22:27:29 +02:00
private:
2018-07-06 19:23:47 +02:00
ChannelView *channelView_;
ChannelPtr channel_;
2018-05-23 22:27:29 +02:00
};
2018-05-23 22:27:29 +02:00
} // namespace chatterino