mirror of https://github.com/procxx/kepka.git
parent
9823615a84
commit
7b51383b3b
|
@ -442,6 +442,7 @@ void GifsListWidget::processPanelHideFinished() {
|
||||||
if (const auto result = item->getResult()) {
|
if (const auto result = item->getResult()) {
|
||||||
result->unload();
|
result->unload();
|
||||||
}
|
}
|
||||||
|
item->unloadAnimation();
|
||||||
};
|
};
|
||||||
// Preserve panel state through visibility toggles.
|
// Preserve panel state through visibility toggles.
|
||||||
//clearInlineRows(false);
|
//clearInlineRows(false);
|
||||||
|
|
|
@ -357,6 +357,11 @@ void Gif::radialAnimationCallback(crl::time now) const {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
void Gif::unloadAnimation() {
|
||||||
|
_gif.reset();
|
||||||
|
getShownDocument()->unload();
|
||||||
|
}
|
||||||
|
|
||||||
void Gif::clipCallback(Media::Clip::Notification notification) {
|
void Gif::clipCallback(Media::Clip::Notification notification) {
|
||||||
using namespace Media::Clip;
|
using namespace Media::Clip;
|
||||||
switch (notification) {
|
switch (notification) {
|
||||||
|
@ -370,8 +375,7 @@ void Gif::clipCallback(Media::Clip::Notification notification) {
|
||||||
auto frame = countFrameSize();
|
auto frame = countFrameSize();
|
||||||
_gif->start(frame.width(), frame.height(), _width, height, ImageRoundRadius::None, RectPart::None);
|
_gif->start(frame.width(), frame.height(), _width, height, ImageRoundRadius::None, RectPart::None);
|
||||||
} else if (_gif->autoPausedGif() && !context()->inlineItemVisible(this)) {
|
} else if (_gif->autoPausedGif() && !context()->inlineItemVisible(this)) {
|
||||||
_gif.reset();
|
unloadAnimation();
|
||||||
getShownDocument()->unload();
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -1429,6 +1433,11 @@ void Game::radialAnimationCallback(crl::time now) const {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
void Game::unloadAnimation() {
|
||||||
|
_gif.reset();
|
||||||
|
getResultDocument()->unload();
|
||||||
|
}
|
||||||
|
|
||||||
void Game::clipCallback(Media::Clip::Notification notification) {
|
void Game::clipCallback(Media::Clip::Notification notification) {
|
||||||
using namespace Media::Clip;
|
using namespace Media::Clip;
|
||||||
switch (notification) {
|
switch (notification) {
|
||||||
|
@ -1440,8 +1449,7 @@ void Game::clipCallback(Media::Clip::Notification notification) {
|
||||||
} else if (_gif->ready() && !_gif->started()) {
|
} else if (_gif->ready() && !_gif->started()) {
|
||||||
_gif->start(_frameSize.width(), _frameSize.height(), st::inlineThumbSize, st::inlineThumbSize, ImageRoundRadius::None, RectPart::None);
|
_gif->start(_frameSize.width(), _frameSize.height(), st::inlineThumbSize, st::inlineThumbSize, ImageRoundRadius::None, RectPart::None);
|
||||||
} else if (_gif->autoPausedGif() && !context()->inlineItemVisible(this)) {
|
} else if (_gif->autoPausedGif() && !context()->inlineItemVisible(this)) {
|
||||||
_gif.reset();
|
unloadAnimation();
|
||||||
getResultDocument()->unload();
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -75,6 +75,8 @@ public:
|
||||||
|
|
||||||
int resizeGetHeight(int width) override;
|
int resizeGetHeight(int width) override;
|
||||||
|
|
||||||
|
void unloadAnimation() override;
|
||||||
|
|
||||||
private:
|
private:
|
||||||
QSize countFrameSize() const;
|
QSize countFrameSize() const;
|
||||||
|
|
||||||
|
@ -370,6 +372,8 @@ public:
|
||||||
QPoint point,
|
QPoint point,
|
||||||
StateRequest request) const override;
|
StateRequest request) const override;
|
||||||
|
|
||||||
|
void unloadAnimation() override;
|
||||||
|
|
||||||
private:
|
private:
|
||||||
void countFrameSize();
|
void countFrameSize();
|
||||||
|
|
||||||
|
|
|
@ -80,6 +80,8 @@ public:
|
||||||
PhotoData *getPreviewPhoto() const;
|
PhotoData *getPreviewPhoto() const;
|
||||||
|
|
||||||
virtual void preload() const;
|
virtual void preload() const;
|
||||||
|
virtual void unloadAnimation() {
|
||||||
|
}
|
||||||
|
|
||||||
void update() const;
|
void update() const;
|
||||||
void layoutChanged();
|
void layoutChanged();
|
||||||
|
|
|
@ -304,6 +304,7 @@ void Inner::hideFinish(bool completely) {
|
||||||
if (const auto result = item->getResult()) {
|
if (const auto result = item->getResult()) {
|
||||||
result->unload();
|
result->unload();
|
||||||
}
|
}
|
||||||
|
item->unloadAnimation();
|
||||||
};
|
};
|
||||||
clearInlineRows(false);
|
clearInlineRows(false);
|
||||||
for (const auto &[result, layout] : _inlineLayouts) {
|
for (const auto &[result, layout] : _inlineLayouts) {
|
||||||
|
|
Loading…
Reference in New Issue