51 lines
1.2 KiB
C++
51 lines
1.2 KiB
C++
#ifndef QTMATERIALAVATAR_H
|
|
#define QTMATERIALAVATAR_H
|
|
|
|
#include <QtWidgets/QWidget>
|
|
#include "lib/qtmaterialtheme.h"
|
|
|
|
class QtMaterialAvatarPrivate;
|
|
|
|
class QtMaterialAvatar : public QWidget
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
explicit QtMaterialAvatar(QWidget *parent = 0);
|
|
explicit QtMaterialAvatar(const QIcon &icon, QWidget *parent = 0);
|
|
explicit QtMaterialAvatar(const QChar &letter, QWidget *parent = 0);
|
|
explicit QtMaterialAvatar(const QImage &image, QWidget *parent = 0);
|
|
~QtMaterialAvatar();
|
|
|
|
void setUseThemeColors(bool value);
|
|
bool useThemeColors() const;
|
|
|
|
void setTextColor(const QColor &color);
|
|
QColor textColor() const;
|
|
|
|
void setBackgroundColor(const QColor &color);
|
|
QColor backgroundColor() const;
|
|
|
|
QSize sizeHint() const Q_DECL_OVERRIDE;
|
|
|
|
void setSize(int size);
|
|
int size() const;
|
|
|
|
void setLetter(const QChar &letter);
|
|
void setImage(const QImage &image);
|
|
void setIcon(const QIcon &icon);
|
|
|
|
Material::AvatarType type() const;
|
|
|
|
protected:
|
|
void paintEvent(QPaintEvent *event) Q_DECL_OVERRIDE;
|
|
|
|
const QScopedPointer<QtMaterialAvatarPrivate> d_ptr;
|
|
|
|
private:
|
|
Q_DISABLE_COPY(QtMaterialAvatar)
|
|
Q_DECLARE_PRIVATE(QtMaterialAvatar)
|
|
};
|
|
|
|
#endif // QTMATERIALAVATAR_H
|