mirror of https://github.com/procxx/kepka.git
Preload documents in media viewer.
This commit is contained in:
parent
fb322b5fc5
commit
1542311d89
|
@ -3482,23 +3482,25 @@ void OverlayWidget::preloadData(int delta) {
|
||||||
auto entity = entityByIndex(forgetIndex);
|
auto entity = entityByIndex(forgetIndex);
|
||||||
if (auto photo = base::get_if<not_null<PhotoData*>>(&entity.data)) {
|
if (auto photo = base::get_if<not_null<PhotoData*>>(&entity.data)) {
|
||||||
(*photo)->unload();
|
(*photo)->unload();
|
||||||
} else if (auto document = base::get_if<not_null<DocumentData*>>(&entity.data)) {
|
|
||||||
(*document)->unload();
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
auto medias = base::flat_set<std::shared_ptr<Data::DocumentMedia>>();
|
||||||
for (auto index = from; index != till; ++index) {
|
for (auto index = from; index != till; ++index) {
|
||||||
auto entity = entityByIndex(index);
|
auto entity = entityByIndex(index);
|
||||||
if (auto photo = base::get_if<not_null<PhotoData*>>(&entity.data)) {
|
if (auto photo = base::get_if<not_null<PhotoData*>>(&entity.data)) {
|
||||||
(*photo)->download(fileOrigin());
|
(*photo)->download(fileOrigin());
|
||||||
} else if (auto document = base::get_if<not_null<DocumentData*>>(
|
} else if (auto document = base::get_if<not_null<DocumentData*>>(
|
||||||
&entity.data)) {
|
&entity.data)) {
|
||||||
|
const auto [i, ok] = medias.emplace(
|
||||||
|
(*document)->createMediaView());
|
||||||
(*document)->loadThumbnail(fileOrigin());
|
(*document)->loadThumbnail(fileOrigin());
|
||||||
//if (!(*document)->canBePlayed()) { // #TODO optimize
|
if (!(*i)->canBePlayed()) {
|
||||||
// (*document)->automaticLoad(fileOrigin(), entity.item);
|
(*i)->automaticLoad(fileOrigin(), entity.item);
|
||||||
//}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
_preloadMedias = std::move(medias);
|
||||||
}
|
}
|
||||||
|
|
||||||
void OverlayWidget::mousePressEvent(QMouseEvent *e) {
|
void OverlayWidget::mousePressEvent(QMouseEvent *e) {
|
||||||
|
|
|
@ -349,6 +349,7 @@ private:
|
||||||
PhotoData *_photo = nullptr;
|
PhotoData *_photo = nullptr;
|
||||||
DocumentData *_doc = nullptr;
|
DocumentData *_doc = nullptr;
|
||||||
std::shared_ptr<Data::DocumentMedia> _docMedia;
|
std::shared_ptr<Data::DocumentMedia> _docMedia;
|
||||||
|
base::flat_set<std::shared_ptr<Data::DocumentMedia>> _preloadMedias;
|
||||||
int _rotation = 0;
|
int _rotation = 0;
|
||||||
std::unique_ptr<SharedMedia> _sharedMedia;
|
std::unique_ptr<SharedMedia> _sharedMedia;
|
||||||
std::optional<SharedMediaWithLastSlice> _sharedMediaData;
|
std::optional<SharedMediaWithLastSlice> _sharedMediaData;
|
||||||
|
|
Loading…
Reference in New Issue