nheko/include/AvatarProvider.h

54 lines
1.5 KiB
C
Raw Normal View History

/*
* nheko Copyright (C) 2017 Konstantinos Sideris <siderisk@auth.gr>
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
#pragma once
#include <QImage>
#include <QSharedPointer>
#include <QUrl>
2018-01-03 19:52:12 +01:00
#include <functional>
2017-10-28 14:46:39 +02:00
class MatrixClient;
class TimelineItem;
2017-10-28 20:11:40 +02:00
struct AvatarData
{
QImage img;
QUrl url;
};
class AvatarProvider : public QObject
{
2017-09-10 11:59:21 +02:00
Q_OBJECT
public:
2017-09-10 11:59:21 +02:00
static void init(QSharedPointer<MatrixClient> client);
2018-01-03 17:05:49 +01:00
static void resolve(const QString &userId, std::function<void(QImage)> callback);
2017-09-10 11:59:21 +02:00
static void setAvatarUrl(const QString &userId, const QUrl &url);
2017-09-10 11:59:21 +02:00
static void clear();
private:
2017-09-10 11:59:21 +02:00
static void updateAvatar(const QString &uid, const QImage &img);
2017-09-10 11:59:21 +02:00
static QSharedPointer<MatrixClient> client_;
2017-10-28 20:11:40 +02:00
using UserID = QString;
static std::map<UserID, AvatarData> avatars_;
static std::map<UserID, std::vector<std::function<void(QImage)>>> toBeResolved_;
};