mirror of
https://github.com/Nheko-Reborn/nheko.git
synced 2024-11-01 10:20:47 +03:00
30 lines
645 B
C++
30 lines
645 B
C++
// 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>
|
|
#include <functional>
|
|
|
|
using AvatarCallback = std::function<void(QPixmap)>;
|
|
|
|
class AvatarProxy : public QObject
|
|
{
|
|
Q_OBJECT
|
|
|
|
signals:
|
|
void avatarDownloaded(QPixmap pm);
|
|
};
|
|
|
|
namespace AvatarProvider {
|
|
void
|
|
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);
|
|
}
|