Improve history -> profile top bar navigation.

This commit is contained in:
John Preston 2017-11-16 19:24:01 +04:00
parent 903aa46e5c
commit cf977cb41a
11 changed files with 124 additions and 102 deletions

View File

@ -493,10 +493,6 @@ object_ptr<TabbedSelector::InnerFooter> StickersListWidget::createFooter() {
void StickersListWidget::visibleTopBottomUpdated( void StickersListWidget::visibleTopBottomUpdated(
int visibleTop, int visibleTop,
int visibleBottom) { int visibleBottom) {
if (!_columnCount) {
return;
}
auto top = getVisibleTop(); auto top = getVisibleTop();
Inner::visibleTopBottomUpdated(visibleTop, visibleBottom); Inner::visibleTopBottomUpdated(visibleTop, visibleBottom);
if (_section == Section::Featured) { if (_section == Section::Featured) {

View File

@ -25,6 +25,7 @@ Copyright (c) 2014-2017 John Preston, https://desktop.telegram.org
#include "styles/style_window.h" #include "styles/style_window.h"
#include "styles/style_dialogs.h" #include "styles/style_dialogs.h"
#include "styles/style_history.h" #include "styles/style_history.h"
#include "styles/style_info.h"
#include "boxes/add_contact_box.h" #include "boxes/add_contact_box.h"
#include "boxes/confirm_box.h" #include "boxes/confirm_box.h"
#include "info/info_memento.h" #include "info/info_memento.h"
@ -51,12 +52,14 @@ HistoryTopBarWidget::HistoryTopBarWidget(
, _clearSelection(this, langFactory(lng_selected_clear), st::topBarClearButton) , _clearSelection(this, langFactory(lng_selected_clear), st::topBarClearButton)
, _forward(this, langFactory(lng_selected_forward), st::defaultActiveButton) , _forward(this, langFactory(lng_selected_forward), st::defaultActiveButton)
, _delete(this, langFactory(lng_selected_delete), st::defaultActiveButton) , _delete(this, langFactory(lng_selected_delete), st::defaultActiveButton)
, _back(this, st::historyTopBarBack)
, _call(this, st::topBarCall) , _call(this, st::topBarCall)
, _search(this, st::topBarSearch) , _search(this, st::topBarSearch)
, _infoToggle(this, st::topBarInfo) , _infoToggle(this, st::topBarInfo)
, _menuToggle(this, st::topBarMenuToggle) , _menuToggle(this, st::topBarMenuToggle)
, _onlineUpdater([this] { updateOnlineDisplay(); }) { , _onlineUpdater([this] { updateOnlineDisplay(); }) {
subscribe(Lang::Current().updated(), [this] { refreshLang(); }); subscribe(Lang::Current().updated(), [this] { refreshLang(); });
setAttribute(Qt::WA_OpaquePaintEvent);
_forward->setClickedCallback([this] { onForwardSelection(); }); _forward->setClickedCallback([this] { onForwardSelection(); });
_forward->setWidthChangedCallback([this] { updateControlsGeometry(); }); _forward->setWidthChangedCallback([this] { updateControlsGeometry(); });
@ -67,6 +70,7 @@ HistoryTopBarWidget::HistoryTopBarWidget(
_search->setClickedCallback([this] { onSearch(); }); _search->setClickedCallback([this] { onSearch(); });
_menuToggle->setClickedCallback([this] { showMenu(); }); _menuToggle->setClickedCallback([this] { showMenu(); });
_infoToggle->setClickedCallback([this] { toggleInfoSection(); }); _infoToggle->setClickedCallback([this] { toggleInfoSection(); });
_back->addClickHandler([this] { backClicked(); });
rpl::combine( rpl::combine(
_controller->historyPeer.value(), _controller->historyPeer.value(),
@ -116,7 +120,8 @@ HistoryTopBarWidget::HistoryTopBarWidget(
} }
})); }));
subscribe(Global::RefPhoneCallsEnabledChanged(), [this] { subscribe(Global::RefPhoneCallsEnabledChanged(), [this] {
updateControlsVisibility(); }); updateControlsVisibility();
});
rpl::combine( rpl::combine(
Auth().data().thirdSectionInfoEnabledValue(), Auth().data().thirdSectionInfoEnabledValue(),
@ -145,12 +150,6 @@ void HistoryTopBarWidget::onClearSelection() {
if (App::main()) App::main()->clearSelectedItems(); if (App::main()) App::main()->clearSelectedItems();
} }
void HistoryTopBarWidget::onInfoClicked() {
if (_historyPeer) {
_controller->showPeerInfo(_historyPeer);
}
}
void HistoryTopBarWidget::onSearch() { void HistoryTopBarWidget::onSearch() {
if (_historyPeer) { if (_historyPeer) {
App::main()->searchInPeer(_historyPeer); App::main()->searchInPeer(_historyPeer);
@ -240,6 +239,9 @@ bool HistoryTopBarWidget::eventFilter(QObject *obj, QEvent *e) {
} }
void HistoryTopBarWidget::paintEvent(QPaintEvent *e) { void HistoryTopBarWidget::paintEvent(QPaintEvent *e) {
if (_animationMode) {
return;
}
Painter p(this); Painter p(this);
auto ms = getms(); auto ms = getms();
@ -253,43 +255,21 @@ void HistoryTopBarWidget::paintEvent(QPaintEvent *e) {
p.translate(0, selectedButtonsTop + st::topBarHeight); p.translate(0, selectedButtonsTop + st::topBarHeight);
p.save(); p.save();
auto decreaseWidth = 0; paintTopBar(p, ms);
if (_info && !_info->isHidden()) {
decreaseWidth += _info->width();
}
if (!_menuToggle->isHidden()) {
decreaseWidth += _menuToggle->width();
}
if (!_infoToggle->isHidden()) {
decreaseWidth += _infoToggle->width() + st::topBarSkip;
}
if (!_search->isHidden()) {
decreaseWidth += _search->width();
}
if (!_call->isHidden()) {
decreaseWidth += st::topBarCallSkip + _call->width();
}
paintTopBar(p, decreaseWidth, ms);
p.restore(); p.restore();
paintUnreadCounter(p, width(), _historyPeer); paintUnreadCounter(p, width(), _historyPeer);
} }
} }
void HistoryTopBarWidget::paintTopBar( void HistoryTopBarWidget::paintTopBar(Painter &p, TimeMs ms) {
Painter &p,
int decreaseWidth,
TimeMs ms) {
auto history = App::historyLoaded(_historyPeer); auto history = App::historyLoaded(_historyPeer);
if (!history) return; if (!history) return;
auto increaseLeft = (Adaptive::OneColumn() || !App::main()->stackIsEmpty()) auto nameleft = _leftTaken;
? (st::topBarArrowPadding.left() - st::topBarArrowPadding.right())
: 0;
auto nameleft = st::topBarArrowPadding.right() + increaseLeft;
auto nametop = st::topBarArrowPadding.top(); auto nametop = st::topBarArrowPadding.top();
auto statustop = st::topBarHeight - st::topBarArrowPadding.bottom() - st::dialogsTextFont->height; auto statustop = st::topBarHeight - st::topBarArrowPadding.bottom() - st::dialogsTextFont->height;
auto namewidth = width() - decreaseWidth - nameleft - st::topBarArrowPadding.right(); auto namewidth = width() - _rightTaken - nameleft;
p.setFont(st::dialogsTextFont); p.setFont(st::dialogsTextFont);
if (!history->paintSendAction(p, nameleft, statustop, namewidth, width(), st::historyStatusFgTyping, ms)) { if (!history->paintSendAction(p, nameleft, statustop, namewidth, width(), st::historyStatusFgTyping, ms)) {
p.setPen(_titlePeerTextOnline ? st::historyStatusFgActive : st::historyStatusFg); p.setPen(_titlePeerTextOnline ? st::historyStatusFgActive : st::historyStatusFg);
@ -298,21 +278,10 @@ void HistoryTopBarWidget::paintTopBar(
p.setPen(st::dialogsNameFg); p.setPen(st::dialogsNameFg);
_historyPeer->dialogName().drawElided(p, nameleft, nametop, namewidth); _historyPeer->dialogName().drawElided(p, nameleft, nametop, namewidth);
if (Adaptive::OneColumn() || !App::main()->stackIsEmpty()) {
st::topBarBackward.paint(
p,
(st::topBarArrowPadding.left() - st::topBarBackward.width()) / 2,
(st::topBarHeight - st::topBarBackward.height()) / 2,
width());
}
} }
QRect HistoryTopBarWidget::getMembersShowAreaGeometry() const { QRect HistoryTopBarWidget::getMembersShowAreaGeometry() const {
int increaseLeft = (Adaptive::OneColumn() || !App::main()->stackIsEmpty()) int membersTextLeft = _leftTaken;
? (st::topBarArrowPadding.left() - st::topBarArrowPadding.right())
: 0;
int membersTextLeft = st::topBarArrowPadding.right() + increaseLeft;
int membersTextTop = st::topBarHeight - st::topBarArrowPadding.bottom() - st::dialogsTextFont->height; int membersTextTop = st::topBarHeight - st::topBarArrowPadding.bottom() - st::dialogsTextFont->height;
int membersTextWidth = _titlePeerTextWidth; int membersTextWidth = _titlePeerTextWidth;
int membersTextHeight = st::topBarHeight - membersTextTop; int membersTextHeight = st::topBarHeight - membersTextTop;
@ -353,19 +322,24 @@ void HistoryTopBarWidget::paintUnreadCounter(
} }
void HistoryTopBarWidget::mousePressEvent(QMouseEvent *e) { void HistoryTopBarWidget::mousePressEvent(QMouseEvent *e) {
if (e->button() == Qt::LeftButton auto handleClick = (e->button() == Qt::LeftButton)
&& e->pos().y() < st::topBarHeight && (e->pos().y() < st::topBarHeight)
&& !_selectedCount) { && (!_selectedCount);
clicked(); if (handleClick) {
if (_animationMode && _back->rect().contains(e->pos())) {
backClicked();
} else if (_historyPeer) {
infoClicked();
}
} }
} }
void HistoryTopBarWidget::clicked() { void HistoryTopBarWidget::infoClicked() {
if (Adaptive::OneColumn() || !App::main()->stackIsEmpty()) { _controller->showPeerInfo(_historyPeer);
_controller->showBackFromStack(); }
} else if (_historyPeer) {
_controller->showPeerInfo(_historyPeer); void HistoryTopBarWidget::backClicked() {
} _controller->showBackFromStack();
} }
void HistoryTopBarWidget::setHistoryPeer( void HistoryTopBarWidget::setHistoryPeer(
@ -377,8 +351,9 @@ void HistoryTopBarWidget::setHistoryPeer(
this, this,
_controller, _controller,
_historyPeer, _historyPeer,
Ui::UserpicButton::Role::OpenProfile, Ui::UserpicButton::Role::Custom,
st::topBarInfoButton); st::topBarInfoButton);
_info->setAttribute(Qt::WA_TransparentForMouseEvents);
} else { } else {
_info.destroy(); _info.destroy();
} }
@ -417,49 +392,58 @@ void HistoryTopBarWidget::updateControlsGeometry() {
_delete->moveToLeft(buttonsLeft, selectedButtonsTop); _delete->moveToLeft(buttonsLeft, selectedButtonsTop);
_clearSelection->moveToRight(st::topBarActionSkip, selectedButtonsTop); _clearSelection->moveToRight(st::topBarActionSkip, selectedButtonsTop);
auto right = 0; if (_back->isHidden()) {
if (_info) { _leftTaken = st::topBarArrowPadding.right();
_info->moveToRight(right, otherButtonsTop);
}
_menuToggle->moveToRight(right, otherButtonsTop);
if (!_info || _info->isHidden()) {
right += _menuToggle->width() + st::topBarSkip;
} else { } else {
right += _info->width(); _leftTaken = 0;
_back->moveToLeft(_leftTaken, otherButtonsTop);
_leftTaken += _back->width();
if (_info) {
_info->moveToLeft(_leftTaken, otherButtonsTop);
_leftTaken += _info->width();
}
} }
_infoToggle->moveToRight(right, otherButtonsTop);
_rightTaken = 0;
_menuToggle->moveToRight(_rightTaken, otherButtonsTop);
_rightTaken += _menuToggle->width() + st::topBarSkip;
_infoToggle->moveToRight(_rightTaken, otherButtonsTop);
if (!_infoToggle->isHidden()) { if (!_infoToggle->isHidden()) {
right += _infoToggle->width() + st::topBarSkip; _rightTaken += _infoToggle->width() + st::topBarSkip;
} }
_search->moveToRight(right, otherButtonsTop); _search->moveToRight(_rightTaken, otherButtonsTop);
right += _search->width() + st::topBarCallSkip; _rightTaken += _search->width() + st::topBarCallSkip;
_call->moveToRight(right, otherButtonsTop); _call->moveToRight(_rightTaken, otherButtonsTop);
_rightTaken += _call->width();
} }
void HistoryTopBarWidget::animationFinished() { void HistoryTopBarWidget::setAnimationMode(bool enabled) {
updateMembersShowArea(); if (_animationMode != enabled) {
updateControlsVisibility(); _animationMode = enabled;
setAttribute(Qt::WA_OpaquePaintEvent, !_animationMode);
_selectedShown.finish();
updateMembersShowArea();
updateControlsVisibility();
}
} }
void HistoryTopBarWidget::updateControlsVisibility() { void HistoryTopBarWidget::updateControlsVisibility() {
if (_animationMode) {
hideChildren();
return;
}
_clearSelection->show(); _clearSelection->show();
_delete->setVisible(_canDelete); _delete->setVisible(_canDelete);
_forward->setVisible(_canForward); _forward->setVisible(_canForward);
if (Adaptive::OneColumn() auto backVisible = Adaptive::OneColumn()
|| (App::main() && !App::main()->stackIsEmpty())) { || (App::main() && !App::main()->stackIsEmpty());
if (_info) { _back->setVisible(backVisible);
_info->show(); if (_info) {
} _info->setVisible(backVisible);
_menuToggle->hide();
_menu.destroy();
} else {
if (_info) {
_info->hide();
}
_menuToggle->show();
} }
_search->show(); _search->show();
_menuToggle->show();
_infoToggle->setVisible(!Adaptive::OneColumn() _infoToggle->setVisible(!Adaptive::OneColumn()
&& _controller->canShowThirdSection()); && _controller->canShowThirdSection());
auto callsEnabled = false; auto callsEnabled = false;

View File

@ -49,14 +49,13 @@ public:
void updateControlsVisibility(); void updateControlsVisibility();
void showSelected(SelectedState state); void showSelected(SelectedState state);
void animationFinished();
rpl::producer<bool> membersShowAreaActive() const { rpl::producer<bool> membersShowAreaActive() const {
return _membersShowAreaActive.events(); return _membersShowAreaActive.events();
} }
void setAnimationMode(bool enabled);
void setHistoryPeer(not_null<PeerData*> historyPeer); void setHistoryPeer(not_null<PeerData*> historyPeer);
void clicked();
static void paintUnreadCounter( static void paintUnreadCounter(
Painter &p, Painter &p,
int outerWidth, int outerWidth,
@ -77,7 +76,6 @@ private:
void onForwardSelection(); void onForwardSelection();
void onDeleteSelection(); void onDeleteSelection();
void onClearSelection(); void onClearSelection();
void onInfoClicked();
void onCall(); void onCall();
void onSearch(); void onSearch();
void showMenu(); void showMenu();
@ -86,13 +84,16 @@ private:
void updateAdaptiveLayout(); void updateAdaptiveLayout();
int countSelectedButtonsTop(float64 selectedShown); int countSelectedButtonsTop(float64 selectedShown);
void paintTopBar(Painter &p, int decreaseWidth, TimeMs ms); void paintTopBar(Painter &p, TimeMs ms);
QRect getMembersShowAreaGeometry() const; QRect getMembersShowAreaGeometry() const;
void updateMembersShowArea(); void updateMembersShowArea();
void updateOnlineDisplay(); void updateOnlineDisplay();
void updateOnlineDisplayTimer(); void updateOnlineDisplayTimer();
void updateOnlineDisplayIn(TimeMs timeout); void updateOnlineDisplayIn(TimeMs timeout);
void infoClicked();
void backClicked();
not_null<Window::Controller*> _controller; not_null<Window::Controller*> _controller;
PeerData *_historyPeer = nullptr; PeerData *_historyPeer = nullptr;
@ -105,6 +106,7 @@ private:
object_ptr<Ui::RoundButton> _clearSelection; object_ptr<Ui::RoundButton> _clearSelection;
object_ptr<Ui::RoundButton> _forward, _delete; object_ptr<Ui::RoundButton> _forward, _delete;
object_ptr<Ui::IconButton> _back;
object_ptr<Ui::UserpicButton> _info = { nullptr }; object_ptr<Ui::UserpicButton> _info = { nullptr };
object_ptr<Ui::IconButton> _call; object_ptr<Ui::IconButton> _call;
@ -119,6 +121,9 @@ private:
QString _titlePeerText; QString _titlePeerText;
bool _titlePeerTextOnline = false; bool _titlePeerTextOnline = false;
int _titlePeerTextWidth = 0; int _titlePeerTextWidth = 0;
int _leftTaken = 0;
int _rightTaken = 0;
bool _animationMode = false;
int _unreadCounterSubscription = 0; int _unreadCounterSubscription = 0;
base::Timer _onlineUpdater; base::Timer _onlineUpdater;

View File

@ -2998,10 +2998,8 @@ void HistoryWidget::showAnimated(
} }
_a_show.start([this] { animationCallback(); }, 0., 1., st::slideDuration, Window::SlideAnimation::transition()); _a_show.start([this] { animationCallback(); }, 0., 1., st::slideDuration, Window::SlideAnimation::transition());
if (_history) { if (_history) {
_backAnimationButton.create(this); _topBar->show();
_backAnimationButton->setClickedCallback([this] { _topBar->clicked(); }); _topBar->setAnimationMode(true);
_backAnimationButton->setGeometry(_topBar->geometry());
_backAnimationButton->show();
} }
activate(); activate();
@ -3018,8 +3016,7 @@ void HistoryWidget::animationCallback() {
} }
void HistoryWidget::doneShow() { void HistoryWidget::doneShow() {
_topBar->animationFinished(); _topBar->setAnimationMode(false);
_backAnimationButton.destroy();
updateReportSpamStatus(); updateReportSpamStatus();
updateBotKeyboard(); updateBotKeyboard();
updateControlsVisibility(); updateControlsVisibility();

View File

@ -728,7 +728,6 @@ private:
MsgId _delayedShowAtMsgId = -1; // wtf? MsgId _delayedShowAtMsgId = -1; // wtf?
mtpRequestId _delayedShowAtRequest = 0; mtpRequestId _delayedShowAtRequest = 0;
object_ptr<Ui::AbstractButton> _backAnimationButton = { nullptr };
object_ptr<HistoryTopBarWidget> _topBar; object_ptr<HistoryTopBarWidget> _topBar;
object_ptr<Ui::ScrollArea> _scroll; object_ptr<Ui::ScrollArea> _scroll;
QPointer<HistoryInner> _list; QPointer<HistoryInner> _list;

View File

@ -385,6 +385,7 @@ infoNotificationsButton: InfoProfileButton(infoProfileButton) {
infoMainButton: InfoProfileButton(infoProfileButton) { infoMainButton: InfoProfileButton(infoProfileButton) {
textFg: lightButtonFg; textFg: lightButtonFg;
textFgOver: lightButtonFgOver; textFgOver: lightButtonFgOver;
font: semiboldFont;
} }
infoSharedMediaCoverHeight: 62px; infoSharedMediaCoverHeight: 62px;
infoSharedMediaButton: infoProfileButton; infoSharedMediaButton: infoProfileButton;
@ -610,3 +611,7 @@ editPeerSignaturesMargins: margins(23px, 16px, 23px, 8px);
editPeerInvitesMargins: margins(23px, 18px, 23px, 16px); editPeerInvitesMargins: margins(23px, 18px, 23px, 16px);
editPeerInvitesTopSkip: 10px; editPeerInvitesTopSkip: 10px;
editPeerInvitesSkip: 10px; editPeerInvitesSkip: 10px;
historyTopBarBack: IconButton(infoTopBarBack) {
width: 52px;
}

View File

@ -74,9 +74,15 @@ void SectionWidget::doSetInnerFocus() {
} }
void SectionWidget::showFinishedHook() { void SectionWidget::showFinishedHook() {
_topBarSurrogate.destroy();
_content->showFast(); _content->showFast();
} }
void SectionWidget::showAnimatedHook(
const Window::SectionSlideParams &params) {
_topBarSurrogate = _content->createTopBarSurrogate(this);
}
bool SectionWidget::showInternal( bool SectionWidget::showInternal(
not_null<Window::SectionMemento*> memento, not_null<Window::SectionMemento*> memento,
const Window::SectionShow &params) { const Window::SectionShow &params) {

View File

@ -70,10 +70,14 @@ protected:
void doSetInnerFocus() override; void doSetInnerFocus() override;
void showFinishedHook() override; void showFinishedHook() override;
void showAnimatedHook(
const Window::SectionSlideParams &params) override;
private: private:
void init(); void init();
object_ptr<WrapWidget> _content; object_ptr<WrapWidget> _content;
object_ptr<Ui::RpWidget> _topBarSurrogate = { nullptr };
}; };

View File

@ -620,6 +620,7 @@ void WrapWidget::showAnimatedHook(
if (params.withTopBarShadow) { if (params.withTopBarShadow) {
_topShadow->setVisible(true); _topShadow->setVisible(true);
} }
_topBarSurrogate = createTopBarSurrogate(this);
} }
void WrapWidget::doSetInnerFocus() { void WrapWidget::doSetInnerFocus() {
@ -629,6 +630,7 @@ void WrapWidget::doSetInnerFocus() {
void WrapWidget::showFinishedHook() { void WrapWidget::showFinishedHook() {
// Restore shadow visibility after showChildren() call. // Restore shadow visibility after showChildren() call.
_topShadow->toggle(_topShadow->toggled(), anim::type::instant); _topShadow->toggle(_topShadow->toggled(), anim::type::instant);
_topBarSurrogate.destroy();
} }
bool WrapWidget::showInternal( bool WrapWidget::showInternal(
@ -807,6 +809,24 @@ QRect WrapWidget::rectForFloatPlayer() const {
return _content->rectForFloatPlayer(); return _content->rectForFloatPlayer();
} }
object_ptr<Ui::RpWidget> WrapWidget::createTopBarSurrogate(
QWidget *parent) {
if (hasStackHistory() || wrap() == Wrap::Narrow) {
Assert(_topBar != nullptr);
auto result = object_ptr<Ui::AbstractButton>(parent);
result->addClickHandler([wrap = weak(this)]{
if (wrap) {
wrap->showBackFromStack();
}
});
result->setGeometry(_topBar->geometry());
result->show();
return std::move(result);
}
return nullptr;
}
WrapWidget::~WrapWidget() = default; WrapWidget::~WrapWidget() = default;
} // namespace Info } // namespace Info

View File

@ -109,8 +109,7 @@ public:
bool hasTopBarShadow() const override; bool hasTopBarShadow() const override;
QPixmap grabForShowAnimation( QPixmap grabForShowAnimation(
const Window::SectionSlideParams &params) override; const Window::SectionSlideParams &params) override;
void showAnimatedHook(
const Window::SectionSlideParams &params) override;
void forceContentRepaint(); void forceContentRepaint();
bool showInternal( bool showInternal(
@ -126,6 +125,8 @@ public:
bool wheelEventFromFloatPlayer(QEvent *e) override; bool wheelEventFromFloatPlayer(QEvent *e) override;
QRect rectForFloatPlayer() const override; QRect rectForFloatPlayer() const override;
object_ptr<Ui::RpWidget> createTopBarSurrogate(QWidget *parent);
~WrapWidget(); ~WrapWidget();
protected: protected:
@ -134,6 +135,9 @@ protected:
void doSetInnerFocus() override; void doSetInnerFocus() override;
void showFinishedHook() override; void showFinishedHook() override;
void showAnimatedHook(
const Window::SectionSlideParams &params) override;
private: private:
using SlideDirection = Window::SlideDirection; using SlideDirection = Window::SlideDirection;
using SectionSlideParams = Window::SectionSlideParams; using SectionSlideParams = Window::SectionSlideParams;
@ -194,6 +198,7 @@ private:
//object_ptr<Ui::PlainShadow> _topTabsBackground = { nullptr }; //object_ptr<Ui::PlainShadow> _topTabsBackground = { nullptr };
//object_ptr<Ui::SettingsSlider> _topTabs = { nullptr }; //object_ptr<Ui::SettingsSlider> _topTabs = { nullptr };
object_ptr<TopBar> _topBar = { nullptr }; object_ptr<TopBar> _topBar = { nullptr };
object_ptr<Ui::RpWidget> _topBarSurrogate = { nullptr };
object_ptr<TopBarOverride> _topBarOverride = { nullptr }; object_ptr<TopBarOverride> _topBarOverride = { nullptr };
Animation _topBarOverrideAnimation; Animation _topBarOverrideAnimation;
object_ptr<Ui::FadeShadow> _topShadow; object_ptr<Ui::FadeShadow> _topShadow;

View File

@ -300,8 +300,9 @@ topBarMenuToggle: IconButton(topBarSearch) {
topBarActionSkip: 10px; topBarActionSkip: 10px;
topBarInfoButton: UserpicButton(defaultUserpicButton) { topBarInfoButton: UserpicButton(defaultUserpicButton) {
size: size(topBarHeight, topBarHeight); size: size(52px, topBarHeight);
photoSize: 42px; photoSize: 42px;
photoPosition: point(2px, -1px);
} }
topBarSlideDuration: 200; topBarSlideDuration: 200;