added emojis
This commit is contained in:
+16
-2
@@ -1,11 +1,25 @@
|
||||
#include "lazyloadedimage.h"
|
||||
|
||||
LazyLoadedImage::LazyLoadedImage(QString url)
|
||||
LazyLoadedImage::LazyLoadedImage(const QString& url, qreal scale, const QString& name, const QString& tooltip, const QMargins& margin, bool isHat)
|
||||
: m_url(url)
|
||||
, m_name(name)
|
||||
, m_tooltip(tooltip)
|
||||
, m_animated(false)
|
||||
, m_margin(margin)
|
||||
, m_ishat(isHat)
|
||||
, m_scale(scale)
|
||||
{
|
||||
|
||||
}
|
||||
|
||||
LazyLoadedImage::LazyLoadedImage(QImage *image)
|
||||
LazyLoadedImage::LazyLoadedImage(QImage *image, qreal scale, const QString& name, const QString& tooltip, const QMargins& margin, bool isHat)
|
||||
: m_name(name)
|
||||
, m_tooltip(tooltip)
|
||||
, m_animated(false)
|
||||
, m_margin(margin)
|
||||
, m_ishat(isHat)
|
||||
, m_scale(scale)
|
||||
, m_image(image)
|
||||
{
|
||||
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user