mirror of
https://github.com/Chatterino/chatterino2.git
synced 2024-11-13 19:49:51 +01:00
32 lines
633 B
C++
32 lines
633 B
C++
#pragma once
|
|
|
|
#include <memory>
|
|
|
|
#include "messages/limitedqueuesnapshot.hpp"
|
|
#include "messages/message.hpp"
|
|
#include "widgets/basewindow.hpp"
|
|
|
|
class QLineEdit;
|
|
namespace chatterino {
|
|
class Channel;
|
|
namespace widgets {
|
|
class ChannelView;
|
|
|
|
class SearchPopup : public BaseWindow
|
|
{
|
|
public:
|
|
SearchPopup();
|
|
|
|
void setChannel(std::shared_ptr<Channel> channel);
|
|
|
|
private:
|
|
messages::LimitedQueueSnapshot<messages::MessagePtr> snapshot;
|
|
QLineEdit *searchInput;
|
|
ChannelView *channelView;
|
|
|
|
void initLayout();
|
|
void performSearch();
|
|
};
|
|
} // namespace widgets
|
|
} // namespace chatterino
|