2018-01-05 13:42:23 +01:00
|
|
|
#pragma once
|
|
|
|
|
2018-06-26 14:09:39 +02:00
|
|
|
#include "messages/LimitedQueueSnapshot.hpp"
|
|
|
|
#include "messages/Message.hpp"
|
|
|
|
#include "widgets/BaseWindow.hpp"
|
2018-01-05 13:42:23 +01:00
|
|
|
|
2018-04-03 02:55:32 +02:00
|
|
|
#include <memory>
|
|
|
|
|
2018-01-05 13:42:23 +01:00
|
|
|
class QLineEdit;
|
2018-04-03 02:55:32 +02:00
|
|
|
|
2018-01-05 13:42:23 +01:00
|
|
|
namespace chatterino {
|
2018-04-03 02:55:32 +02:00
|
|
|
|
2018-01-05 13:42:23 +01:00
|
|
|
class Channel;
|
|
|
|
class ChannelView;
|
|
|
|
|
2018-01-14 21:55:36 +01:00
|
|
|
class SearchPopup : public BaseWindow
|
2018-01-05 13:42:23 +01:00
|
|
|
{
|
|
|
|
public:
|
|
|
|
SearchPopup();
|
|
|
|
|
|
|
|
void setChannel(std::shared_ptr<Channel> channel);
|
|
|
|
|
|
|
|
private:
|
2018-06-28 19:38:57 +02:00
|
|
|
LimitedQueueSnapshot<MessagePtr> snapshot;
|
2018-01-05 13:42:23 +01:00
|
|
|
QLineEdit *searchInput;
|
|
|
|
ChannelView *channelView;
|
|
|
|
|
|
|
|
void initLayout();
|
|
|
|
void performSearch();
|
|
|
|
};
|
2018-04-03 02:55:32 +02:00
|
|
|
|
2018-01-14 21:55:36 +01:00
|
|
|
} // namespace chatterino
|