From 7593be43616fc0c633ede9fb3b0f80089e678a85 Mon Sep 17 00:00:00 2001 From: John Preston Date: Fri, 12 May 2017 17:33:30 +0300 Subject: [PATCH] Display a userpic placeholder in the call panel. --- Telegram/SourceFiles/calls/calls_panel.cpp | 33 +++++++++++++--------- Telegram/SourceFiles/structs.cpp | 26 +++++++++++++++-- Telegram/SourceFiles/structs.h | 2 ++ 3 files changed, 45 insertions(+), 16 deletions(-) diff --git a/Telegram/SourceFiles/calls/calls_panel.cpp b/Telegram/SourceFiles/calls/calls_panel.cpp index 943fb2abf..d47223b9c 100644 --- a/Telegram/SourceFiles/calls/calls_panel.cpp +++ b/Telegram/SourceFiles/calls/calls_panel.cpp @@ -449,27 +449,34 @@ void Panel::refreshUserPhoto() { _userPhotoFull = true; createUserpicCache(photo->full); } else if (_userPhoto.isNull()) { - if (auto userpic = _user->currentUserpic()) { - createUserpicCache(userpic); - } + createUserpicCache(_user->currentUserpic()); } } void Panel::createUserpicCache(ImagePtr image) { auto size = st::callWidth * cIntRetinaFactor(); auto options = _useTransparency ? (Images::Option::RoundedLarge | Images::Option::RoundedTopLeft | Images::Option::RoundedTopRight | Images::Option::Smooth) : Images::Option::None; - auto width = image->width(); - auto height = image->height(); - if (width > height) { - width = qMax((width * size) / height, 1); - height = size; + if (image) { + auto width = image->width(); + auto height = image->height(); + if (width > height) { + 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 { - height = qMax((height * size) / width, 1); - width = size; + auto filled = QImage(QSize(st::callWidth, st::callWidth) * cIntRetinaFactor(), QImage::Format_ARGB32_Premultiplied); + { + 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(); update(); diff --git a/Telegram/SourceFiles/structs.cpp b/Telegram/SourceFiles/structs.cpp index 7ea004c36..3f45e9606 100644 --- a/Telegram/SourceFiles/structs.cpp +++ b/Telegram/SourceFiles/structs.cpp @@ -84,6 +84,7 @@ public: void paint(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; 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 { auto first = 0xFFFFFFFF00000000ULL | anim::getPremultiplied(_color->c); 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 { - t_assert(_impl != nullptr); + Expects(_impl != nullptr); _impl->paint(p, rtl() ? (outerWidth - x - size) : x, y, size); } 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); } +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 { - t_assert(_impl != nullptr); + Expects(_impl != nullptr); 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 { if (photoLoc.isNull() || !_userpic || !_userpic->loaded()) { return _userpicEmpty.uniqueKey(); diff --git a/Telegram/SourceFiles/structs.h b/Telegram/SourceFiles/structs.h index e899e012a..64a6ba384 100644 --- a/Telegram/SourceFiles/structs.h +++ b/Telegram/SourceFiles/structs.h @@ -244,6 +244,7 @@ public: 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 paintSquare(Painter &p, int x, int y, int outerWidth, int size) const; QPixmap generate(int size); StorageKey uniqueKey() const; @@ -345,6 +346,7 @@ public: paintUserpic(p, rtl() ? (w - x - size) : x, y, size); } 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) { _userpic->load(loadFirst, prior); }