From 92c720ddc3db766418571e5e2452715b05d9848a Mon Sep 17 00:00:00 2001 From: John Preston Date: Thu, 19 May 2016 15:38:09 +0300 Subject: [PATCH] Returned animation type to the old one. Fixed new profile display in single column layout. --- Telegram/Resources/basic.style | 2 +- Telegram/SourceFiles/dialogswidget.cpp | 34 +++++------ Telegram/SourceFiles/historywidget.cpp | 58 +++++++------------ Telegram/SourceFiles/mainwidget.cpp | 1 + Telegram/SourceFiles/overviewwidget.cpp | 58 +++++++------------ .../SourceFiles/window/slide_animation.cpp | 35 ++++++----- 6 files changed, 77 insertions(+), 111 deletions(-) diff --git a/Telegram/Resources/basic.style b/Telegram/Resources/basic.style index 72b2a6289..1695b0218 100644 --- a/Telegram/Resources/basic.style +++ b/Telegram/Resources/basic.style @@ -379,7 +379,7 @@ slideDuration: 240; slideShift: 100px; slideFadeOut: 0.3; slideShadow: sprite(348px, 71px, 48px, 1px); -slideFunction: transition(linear); +slideFunction: transition(easeOutCirc); btnDefIconed: iconedButton { color: white; diff --git a/Telegram/SourceFiles/dialogswidget.cpp b/Telegram/SourceFiles/dialogswidget.cpp index 348bc8907..06c71e68c 100644 --- a/Telegram/SourceFiles/dialogswidget.cpp +++ b/Telegram/SourceFiles/dialogswidget.cpp @@ -1864,13 +1864,15 @@ void DialogsWidget::showAnimated(Window::SlideDirection direction, const Window: _newGroup.hide(); int delta = st::slideShift; - a_progress = anim::fvalue(0, 1); if (direction == Window::SlideDirection::FromLeft) { - a_coordUnder = anim::ivalue(0, delta); - a_coordOver = anim::ivalue(-delta, 0); + a_progress = anim::fvalue(1, 0); + std::swap(_cacheUnder, _cacheOver); + a_coordUnder = anim::ivalue(-delta, 0); + a_coordOver = anim::ivalue(0, width()); } else { + a_progress = anim::fvalue(0, 1); a_coordUnder = anim::ivalue(0, -delta); - a_coordOver = anim::ivalue(delta, 0); + a_coordOver = anim::ivalue(width(), 0); } _a_show.start(); } @@ -2539,23 +2541,15 @@ void DialogsWidget::paintEvent(QPaintEvent *e) { } if (_a_show.animating()) { int retina = cIntRetinaFactor(); - if (a_progress.current() < 1) { - int underLeft = a_coordUnder.current(); - int underWidth = _cacheUnder.width() / retina; - int underHeight = _cacheUnder.height() / retina; - p.fillRect(r, st::white); - QRect underDst(0, 0, underWidth + underLeft, underHeight); - QRect underSrc(-underLeft * retina, 0, (underWidth + underLeft) * retina, underHeight * retina); - p.setOpacity(1. - a_progress.current()); - p.drawPixmap(underDst, _cacheUnder, underSrc); - p.setOpacity(a_progress.current()); + if (a_coordOver.current() > 0) { + p.drawPixmap(QRect(0, 0, a_coordOver.current(), _cacheUnder.height() / retina), _cacheUnder, QRect(-a_coordUnder.current() * retina, 0, a_coordOver.current() * retina, _cacheUnder.height())); + p.setOpacity(a_progress.current() * st::slideFadeOut); + p.fillRect(0, 0, a_coordOver.current(), _cacheUnder.height() / retina, st::black); + p.setOpacity(1); } - int overLeft = a_coordOver.current(); - int overWidth = _cacheOver.width() / retina; - int overHeight = _cacheOver.height() / retina; - QRect overDst(overLeft, 0, overWidth - overLeft, overHeight); - QRect overSrc(0, 0, (overWidth - overLeft) * retina, overHeight * retina); - p.drawPixmap(overDst, _cacheOver, overSrc); + p.drawPixmap(QRect(a_coordOver.current(), 0, _cacheOver.width() / retina, _cacheOver.height() / retina), _cacheOver, QRect(0, 0, _cacheOver.width(), _cacheOver.height())); + p.setOpacity(a_progress.current()); + p.drawPixmap(QRect(a_coordOver.current() - st::slideShadow.pxWidth(), 0, st::slideShadow.pxWidth(), _cacheOver.height() / retina), App::sprite(), st::slideShadow.rect()); return; } QRect above(0, 0, width(), _scroll.y()); diff --git a/Telegram/SourceFiles/historywidget.cpp b/Telegram/SourceFiles/historywidget.cpp index fe17b8cdd..1206f2d97 100644 --- a/Telegram/SourceFiles/historywidget.cpp +++ b/Telegram/SourceFiles/historywidget.cpp @@ -5163,13 +5163,15 @@ void HistoryWidget::showAnimated(Window::SlideDirection direction, const Window: } int delta = st::slideShift; - a_progress = anim::fvalue(0, 1); if (direction == Window::SlideDirection::FromLeft) { - a_coordUnder = anim::ivalue(0, delta); - a_coordOver = anim::ivalue(-delta, 0); + a_progress = anim::fvalue(1, 0); + std::swap(_cacheUnder, _cacheOver); + a_coordUnder = anim::ivalue(-delta, 0); + a_coordOver = anim::ivalue(0, width()); } else { + a_progress = anim::fvalue(0, 1); a_coordUnder = anim::ivalue(0, -delta); - a_coordOver = anim::ivalue(delta, 0); + a_coordOver = anim::ivalue(width(), 0); } _a_show.start(); @@ -5912,23 +5914,15 @@ void HistoryWidget::onForwardHere() { void HistoryWidget::paintTopBar(Painter &p, float64 over, int32 decreaseWidth) { if (_a_show.animating()) { int retina = cIntRetinaFactor(); - if (a_progress.current() < 1) { - int underLeft = a_coordUnder.current(); - int underWidth = _cacheUnder.width() / retina; - int underHeight = st::topBarHeight; - p.fillRect(0, 0, underWidth, underHeight, st::white); - QRect underDst(0, 0, underWidth + underLeft, underHeight); - QRect underSrc(-underLeft * retina, 0, (underWidth + underLeft) * retina, underHeight * retina); - p.setOpacity(1. - a_progress.current()); - p.drawPixmap(underDst, _cacheUnder, underSrc); - p.setOpacity(a_progress.current()); + if (a_coordOver.current() > 0) { + p.drawPixmap(QRect(0, 0, a_coordOver.current(), st::topBarHeight), _cacheUnder, QRect(-a_coordUnder.current() * retina, 0, a_coordOver.current() * retina, st::topBarHeight * retina)); + p.setOpacity(a_progress.current() * st::slideFadeOut); + p.fillRect(0, 0, a_coordOver.current(), st::topBarHeight, st::black); + p.setOpacity(1); } - int overLeft = a_coordOver.current(); - int overWidth = _cacheOver.width() / retina; - int overHeight = st::topBarHeight; - QRect overDst(overLeft, 0, overWidth - overLeft, overHeight); - QRect overSrc(0, 0, (overWidth - overLeft) * retina, overHeight * retina); - p.drawPixmap(overDst, _cacheOver, overSrc); + p.drawPixmap(QRect(a_coordOver.current(), 0, _cacheOver.width() / retina, st::topBarHeight), _cacheOver, QRect(0, 0, _cacheOver.width(), st::topBarHeight * retina)); + p.setOpacity(a_progress.current()); + p.drawPixmap(QRect(a_coordOver.current() - st::slideShadow.pxWidth(), 0, st::slideShadow.pxWidth(), st::topBarHeight), App::sprite(), st::slideShadow.rect()); return; } @@ -8337,23 +8331,15 @@ void HistoryWidget::paintEvent(QPaintEvent *e) { if (_a_show.animating()) { int retina = cIntRetinaFactor(); int inCacheTop = hasTopBar ? st::topBarHeight : 0; - if (a_progress.current() < 1) { - int underLeft = a_coordUnder.current(); - int underWidth = _cacheUnder.width() / retina; - int underHeight = height(); - p.fillRect(r, st::white); - QRect underDst(0, 0, underWidth + underLeft, underHeight); - QRect underSrc(-underLeft * retina, inCacheTop * retina, (underWidth + underLeft) * retina, underHeight * retina); - p.setOpacity(1. - a_progress.current()); - p.drawPixmap(underDst, _cacheUnder, underSrc); - p.setOpacity(a_progress.current()); + if (a_coordOver.current() > 0) { + p.drawPixmap(QRect(0, 0, a_coordOver.current(), height()), _cacheUnder, QRect(-a_coordUnder.current() * retina, inCacheTop * retina, a_coordOver.current() * retina, height() * retina)); + p.setOpacity(a_progress.current() * st::slideFadeOut); + p.fillRect(0, 0, a_coordOver.current(), height(), st::black); + p.setOpacity(1); } - int overLeft = a_coordOver.current(); - int overWidth = _cacheOver.width() / retina; - int overHeight = height(); - QRect overDst(overLeft, 0, overWidth - overLeft, overHeight); - QRect overSrc(0, inCacheTop * retina, (overWidth - overLeft) * retina, overHeight * retina); - p.drawPixmap(overDst, _cacheOver, overSrc); + p.drawPixmap(QRect(a_coordOver.current(), 0, _cacheOver.width() / retina, height()), _cacheOver, QRect(0, inCacheTop * retina, _cacheOver.width(), height() * retina)); + p.setOpacity(a_progress.current()); + p.drawPixmap(QRect(a_coordOver.current() - st::slideShadow.pxWidth(), 0, st::slideShadow.pxWidth(), height()), App::sprite(), st::slideShadow.rect()); return; } diff --git a/Telegram/SourceFiles/mainwidget.cpp b/Telegram/SourceFiles/mainwidget.cpp index ae9599980..8c7b3becb 100644 --- a/Telegram/SourceFiles/mainwidget.cpp +++ b/Telegram/SourceFiles/mainwidget.cpp @@ -2586,6 +2586,7 @@ void MainWidget::showAll() { } if (_wideSection) { _topBar->hide(); + _dialogs->hide(); } else if (!selectingPeer() && (_overview || _history->peer())) { _topBar->show(); _dialogs->hide(); diff --git a/Telegram/SourceFiles/overviewwidget.cpp b/Telegram/SourceFiles/overviewwidget.cpp index 85b682f05..6439ad90a 100644 --- a/Telegram/SourceFiles/overviewwidget.cpp +++ b/Telegram/SourceFiles/overviewwidget.cpp @@ -1989,23 +1989,15 @@ void OverviewWidget::paintEvent(QPaintEvent *e) { if (_a_show.animating()) { int retina = cIntRetinaFactor(); int inCacheTop = st::topBarHeight; - if (a_progress.current() < 1) { - int underLeft = a_coordUnder.current(); - int underWidth = _cacheUnder.width() / retina; - int underHeight = height(); - p.fillRect(e->rect(), st::white); - QRect underDst(0, 0, underWidth + underLeft, underHeight); - QRect underSrc(-underLeft * retina, inCacheTop * retina, (underWidth + underLeft) * retina, underHeight * retina); - p.setOpacity(1. - a_progress.current()); - p.drawPixmap(underDst, _cacheUnder, underSrc); - p.setOpacity(a_progress.current()); + if (a_coordOver.current() > 0) { + p.drawPixmap(QRect(0, 0, a_coordOver.current(), height()), _cacheUnder, QRect(-a_coordUnder.current() * retina, inCacheTop * retina, a_coordOver.current() * retina, height() * retina)); + p.setOpacity(a_progress.current() * st::slideFadeOut); + p.fillRect(0, 0, a_coordOver.current(), height(), st::black); + p.setOpacity(1); } - int overLeft = a_coordOver.current(); - int overWidth = _cacheOver.width() / retina; - int overHeight = height(); - QRect overDst(overLeft, 0, overWidth - overLeft, overHeight); - QRect overSrc(0, inCacheTop * retina, (overWidth - overLeft) * retina, overHeight * retina); - p.drawPixmap(overDst, _cacheOver, overSrc); + p.drawPixmap(QRect(a_coordOver.current(), 0, _cacheOver.width() / retina, height()), _cacheOver, QRect(0, inCacheTop * retina, _cacheOver.width(), height() * retina)); + p.setOpacity(a_progress.current()); + p.drawPixmap(QRect(a_coordOver.current() - st::slideShadow.pxWidth(), 0, st::slideShadow.pxWidth(), height()), App::sprite(), st::slideShadow.rect()); return; } @@ -2031,23 +2023,15 @@ void OverviewWidget::scrollReset() { void OverviewWidget::paintTopBar(Painter &p, float64 over, int32 decreaseWidth) { if (_a_show.animating()) { int retina = cIntRetinaFactor(); - if (a_progress.current() < 1) { - int underLeft = a_coordUnder.current(); - int underWidth = _cacheUnder.width() / retina; - int underHeight = st::topBarHeight; - p.fillRect(0, 0, underWidth, underHeight, st::white); - QRect underDst(0, 0, underWidth + underLeft, underHeight); - QRect underSrc(-underLeft * retina, 0, (underWidth + underLeft) * retina, underHeight * retina); - p.setOpacity(1. - a_progress.current()); - p.drawPixmap(underDst, _cacheUnder, underSrc); - p.setOpacity(a_progress.current()); + if (a_coordOver.current() > 0) { + p.drawPixmap(QRect(0, 0, a_coordOver.current(), st::topBarHeight), _cacheUnder, QRect(-a_coordUnder.current() * retina, 0, a_coordOver.current() * retina, st::topBarHeight * retina)); + p.setOpacity(a_progress.current() * st::slideFadeOut); + p.fillRect(0, 0, a_coordOver.current(), st::topBarHeight, st::black); + p.setOpacity(1); } - int overLeft = a_coordOver.current(); - int overWidth = _cacheOver.width() / retina; - int overHeight = st::topBarHeight; - QRect overDst(overLeft, 0, overWidth - overLeft, overHeight); - QRect overSrc(0, 0, (overWidth - overLeft) * retina, overHeight * retina); - p.drawPixmap(overDst, _cacheOver, overSrc); + p.drawPixmap(QRect(a_coordOver.current(), 0, _cacheOver.width() / retina, st::topBarHeight), _cacheOver, QRect(0, 0, _cacheOver.width(), st::topBarHeight * retina)); + p.setOpacity(a_progress.current()); + p.drawPixmap(QRect(a_coordOver.current() - st::slideShadow.pxWidth(), 0, st::slideShadow.pxWidth(), st::topBarHeight), App::sprite(), st::slideShadow.rect()); return; } p.setOpacity(st::topBarBackAlpha + (1 - st::topBarBackAlpha) * over); @@ -2172,13 +2156,15 @@ void OverviewWidget::showAnimated(Window::SlideDirection direction, const Window _scroll.hide(); int delta = st::slideShift; - a_progress = anim::fvalue(0, 1); if (direction == Window::SlideDirection::FromLeft) { - a_coordUnder = anim::ivalue(0, delta); - a_coordOver = anim::ivalue(-delta, 0); + a_progress = anim::fvalue(1, 0); + std::swap(_cacheUnder, _cacheOver); + a_coordUnder = anim::ivalue(-delta, 0); + a_coordOver = anim::ivalue(0, width()); } else { + a_progress = anim::fvalue(0, 1); a_coordUnder = anim::ivalue(0, -delta); - a_coordOver = anim::ivalue(delta, 0); + a_coordOver = anim::ivalue(width(), 0); } _a_show.start(); diff --git a/Telegram/SourceFiles/window/slide_animation.cpp b/Telegram/SourceFiles/window/slide_animation.cpp index 4aec4bf78..5f53e98fa 100644 --- a/Telegram/SourceFiles/window/slide_animation.cpp +++ b/Telegram/SourceFiles/window/slide_animation.cpp @@ -31,18 +31,15 @@ void SlideAnimation::paintContents(Painter &p, const QRect &update) const { int retina = cIntRetinaFactor(); _animation.step(getms()); - if (a_progress.current() < 1) { - p.fillRect(update, st::white); - int underLeft = a_coordUnder.current(); - int underWidth = _cacheUnder.width() / retina; - int underHeight = _cacheUnder.height() / retina; - QRect underDest(0, 0, underWidth + underLeft, underHeight); - QRect underSrc(-underLeft * retina, 0, (underWidth + underLeft) * retina, underHeight * retina); - p.setOpacity(1. - a_progress.current()); - p.drawPixmap(underDest, _cacheUnder, underSrc); - p.setOpacity(a_progress.current()); + if (a_coordOver.current() > 0) { + p.drawPixmap(QRect(0, 0, a_coordOver.current(), _cacheUnder.height() / retina), _cacheUnder, QRect(-a_coordUnder.current() * retina, 0, a_coordOver.current() * retina, _cacheUnder.height())); + p.setOpacity(a_progress.current() * st::slideFadeOut); + p.fillRect(0, 0, a_coordOver.current(), _cacheUnder.height() / retina, st::black); + p.setOpacity(1); } - p.drawPixmap(a_coordOver.current(), 0, _cacheOver); + p.drawPixmap(QRect(a_coordOver.current(), 0, _cacheOver.width() / retina, _cacheOver.height() / retina), _cacheOver, QRect(0, 0, _cacheOver.width(), _cacheOver.height())); + p.setOpacity(a_progress.current()); + p.drawPixmap(QRect(a_coordOver.current() - st::slideShadow.pxWidth(), 0, st::slideShadow.pxWidth(), _cacheOver.height() / retina), App::sprite(), st::slideShadow.rect()); if (_topBarShadowEnabled) { p.setOpacity(1); @@ -73,13 +70,15 @@ void SlideAnimation::setFinishedCallback(FinishedCallback &&callback) { void SlideAnimation::start() { int delta = st::slideShift; - a_progress = anim::fvalue(0, 1); if (_direction == SlideDirection::FromLeft) { - a_coordUnder = anim::ivalue(0, delta); - a_coordOver = anim::ivalue(-delta, 0); + a_progress = anim::fvalue(1, 0); + std::swap(_cacheUnder, _cacheOver); + a_coordUnder = anim::ivalue(-delta, 0); + a_coordOver = anim::ivalue(0, _cacheOver.width() / cIntRetinaFactor()); } else { + a_progress = anim::fvalue(0, 1); a_coordUnder = anim::ivalue(0, -delta); - a_coordOver = anim::ivalue(delta, 0); + a_coordOver = anim::ivalue(_cacheOver.width() / cIntRetinaFactor(), 0); } _animation.start(); } @@ -98,9 +97,9 @@ void SlideAnimation::step(float64 ms, bool timer) { } } - a_coordUnder.update(dt, anim::linear); - a_coordOver.update(dt, anim::linear); - a_progress.update(dt, anim::linear); + a_coordUnder.update(dt, st::slideFunction); + a_coordOver.update(dt, st::slideFunction); + a_progress.update(dt, st::slideFunction); if (timer) { _repaintCallback.call(); }