mirror-chatterino2/src/util/completionmodel.hpp

103 lines
2.5 KiB
C++
Raw Normal View History

2017-12-31 00:50:07 +01:00
#pragma once
#include "common.hpp"
2017-12-31 00:50:07 +01:00
#include <QAbstractListModel>
#include <set>
2017-12-31 00:50:07 +01:00
#include <string>
namespace chatterino {
2017-12-31 00:50:07 +01:00
class CompletionModel : public QAbstractListModel
{
struct TaggedString {
QString str;
2017-12-31 00:50:07 +01:00
// Type will help decide the lifetime of the tagged strings
enum Type {
Username,
2017-12-31 00:50:07 +01:00
// Emotes
FFZGlobalEmote = 20,
FFZChannelEmote,
BTTVGlobalEmote,
BTTVChannelEmote,
TwitchGlobalEmote,
TwitchSubscriberEmote,
Emoji,
} type;
2017-12-31 00:50:07 +01:00
bool IsEmote() const
{
return this->type >= 20;
}
bool operator<(const TaggedString &that) const
{
if (this->IsEmote()) {
if (that.IsEmote()) {
int k = QString::compare(this->str, that.str, Qt::CaseInsensitive);
if (k == 0) {
return this->str > that.str;
} else {
return k < 0;
}
} else {
return true;
}
} else {
if (that.IsEmote()) {
return false;
} else {
int k = QString::compare(this->str, that.str, Qt::CaseInsensitive);
if (k == 0) {
return false;
} else {
return k < 0;
}
}
}
}
};
public:
CompletionModel(const QString &_channelName);
virtual int columnCount(const QModelIndex &) const override
{
return 1;
}
virtual QVariant data(const QModelIndex &index, int) const override
{
// TODO: Implement more safely
auto it = this->emotes.begin();
std::advance(it, index.row());
return QVariant(it->str);
}
virtual int rowCount(const QModelIndex &) const override
{
return this->emotes.size();
}
void refresh();
void addString(const std::string &str, TaggedString::Type type);
void addString(const QString &str, TaggedString::Type type);
void addUser(const QString &str);
private:
TaggedString createUser(const QString &str)
{
return TaggedString{str, TaggedString::Type::Username};
}
std::set<TaggedString> emotes;
2017-12-31 00:50:07 +01:00
QString channelName;
};
} // namespace chatterino