summary refs log tree commit diff
path: root/src/RoomsModel.h
blob: 255f207cdeabd31985965cd3e404ce1dc076983d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
// SPDX-FileCopyrightText: 2021 Nheko Contributors
//
// SPDX-License-Identifier: GPL-3.0-or-later

#pragma once

#include "Cache.h"

#include <QAbstractListModel>
#include <QString>

class RoomsModel : public QAbstractListModel
{
public:
        enum Roles
        {
                AvatarUrl = Qt::UserRole,
                RoomAlias,
                RoomID,
                RoomName,
        };

        RoomsModel(bool showOnlyRoomWithAliases = false, QObject *parent = nullptr);
        QHash<int, QByteArray> roleNames() const override;
        int rowCount(const QModelIndex &parent = QModelIndex()) const override
        {
                (void)parent;
                return (int)roomids.size();
        }
        QVariant data(const QModelIndex &index, int role) const override;

private:
        std::vector<QString> roomids;
        std::vector<QString> roomAliases;
        std::map<QString, RoomInfo> roomInfos;
        bool showOnlyRoomWithAliases_;
};