Improve trending stickers layout and position.

This commit is contained in:
John Preston 2020-04-20 16:24:29 +04:00
parent 54f757e770
commit dfc0491524
17 changed files with 22 additions and 33 deletions

Binary file not shown.

Before

Width:  |  Height:  |  Size: 763 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.6 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.5 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 173 B

After

Width:  |  Height:  |  Size: 506 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 120 B

After

Width:  |  Height:  |  Size: 1.0 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 145 B

After

Width:  |  Height:  |  Size: 1.6 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 204 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 342 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 522 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 535 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.7 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 527 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.7 KiB

View File

@ -89,11 +89,16 @@ stickersRowDisabledOpacity: 0.4;
stickersRowDuration: 200; stickersRowDuration: 200;
stickersSettings: icon {{ "emoji_settings", emojiIconFg }}; stickersSettings: icon {{ "emoji_settings", emojiIconFg }};
stickersTrending: icon {{ "emoji_trending", emojiIconFg }}; stickersTrending: icon {{ "stickers_add", emojiIconFg }};
stickersTrendingUnread: icon {
{ "stickers_add_unread", emojiIconFg },
{ "stickers_add_dot", dialogsUnreadBg }
};
stickersRecent: icon {{ "stickers_recent", emojiIconFg }};
stickersSearch: icon {{ "stickers_search", emojiIconFg, point(0px, 1px) }}; stickersSearch: icon {{ "stickers_search", emojiIconFg, point(0px, 1px) }};
stickersSettingsUnreadSize: 17px; stickersSettingsUnreadSize: 6px;
stickersSettingsUnreadPosition: point(4px, 5px); stickersSettingsUnreadPosition: point(6px, 10px);
filtersRemove: IconButton(stickersRemove) { filtersRemove: IconButton(stickersRemove) {
ripple: defaultRippleAnimation; ripple: defaultRippleAnimation;

View File

@ -138,7 +138,6 @@ private:
void finishDragging(); void finishDragging();
void paintStickerSettingsIcon(Painter &p) const; void paintStickerSettingsIcon(Painter &p) const;
void paintSearchIcon(Painter &p) const; void paintSearchIcon(Painter &p) const;
void paintFeaturedStickerSetsBadge(Painter &p, int iconLeft) const;
void paintSetIcon(Painter &p, const StickerIcon &icon, int x) const; void paintSetIcon(Painter &p, const StickerIcon &icon, int x) const;
void paintSelectionBar(Painter &p) const; void paintSelectionBar(Painter &p) const;
void paintLeftRightFading(Painter &p) const; void paintLeftRightFading(Painter &p) const;
@ -694,18 +693,6 @@ void StickersListWidget::Footer::paintSearchIcon(Painter &p) const {
st::stickersSearch.paint(p, searchLeft + (st::stickerIconWidth - st::stickersSearch.width()) / 2, _iconsTop + st::emojiCategory.iconPosition.y(), width()); st::stickersSearch.paint(p, searchLeft + (st::stickerIconWidth - st::stickersSearch.width()) / 2, _iconsTop + st::emojiCategory.iconPosition.y(), width());
} }
void StickersListWidget::Footer::paintFeaturedStickerSetsBadge(Painter &p, int iconLeft) const {
if (const auto unread = _pan->session().data().featuredStickerSetsUnreadCount()) {
Dialogs::Layout::UnreadBadgeStyle unreadSt;
unreadSt.sizeId = Dialogs::Layout::UnreadBadgeInStickersPanel;
unreadSt.size = st::stickersSettingsUnreadSize;
int unreadRight = iconLeft + st::stickerIconWidth - st::stickersSettingsUnreadPosition.x();
if (rtl()) unreadRight = width() - unreadRight;
int unreadTop = _iconsTop + st::stickersSettingsUnreadPosition.y();
Dialogs::Layout::paintUnreadCount(p, QString::number(unread), unreadRight, unreadTop, unreadSt);
}
}
void StickersListWidget::Footer::validateIconLottieAnimation( void StickersListWidget::Footer::validateIconLottieAnimation(
const StickerIcon &icon) { const StickerIcon &icon) {
if (icon.lottie if (icon.lottie
@ -788,19 +775,22 @@ void StickersListWidget::Footer::paintSetIcon(
} else if (icon.megagroup) { } else if (icon.megagroup) {
icon.megagroup->paintUserpicLeft(p, x + (st::stickerIconWidth - st::stickerGroupCategorySize) / 2, _iconsTop + (st::emojiFooterHeight - st::stickerGroupCategorySize) / 2, width(), st::stickerGroupCategorySize); icon.megagroup->paintUserpicLeft(p, x + (st::stickerIconWidth - st::stickerGroupCategorySize) / 2, _iconsTop + (st::emojiFooterHeight - st::stickerGroupCategorySize) / 2, width(), st::stickerGroupCategorySize);
} else { } else {
auto getSpecialSetIcon = [](uint64 setId) { const auto paintedIcon = [&] {
if (setId == Stickers::FeaturedSetId) { if (icon.setId == Stickers::FeaturedSetId) {
return &st::stickersTrending; const auto session = &_pan->session();
return session->data().featuredStickerSetsUnreadCount()
? &st::stickersTrendingUnread
: &st::stickersTrending;
//} else if (setId == Stickers::FavedSetId) { //} else if (setId == Stickers::FavedSetId) {
// return &st::stickersFaved; // return &st::stickersFaved;
} }
return &st::emojiRecent; return &st::stickersRecent;
}; }();
auto paintedIcon = getSpecialSetIcon(icon.setId); paintedIcon->paint(
paintedIcon->paint(p, x + (st::stickerIconWidth - paintedIcon->width()) / 2, _iconsTop + st::emojiCategory.iconPosition.y(), width()); p,
if (icon.setId == Stickers::FeaturedSetId) { x + (st::stickerIconWidth - paintedIcon->width()) / 2,
paintFeaturedStickerSetsBadge(p, x); _iconsTop + (st::emojiFooterHeight - paintedIcon->height()) / 2,
} width());
} }
} }
@ -2487,8 +2477,7 @@ void StickersListWidget::refreshMegagroupStickers(GroupStickersPlace place) {
void StickersListWidget::fillIcons(QList<StickerIcon> &icons) { void StickersListWidget::fillIcons(QList<StickerIcon> &icons) {
icons.clear(); icons.clear();
icons.reserve(_mySets.size() + 1); icons.reserve(_mySets.size() + 1);
if (session().data().featuredStickerSetsUnreadCount() if (!_featuredSets.empty()) {
&& !_featuredSets.empty()) {
icons.push_back(StickerIcon(Stickers::FeaturedSetId)); icons.push_back(StickerIcon(Stickers::FeaturedSetId));
} }
@ -2535,11 +2524,6 @@ void StickersListWidget::fillIcons(QList<StickerIcon> &icons) {
pixw, pixw,
pixh)); pixh));
} }
if (!session().data().featuredStickerSetsUnreadCount()
&& !_featuredSets.empty()) {
icons.push_back(StickerIcon(Stickers::FeaturedSetId));
}
} }
bool StickersListWidget::preventAutoHide() { bool StickersListWidget::preventAutoHide() {