mirror of
https://github.com/Chatterino/chatterino2.git
synced 2024-11-13 19:49:51 +01:00
10850c0ec7
refactored the rendering process
32 lines
586 B
C++
32 lines
586 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::MessagePtr> snapshot;
|
|
QLineEdit *searchInput;
|
|
ChannelView *channelView;
|
|
|
|
void initLayout();
|
|
void performSearch();
|
|
};
|
|
}
|
|
}
|