mirror of
https://github.com/Nheko-Reborn/nheko.git
synced 2024-11-26 13:08:48 +03:00
48 lines
1.2 KiB
C++
48 lines
1.2 KiB
C++
// SPDX-FileCopyrightText: 2021 Nheko Contributors
|
|
//
|
|
// SPDX-License-Identifier: GPL-3.0-or-later
|
|
|
|
#pragma once
|
|
|
|
#include <QImage>
|
|
#include <QPixmap>
|
|
#include <QWidget>
|
|
|
|
#include "Theme.h"
|
|
|
|
class Avatar : public QWidget
|
|
{
|
|
Q_OBJECT
|
|
|
|
Q_PROPERTY(QColor textColor WRITE setTextColor READ textColor)
|
|
Q_PROPERTY(QColor backgroundColor WRITE setBackgroundColor READ backgroundColor)
|
|
|
|
public:
|
|
explicit Avatar(QWidget *parent = nullptr, int size = ui::AvatarSize);
|
|
|
|
void setBackgroundColor(const QColor &color);
|
|
void setImage(const QString &avatar_url);
|
|
void setImage(const QString &room, const QString &user);
|
|
void setLetter(const QString &letter);
|
|
void setTextColor(const QColor &color);
|
|
void setDevicePixelRatio(double ratio);
|
|
|
|
QColor backgroundColor() const;
|
|
QColor textColor() const;
|
|
|
|
QSize sizeHint() const override;
|
|
|
|
protected:
|
|
void paintEvent(QPaintEvent *event) override;
|
|
|
|
private:
|
|
void init();
|
|
|
|
ui::AvatarType type_;
|
|
QString letter_;
|
|
QString avatar_url_, room_, user_;
|
|
QColor background_color_;
|
|
QColor text_color_;
|
|
QPixmap pixmap_;
|
|
int size_;
|
|
};
|