matrixion/src/timeline/PresenceEmitter.h

32 lines
617 B
C
Raw Normal View History

// SPDX-FileCopyrightText: Nheko Contributors
2021-12-30 08:20:10 +03:00
//
// SPDX-License-Identifier: GPL-3.0-or-later
#pragma once
#include <QObject>
#include <vector>
#include <mtx/events.hpp>
#include <mtx/events/presence.hpp>
2022-10-10 15:38:29 +03:00
class PresenceEmitter final : public QObject
{
Q_OBJECT
public:
PresenceEmitter(QObject *p = nullptr)
: QObject(p)
2022-09-25 21:05:08 +03:00
{
}
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);
};