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