mirror of
https://github.com/Nheko-Reborn/nheko.git
synced 2024-11-01 02:10:47 +03:00
35 lines
723 B
C++
35 lines
723 B
C++
// SPDX-FileCopyrightText: 2021 Nheko Contributors
|
|
//
|
|
// SPDX-License-Identifier: GPL-3.0-or-later
|
|
|
|
#pragma once
|
|
|
|
#include <QObject>
|
|
|
|
#include <mtx/events/power_levels.hpp>
|
|
|
|
class TimelineModel;
|
|
|
|
class Permissions : public QObject
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
Permissions(QString roomId, QObject *parent = nullptr);
|
|
|
|
Q_INVOKABLE bool canInvite();
|
|
Q_INVOKABLE bool canBan();
|
|
Q_INVOKABLE bool canKick();
|
|
|
|
Q_INVOKABLE bool canRedact();
|
|
Q_INVOKABLE bool canChange(int eventType);
|
|
Q_INVOKABLE bool canSend(int eventType);
|
|
|
|
Q_INVOKABLE bool canPingRoom();
|
|
|
|
void invalidate();
|
|
|
|
private:
|
|
QString roomId_;
|
|
mtx::events::state::PowerLevels pl;
|
|
};
|