mirror of
https://github.com/Nheko-Reborn/nheko.git
synced 2024-11-22 11:00:48 +03:00
62 lines
1.2 KiB
C
62 lines
1.2 KiB
C
|
// SPDX-FileCopyrightText: 2021 Nheko Contributors
|
||
|
// SPDX-FileCopyrightText: 2022 Nheko Contributors
|
||
|
//
|
||
|
// SPDX-License-Identifier: GPL-3.0-or-later
|
||
|
|
||
|
#pragma once
|
||
|
|
||
|
#include <QAbstractListModel>
|
||
|
#include <QString>
|
||
|
|
||
|
class CommandCompleter final : public QAbstractListModel
|
||
|
{
|
||
|
public:
|
||
|
enum Roles
|
||
|
{
|
||
|
Name = Qt::UserRole,
|
||
|
Description,
|
||
|
};
|
||
|
|
||
|
enum Commands
|
||
|
{
|
||
|
Me,
|
||
|
React,
|
||
|
Join,
|
||
|
Knock,
|
||
|
Part,
|
||
|
Leave,
|
||
|
Invite,
|
||
|
Kick,
|
||
|
Ban,
|
||
|
Unban,
|
||
|
Redact,
|
||
|
Roomnick,
|
||
|
Shrug,
|
||
|
Fliptable,
|
||
|
Unfliptable,
|
||
|
Sovietflip,
|
||
|
ClearTimeline,
|
||
|
ResetState,
|
||
|
RotateMegolmSession,
|
||
|
Md,
|
||
|
Plain,
|
||
|
Rainbow,
|
||
|
RainbowMe,
|
||
|
Notice,
|
||
|
RainbowNotice,
|
||
|
Goto,
|
||
|
ConvertToDm,
|
||
|
ConvertToRoom,
|
||
|
COUNT,
|
||
|
};
|
||
|
|
||
|
CommandCompleter(QObject *parent = nullptr);
|
||
|
QHash<int, QByteArray> roleNames() const override;
|
||
|
int rowCount(const QModelIndex &parent = QModelIndex()) const override
|
||
|
{
|
||
|
(void)parent;
|
||
|
return (int)Commands::COUNT;
|
||
|
}
|
||
|
QVariant data(const QModelIndex &index, int role) const override;
|
||
|
};
|