Fix GIFs and animated stickers freeze.

This commit is contained in:
John Preston 2019-12-09 09:37:02 +03:00
parent 998b36f014
commit c301be3826
4 changed files with 12 additions and 30 deletions

View File

@ -51,6 +51,8 @@ TabbedPanel::TabbedPanel(
, _heightRatio(st::emojiPanHeightRatio) , _heightRatio(st::emojiPanHeightRatio)
, _minContentHeight(st::emojiPanMinHeight) , _minContentHeight(st::emojiPanMinHeight)
, _maxContentHeight(st::emojiPanMaxHeight) { , _maxContentHeight(st::emojiPanMaxHeight) {
Expects(_selector != nullptr);
_selector->setParent(this); _selector->setParent(this);
_selector->setRoundRadius(st::buttonRadius); _selector->setRoundRadius(st::buttonRadius);
_selector->setAfterShownCallback([=](SelectorTab tab) { _selector->setAfterShownCallback([=](SelectorTab tab) {
@ -145,10 +147,6 @@ void TabbedPanel::setDesiredHeightValues(
} }
void TabbedPanel::updateContentHeight() { void TabbedPanel::updateContentHeight() {
if (isDestroying()) {
return;
}
auto addedHeight = innerPadding().top() + innerPadding().bottom(); auto addedHeight = innerPadding().top() + innerPadding().bottom();
auto marginsHeight = _selector->marginTop() + _selector->marginBottom(); auto marginsHeight = _selector->marginTop() + _selector->marginBottom();
auto availableHeight = _bottom - marginsHeight; auto availableHeight = _bottom - marginsHeight;
@ -183,7 +181,7 @@ void TabbedPanel::paintEvent(QPaintEvent *e) {
auto showAnimating = _a_show.animating(); auto showAnimating = _a_show.animating();
if (_showAnimation && !showAnimating) { if (_showAnimation && !showAnimating) {
_showAnimation.reset(); _showAnimation.reset();
if (!opacityAnimating && !isDestroying()) { if (!opacityAnimating) {
showChildren(); showChildren();
_selector->afterShown(); _selector->afterShown();
} }
@ -217,9 +215,6 @@ void TabbedPanel::enterEventHook(QEvent *e) {
} }
bool TabbedPanel::preventAutoHide() const { bool TabbedPanel::preventAutoHide() const {
if (isDestroying()) {
return false;
}
return _selector->preventAutoHide(); return _selector->preventAutoHide();
} }
@ -267,7 +262,7 @@ void TabbedPanel::hideFast() {
void TabbedPanel::opacityAnimationCallback() { void TabbedPanel::opacityAnimationCallback() {
update(); update();
if (!_a_opacity.animating()) { if (!_a_opacity.animating()) {
if (_hiding || isDestroying()) { if (_hiding) {
_hiding = false; _hiding = false;
hideFinished(); hideFinished();
} else if (!_a_show.animating()) { } else if (!_a_show.animating()) {
@ -363,7 +358,7 @@ void TabbedPanel::hideAnimated() {
} }
_hideTimer.cancel(); _hideTimer.cancel();
if (!isDestroying() && _selector->isSliding()) { if (_selector->isSliding()) {
_hideAfterSlide = true; _hideAfterSlide = true;
} else { } else {
startOpacityAnimation(true); startOpacityAnimation(true);
@ -371,9 +366,6 @@ void TabbedPanel::hideAnimated() {
} }
void TabbedPanel::toggleAnimated() { void TabbedPanel::toggleAnimated() {
if (isDestroying()) {
return;
}
if (isHidden() || _hiding || _hideAfterSlide) { if (isHidden() || _hiding || _hideAfterSlide) {
showAnimated(); showAnimated();
} else { } else {
@ -387,11 +379,7 @@ void TabbedPanel::hideFinished() {
_showAnimation.reset(); _showAnimation.reset();
_cache = QPixmap(); _cache = QPixmap();
_hiding = false; _hiding = false;
if (isDestroying()) { _selector->hideFinished();
deleteLater();
} else {
_selector->hideFinished();
}
} }
void TabbedPanel::showAnimated() { void TabbedPanel::showAnimated() {
@ -401,9 +389,6 @@ void TabbedPanel::showAnimated() {
} }
void TabbedPanel::showStarted() { void TabbedPanel::showStarted() {
if (isDestroying()) {
return;
}
if (isHidden()) { if (isHidden()) {
_selector->showStarted(); _selector->showStarted();
moveByBottom(); moveByBottom();
@ -416,9 +401,6 @@ void TabbedPanel::showStarted() {
} }
bool TabbedPanel::eventFilter(QObject *obj, QEvent *e) { bool TabbedPanel::eventFilter(QObject *obj, QEvent *e) {
if (isDestroying()) {
return false;
}
if (e->type() == QEvent::Enter) { if (e->type() == QEvent::Enter) {
otherEnter(); otherEnter();
} else if (e->type() == QEvent::Leave) { } else if (e->type() == QEvent::Leave) {
@ -455,6 +437,7 @@ bool TabbedPanel::overlaps(const QRect &globalRect) const {
} }
TabbedPanel::~TabbedPanel() { TabbedPanel::~TabbedPanel() {
hideFast();
if (!_ownedSelector) { if (!_ownedSelector) {
_controller->takeTabbedSelectorOwnershipFrom(this); _controller->takeTabbedSelectorOwnershipFrom(this);
} }

View File

@ -75,9 +75,6 @@ private:
void hideByTimerOrLeave(); void hideByTimerOrLeave();
void moveByBottom(); void moveByBottom();
bool isDestroying() const {
return !_selector;
}
void showFromSelector(); void showFromSelector();
style::margins innerPadding() const; style::margins innerPadding() const;

View File

@ -51,6 +51,10 @@ void TabbedSection::resizeEvent(QResizeEvent *e) {
_selector->setGeometry(rect()); _selector->setGeometry(rect());
} }
void TabbedSection::showFinishedHook() {
afterShown();
}
bool TabbedSection::showInternal( bool TabbedSection::showInternal(
not_null<Window::SectionMemento*> memento, not_null<Window::SectionMemento*> memento,
const Window::SectionShow &params) { const Window::SectionShow &params) {

View File

@ -52,9 +52,7 @@ public:
protected: protected:
void resizeEvent(QResizeEvent *e) override; void resizeEvent(QResizeEvent *e) override;
void showFinishedHook() override { void showFinishedHook() override;
afterShown();
}
private: private:
const not_null<TabbedSelector*> _selector; const not_null<TabbedSelector*> _selector;