mirror of
https://github.com/Nheko-Reborn/nheko.git
synced 2024-11-23 03:18:49 +03:00
31 lines
662 B
C++
31 lines
662 B
C++
// SPDX-FileCopyrightText: 2021 Nheko Contributors
|
|
// SPDX-FileCopyrightText: 2022 Nheko Contributors
|
|
//
|
|
// SPDX-License-Identifier: GPL-3.0-or-later
|
|
|
|
#pragma once
|
|
|
|
#include <QObject>
|
|
|
|
#include <vector>
|
|
|
|
#include <mtx/events.hpp>
|
|
#include <mtx/events/presence.hpp>
|
|
|
|
class PresenceEmitter : public QObject
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
PresenceEmitter(QObject *p = nullptr)
|
|
: QObject(p)
|
|
{}
|
|
|
|
void sync(const std::vector<mtx::events::Event<mtx::events::presence::Presence>> &presences);
|
|
|
|
Q_INVOKABLE QString userPresence(QString id) const;
|
|
Q_INVOKABLE QString userStatus(QString id) const;
|
|
|
|
signals:
|
|
void presenceChanged(QString userid);
|
|
};
|