mirror of https://github.com/procxx/kepka.git
Fix autoplay settings apply in albums.
This commit is contained in:
parent
063be9a13a
commit
08e04cdcb1
|
@ -3225,17 +3225,25 @@ void Session::unregisterContactItem(
|
|||
}
|
||||
|
||||
void Session::registerPlayingVideoFile(not_null<ViewElement*> view) {
|
||||
_playingVideoFiles.emplace(view);
|
||||
registerHeavyViewPart(view);
|
||||
if (++_playingVideoFiles[view] == 1) {
|
||||
registerHeavyViewPart(view);
|
||||
}
|
||||
}
|
||||
|
||||
void Session::unregisterPlayingVideoFile(not_null<ViewElement*> view) {
|
||||
_playingVideoFiles.remove(view);
|
||||
unregisterHeavyViewPart(view);
|
||||
const auto i = _playingVideoFiles.find(view);
|
||||
if (i != _playingVideoFiles.end()) {
|
||||
if (!--i->second) {
|
||||
_playingVideoFiles.erase(i);
|
||||
unregisterHeavyViewPart(view);
|
||||
}
|
||||
} else {
|
||||
unregisterHeavyViewPart(view);
|
||||
}
|
||||
}
|
||||
|
||||
void Session::stopPlayingVideoFiles() {
|
||||
for (const auto view : base::take(_playingVideoFiles)) {
|
||||
for (const auto &[view, count] : base::take(_playingVideoFiles)) {
|
||||
if (const auto media = view->media()) {
|
||||
media->stopAnimation();
|
||||
}
|
||||
|
@ -3243,10 +3251,16 @@ void Session::stopPlayingVideoFiles() {
|
|||
}
|
||||
|
||||
void Session::checkPlayingVideoFiles() {
|
||||
for (const auto view : base::take(_playingVideoFiles)) {
|
||||
const auto old = base::take(_playingVideoFiles);
|
||||
for (const auto &[view, count] : old) {
|
||||
if (const auto media = view->media()) {
|
||||
media->checkAnimation();
|
||||
if (const auto left = media->checkAnimationCount()) {
|
||||
_playingVideoFiles.emplace(view, left);
|
||||
registerHeavyViewPart(view);
|
||||
continue;
|
||||
}
|
||||
}
|
||||
unregisterHeavyViewPart(view);
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
@ -951,7 +951,7 @@ private:
|
|||
std::unordered_map<
|
||||
UserId,
|
||||
base::flat_set<not_null<ViewElement*>>> _contactViews;
|
||||
base::flat_set<not_null<ViewElement*>> _playingVideoFiles;
|
||||
base::flat_map<not_null<ViewElement*>, int> _playingVideoFiles;
|
||||
|
||||
base::flat_set<not_null<WebPageData*>> _webpagesUpdated;
|
||||
base::flat_set<not_null<GameData*>> _gamesUpdated;
|
||||
|
|
|
@ -56,8 +56,8 @@ public:
|
|||
void stopAnimation() override {
|
||||
if (_attach) _attach->stopAnimation();
|
||||
}
|
||||
void checkAnimation() override {
|
||||
if (_attach) _attach->checkAnimation();
|
||||
int checkAnimationCount() override {
|
||||
return _attach ? _attach->checkAnimationCount() : 0;
|
||||
}
|
||||
|
||||
not_null<GameData*> game() {
|
||||
|
|
|
@ -1365,10 +1365,14 @@ void Gif::stopAnimation() {
|
|||
}
|
||||
}
|
||||
|
||||
void Gif::checkAnimation() {
|
||||
if (_streamed && !autoplayEnabled()) {
|
||||
stopAnimation();
|
||||
int Gif::checkAnimationCount() {
|
||||
if (!_streamed) {
|
||||
return 0;
|
||||
} else if (autoplayEnabled()) {
|
||||
return 1;
|
||||
}
|
||||
stopAnimation();
|
||||
return 0;
|
||||
}
|
||||
|
||||
float64 Gif::dataProgress() const {
|
||||
|
|
|
@ -82,7 +82,7 @@ public:
|
|||
StateRequest request) const override;
|
||||
|
||||
void stopAnimation() override;
|
||||
void checkAnimation() override;
|
||||
int checkAnimationCount() override;
|
||||
|
||||
TextWithEntities getCaption() const override {
|
||||
return _caption.toTextWithEntities();
|
||||
|
|
|
@ -133,7 +133,8 @@ public:
|
|||
}
|
||||
virtual void clearStickerLoopPlayed() {
|
||||
}
|
||||
virtual void checkAnimation() {
|
||||
virtual int checkAnimationCount() {
|
||||
return 0;
|
||||
}
|
||||
|
||||
[[nodiscard]] virtual QSize sizeForGrouping() const {
|
||||
|
|
|
@ -408,6 +408,26 @@ void GroupedMedia::updateNeedBubbleState() {
|
|||
_needBubble = computeNeedBubble();
|
||||
}
|
||||
|
||||
void GroupedMedia::stopAnimation() {
|
||||
for (auto &part : _parts) {
|
||||
part.content->stopAnimation();
|
||||
}
|
||||
}
|
||||
|
||||
int GroupedMedia::checkAnimationCount() {
|
||||
auto result = 0;
|
||||
for (auto &part : _parts) {
|
||||
result += part.content->checkAnimationCount();
|
||||
}
|
||||
return result;
|
||||
}
|
||||
|
||||
void GroupedMedia::unloadHeavyPart() {
|
||||
for (auto &part : _parts) {
|
||||
part.content->unloadHeavyPart();
|
||||
}
|
||||
}
|
||||
|
||||
void GroupedMedia::parentTextUpdated() {
|
||||
history()->owner().requestViewResize(_parent);
|
||||
}
|
||||
|
|
|
@ -86,6 +86,10 @@ public:
|
|||
return true;
|
||||
}
|
||||
|
||||
void stopAnimation() override;
|
||||
int checkAnimationCount() override;
|
||||
void unloadHeavyPart() override;
|
||||
|
||||
void parentTextUpdated() override;
|
||||
|
||||
private:
|
||||
|
|
|
@ -62,8 +62,8 @@ public:
|
|||
void stopAnimation() override {
|
||||
if (_attach) _attach->stopAnimation();
|
||||
}
|
||||
void checkAnimation() override {
|
||||
if (_attach) _attach->checkAnimation();
|
||||
int checkAnimationCount() override {
|
||||
return _attach ? _attach->checkAnimationCount() : 0;
|
||||
}
|
||||
|
||||
not_null<WebPageData*> webpage() {
|
||||
|
|
Loading…
Reference in New Issue