Display a userpic placeholder in the call panel.

This commit is contained in:
John Preston 2017-05-12 17:33:30 +03:00
parent 5fe75fbd5f
commit 7593be4361
3 changed files with 45 additions and 16 deletions

View File

@ -449,27 +449,34 @@ void Panel::refreshUserPhoto() {
_userPhotoFull = true; _userPhotoFull = true;
createUserpicCache(photo->full); createUserpicCache(photo->full);
} else if (_userPhoto.isNull()) { } else if (_userPhoto.isNull()) {
if (auto userpic = _user->currentUserpic()) { createUserpicCache(_user->currentUserpic());
createUserpicCache(userpic);
}
} }
} }
void Panel::createUserpicCache(ImagePtr image) { void Panel::createUserpicCache(ImagePtr image) {
auto size = st::callWidth * cIntRetinaFactor(); auto size = st::callWidth * cIntRetinaFactor();
auto options = _useTransparency ? (Images::Option::RoundedLarge | Images::Option::RoundedTopLeft | Images::Option::RoundedTopRight | Images::Option::Smooth) : Images::Option::None; auto options = _useTransparency ? (Images::Option::RoundedLarge | Images::Option::RoundedTopLeft | Images::Option::RoundedTopRight | Images::Option::Smooth) : Images::Option::None;
auto width = image->width(); if (image) {
auto height = image->height(); auto width = image->width();
if (width > height) { auto height = image->height();
width = qMax((width * size) / height, 1); if (width > height) {
height = size; width = qMax((width * size) / height, 1);
height = size;
} else {
height = qMax((height * size) / width, 1);
width = size;
}
_userPhoto = image->pixNoCache(width, height, options, st::callWidth, st::callWidth);
if (cRetina()) _userPhoto.setDevicePixelRatio(cRetinaFactor());
} else { } else {
height = qMax((height * size) / width, 1); auto filled = QImage(QSize(st::callWidth, st::callWidth) * cIntRetinaFactor(), QImage::Format_ARGB32_Premultiplied);
width = size; {
Painter p(&filled);
EmptyUserpic(_user->colorIndex(), _user->name).paintSquare(p, 0, 0, st::callWidth, st::callWidth);
}
Images::prepareRound(filled, ImageRoundRadius::Large, ImageRoundCorner::TopLeft | ImageRoundCorner::TopRight);
_userPhoto = App::pixmapFromImageInPlace(std::move(filled));
} }
_userPhoto = image->pixNoCache(width, height, options, st::callWidth, st::callWidth);
if (cRetina()) _userPhoto.setDevicePixelRatio(cRetinaFactor());
refreshCacheImageUserPhoto(); refreshCacheImageUserPhoto();
update(); update();

View File

@ -84,6 +84,7 @@ public:
void paint(Painter &p, int x, int y, int size); void paint(Painter &p, int x, int y, int size);
void paintRounded(Painter &p, int x, int y, int size); void paintRounded(Painter &p, int x, int y, int size);
void paintSquare(Painter &p, int x, int y, int size);
StorageKey uniqueKey() const; StorageKey uniqueKey() const;
private: private:
@ -126,6 +127,12 @@ void EmptyUserpic::Impl::paintRounded(Painter &p, int x, int y, int size) {
}); });
} }
void EmptyUserpic::Impl::paintSquare(Painter &p, int x, int y, int size) {
paint(p, x, y, size, [&p, x, y, size] {
p.fillRect(x, y, size, size, p.brush());
});
}
StorageKey EmptyUserpic::Impl::uniqueKey() const { StorageKey EmptyUserpic::Impl::uniqueKey() const {
auto first = 0xFFFFFFFF00000000ULL | anim::getPremultiplied(_color->c); auto first = 0xFFFFFFFF00000000ULL | anim::getPremultiplied(_color->c);
auto second = uint64(0); auto second = uint64(0);
@ -204,17 +211,22 @@ void EmptyUserpic::clear() {
} }
void EmptyUserpic::paint(Painter &p, int x, int y, int outerWidth, int size) const { void EmptyUserpic::paint(Painter &p, int x, int y, int outerWidth, int size) const {
t_assert(_impl != nullptr); Expects(_impl != nullptr);
_impl->paint(p, rtl() ? (outerWidth - x - size) : x, y, size); _impl->paint(p, rtl() ? (outerWidth - x - size) : x, y, size);
} }
void EmptyUserpic::paintRounded(Painter &p, int x, int y, int outerWidth, int size) const { void EmptyUserpic::paintRounded(Painter &p, int x, int y, int outerWidth, int size) const {
t_assert(_impl != nullptr); Expects(_impl != nullptr);
_impl->paintRounded(p, rtl() ? (outerWidth - x - size) : x, y, size); _impl->paintRounded(p, rtl() ? (outerWidth - x - size) : x, y, size);
} }
void EmptyUserpic::paintSquare(Painter &p, int x, int y, int outerWidth, int size) const {
Expects(_impl != nullptr);
_impl->paintSquare(p, rtl() ? (outerWidth - x - size) : x, y, size);
}
StorageKey EmptyUserpic::uniqueKey() const { StorageKey EmptyUserpic::uniqueKey() const {
t_assert(_impl != nullptr); Expects(_impl != nullptr);
return _impl->uniqueKey(); return _impl->uniqueKey();
} }
@ -328,6 +340,14 @@ void PeerData::paintUserpicRounded(Painter &p, int x, int y, int size) const {
} }
} }
void PeerData::paintUserpicSquare(Painter &p, int x, int y, int size) const {
if (auto userpic = currentUserpic()) {
p.drawPixmap(x, y, userpic->pix(size, size));
} else {
_userpicEmpty.paintSquare(p, x, y, x + size + x, size);
}
}
StorageKey PeerData::userpicUniqueKey() const { StorageKey PeerData::userpicUniqueKey() const {
if (photoLoc.isNull() || !_userpic || !_userpic->loaded()) { if (photoLoc.isNull() || !_userpic || !_userpic->loaded()) {
return _userpicEmpty.uniqueKey(); return _userpicEmpty.uniqueKey();

View File

@ -244,6 +244,7 @@ public:
void paint(Painter &p, int x, int y, int outerWidth, int size) const; void paint(Painter &p, int x, int y, int outerWidth, int size) const;
void paintRounded(Painter &p, int x, int y, int outerWidth, int size) const; void paintRounded(Painter &p, int x, int y, int outerWidth, int size) const;
void paintSquare(Painter &p, int x, int y, int outerWidth, int size) const;
QPixmap generate(int size); QPixmap generate(int size);
StorageKey uniqueKey() const; StorageKey uniqueKey() const;
@ -345,6 +346,7 @@ public:
paintUserpic(p, rtl() ? (w - x - size) : x, y, size); paintUserpic(p, rtl() ? (w - x - size) : x, y, size);
} }
void paintUserpicRounded(Painter &p, int x, int y, int size) const; void paintUserpicRounded(Painter &p, int x, int y, int size) const;
void paintUserpicSquare(Painter &p, int x, int y, int size) const;
void loadUserpic(bool loadFirst = false, bool prior = true) { void loadUserpic(bool loadFirst = false, bool prior = true) {
_userpic->load(loadFirst, prior); _userpic->load(loadFirst, prior);
} }