2018-01-05 13:42:23 +01:00
|
|
|
#pragma once
|
|
|
|
|
2018-06-26 14:09:39 +02:00
|
|
|
#include "messages/LimitedQueueSnapshot.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-08-11 22:23:06 +02:00
|
|
|
struct Message;
|
|
|
|
using MessagePtr = std::shared_ptr<const Message>;
|
|
|
|
|
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:
|
|
|
|
void initLayout();
|
|
|
|
void performSearch();
|
2018-07-06 19:23:47 +02:00
|
|
|
|
|
|
|
LimitedQueueSnapshot<MessagePtr> snapshot_;
|
|
|
|
QLineEdit *searchInput_;
|
|
|
|
ChannelView *channelView_;
|
2018-01-05 13:42:23 +01:00
|
|
|
};
|
2018-04-03 02:55:32 +02:00
|
|
|
|
2018-01-14 21:55:36 +01:00
|
|
|
} // namespace chatterino
|