You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
nheko/src/timeline/PresenceEmitter.h

31 lines
611 B

// SPDX-FileCopyrightText: 2021 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);
};