33 lines
727 B
C++
33 lines
727 B
C++
#pragma once
|
|
|
|
#include "widgets/listview/GenericListItem.hpp"
|
|
|
|
#include <functional>
|
|
#include <memory>
|
|
|
|
namespace chatterino {
|
|
|
|
struct Emote;
|
|
using EmotePtr = std::shared_ptr<const Emote>;
|
|
|
|
class InputCompletionItem : public GenericListItem
|
|
{
|
|
using ActionCallback = std::function<void(const QString &)>;
|
|
|
|
public:
|
|
InputCompletionItem(const EmotePtr &emote, const QString &text,
|
|
ActionCallback action);
|
|
|
|
// GenericListItem interface
|
|
void action() override;
|
|
void paint(QPainter *painter, const QRect &rect) const override;
|
|
QSize sizeHint(const QRect &rect) const override;
|
|
|
|
private:
|
|
EmotePtr emote_;
|
|
QString text_;
|
|
ActionCallback action_;
|
|
};
|
|
|
|
} // namespace chatterino
|