matrixion/src/AvatarProvider.h

31 lines
645 B
C
Raw Normal View History

2021-03-05 02:35:15 +03:00
// SPDX-FileCopyrightText: 2017 Konstantinos Sideris <siderisk@auth.gr>
// SPDX-FileCopyrightText: 2021 Nheko Contributors
//
// SPDX-License-Identifier: GPL-3.0-or-later
#pragma once
#include <QPixmap>
2018-01-03 21:52:12 +03:00
#include <functional>
2021-03-17 21:08:17 +03:00
using AvatarCallback = std::function<void(QPixmap)>;
class AvatarProxy : public QObject
{
2017-09-10 12:59:21 +03:00
Q_OBJECT
signals:
2021-03-17 21:08:17 +03:00
void avatarDownloaded(QPixmap pm);
};
namespace AvatarProvider {
void
2021-03-17 21:08:17 +03:00
resolve(QString avatarUrl, int size, QObject *receiver, AvatarCallback cb);
void
resolve(const QString &room_id,
const QString &user_id,
int size,
QObject *receiver,
AvatarCallback cb);
}