mirror of https://github.com/procxx/kepka.git
Clear DocumentMedia in media overview.
This commit is contained in:
parent
58f82620e0
commit
ad5507f2c8
|
@ -804,8 +804,19 @@ void ListWidget::invalidatePaletteCache() {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
void ListWidget::registerHeavyItem(not_null<BaseLayout*> item) {
|
void ListWidget::registerHeavyItem(not_null<const BaseLayout*> item) {
|
||||||
_heavyLayouts.emplace(item);
|
if (!_heavyLayouts.contains(item)) {
|
||||||
|
_heavyLayouts.emplace(item);
|
||||||
|
_heavyLayoutsInvalidated = true;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
void ListWidget::unregisterHeavyItem(not_null<const BaseLayout*> item) {
|
||||||
|
const auto i = _heavyLayouts.find(item);
|
||||||
|
if (i != _heavyLayouts.end()) {
|
||||||
|
_heavyLayouts.erase(i);
|
||||||
|
_heavyLayoutsInvalidated = true;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
SparseIdsMergedSlice::Key ListWidget::sliceKey(
|
SparseIdsMergedSlice::Key ListWidget::sliceKey(
|
||||||
|
@ -1114,18 +1125,25 @@ void ListWidget::clearHeavyItems() {
|
||||||
if (!visibleHeight) {
|
if (!visibleHeight) {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
_heavyLayoutsInvalidated = false;
|
||||||
const auto above = _visibleTop - visibleHeight;
|
const auto above = _visibleTop - visibleHeight;
|
||||||
const auto below = _visibleBottom + visibleHeight;
|
const auto below = _visibleBottom + visibleHeight;
|
||||||
for (auto i = _heavyLayouts.begin(); i != _heavyLayouts.end();) {
|
for (auto i = _heavyLayouts.begin(); i != _heavyLayouts.end();) {
|
||||||
const auto item = *i;
|
const auto item = const_cast<BaseLayout*>(i->get());
|
||||||
const auto rect = findItemDetails(item).geometry;
|
const auto rect = findItemDetails(item).geometry;
|
||||||
if (rect.top() + rect.height() <= above || rect.top() >= below) {
|
if (rect.top() + rect.height() <= above || rect.top() >= below) {
|
||||||
i = _heavyLayouts.erase(i);
|
i = _heavyLayouts.erase(i);
|
||||||
item->clearHeavyPart();
|
item->clearHeavyPart();
|
||||||
|
if (_heavyLayoutsInvalidated) {
|
||||||
|
break;
|
||||||
|
}
|
||||||
} else {
|
} else {
|
||||||
++i;
|
++i;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
if (_heavyLayoutsInvalidated) {
|
||||||
|
clearHeavyItems();
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
auto ListWidget::countScrollState() const -> ScrollTopState {
|
auto ListWidget::countScrollState() const -> ScrollTopState {
|
||||||
|
|
|
@ -76,7 +76,8 @@ public:
|
||||||
void saveState(not_null<Memento*> memento);
|
void saveState(not_null<Memento*> memento);
|
||||||
void restoreState(not_null<Memento*> memento);
|
void restoreState(not_null<Memento*> memento);
|
||||||
|
|
||||||
void registerHeavyItem(not_null<BaseLayout*> item) override;
|
void registerHeavyItem(not_null<const BaseLayout*> item) override;
|
||||||
|
void unregisterHeavyItem(not_null<const BaseLayout*> item) override;
|
||||||
|
|
||||||
private:
|
private:
|
||||||
struct Context;
|
struct Context;
|
||||||
|
@ -289,8 +290,9 @@ private:
|
||||||
int _idsLimit = kMinimalIdsLimit;
|
int _idsLimit = kMinimalIdsLimit;
|
||||||
SparseIdsMergedSlice _slice;
|
SparseIdsMergedSlice _slice;
|
||||||
|
|
||||||
base::flat_map<UniversalMsgId, CachedItem> _layouts;
|
std::unordered_map<UniversalMsgId, CachedItem> _layouts;
|
||||||
base::flat_set<not_null<BaseLayout*>> _heavyLayouts;
|
base::flat_set<not_null<const BaseLayout*>> _heavyLayouts;
|
||||||
|
bool _heavyLayoutsInvalidated = false;
|
||||||
std::vector<Section> _sections;
|
std::vector<Section> _sections;
|
||||||
|
|
||||||
int _visibleTop = 0;
|
int _visibleTop = 0;
|
||||||
|
|
|
@ -533,6 +533,11 @@ void Video::ensureDataMediaCreated() const {
|
||||||
_dataMedia = _data->createMediaView();
|
_dataMedia = _data->createMediaView();
|
||||||
_dataMedia->goodThumbnailWanted();
|
_dataMedia->goodThumbnailWanted();
|
||||||
_dataMedia->thumbnailWanted(parent()->fullId());
|
_dataMedia->thumbnailWanted(parent()->fullId());
|
||||||
|
delegate()->registerHeavyItem(this);
|
||||||
|
}
|
||||||
|
|
||||||
|
void Video::clearHeavyPart() {
|
||||||
|
_dataMedia = nullptr;
|
||||||
}
|
}
|
||||||
|
|
||||||
float64 Video::dataProgress() const {
|
float64 Video::dataProgress() const {
|
||||||
|
@ -828,6 +833,11 @@ void Voice::ensureDataMediaCreated() const {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
_dataMedia = _data->createMediaView();
|
_dataMedia = _data->createMediaView();
|
||||||
|
delegate()->registerHeavyItem(this);
|
||||||
|
}
|
||||||
|
|
||||||
|
void Voice::clearHeavyPart() {
|
||||||
|
_dataMedia = nullptr;
|
||||||
}
|
}
|
||||||
|
|
||||||
float64 Voice::dataProgress() const {
|
float64 Voice::dataProgress() const {
|
||||||
|
@ -1298,6 +1308,11 @@ void Document::ensureDataMediaCreated() const {
|
||||||
}
|
}
|
||||||
_dataMedia = _data->createMediaView();
|
_dataMedia = _data->createMediaView();
|
||||||
_dataMedia->thumbnailWanted(parent()->fullId());
|
_dataMedia->thumbnailWanted(parent()->fullId());
|
||||||
|
delegate()->registerHeavyItem(this);
|
||||||
|
}
|
||||||
|
|
||||||
|
void Document::clearHeavyPart() {
|
||||||
|
_dataMedia = nullptr;
|
||||||
}
|
}
|
||||||
|
|
||||||
float64 Document::dataProgress() const {
|
float64 Document::dataProgress() const {
|
||||||
|
@ -1613,6 +1628,7 @@ void Link::validateThumbnail() {
|
||||||
: ImageRoundRadius::Small;
|
: ImageRoundRadius::Small;
|
||||||
_thumbnail = thumbnail->pixSingle(parent()->fullId(), _pixw, _pixh, st::linksPhotoSize, st::linksPhotoSize, roundRadius);
|
_thumbnail = thumbnail->pixSingle(parent()->fullId(), _pixw, _pixh, st::linksPhotoSize, st::linksPhotoSize, roundRadius);
|
||||||
_documentMedia = nullptr;
|
_documentMedia = nullptr;
|
||||||
|
delegate()->unregisterHeavyItem(this);
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
const auto size = QSize(st::linksPhotoSize, st::linksPhotoSize);
|
const auto size = QSize(st::linksPhotoSize, st::linksPhotoSize);
|
||||||
|
@ -1654,6 +1670,11 @@ void Link::ensureDocumentMediaCreated() {
|
||||||
}
|
}
|
||||||
_documentMedia = _page->document->createMediaView();
|
_documentMedia = _page->document->createMediaView();
|
||||||
_documentMedia->thumbnailWanted(parent()->fullId());
|
_documentMedia->thumbnailWanted(parent()->fullId());
|
||||||
|
delegate()->registerHeavyItem(this);
|
||||||
|
}
|
||||||
|
|
||||||
|
void Link::clearHeavyPart() {
|
||||||
|
_documentMedia = nullptr;
|
||||||
}
|
}
|
||||||
|
|
||||||
TextState Link::getState(
|
TextState Link::getState(
|
||||||
|
|
|
@ -210,6 +210,8 @@ public:
|
||||||
QPoint point,
|
QPoint point,
|
||||||
StateRequest request) const override;
|
StateRequest request) const override;
|
||||||
|
|
||||||
|
void clearHeavyPart() override;
|
||||||
|
|
||||||
protected:
|
protected:
|
||||||
float64 dataProgress() const override;
|
float64 dataProgress() const override;
|
||||||
bool dataFinished() const override;
|
bool dataFinished() const override;
|
||||||
|
@ -244,6 +246,8 @@ public:
|
||||||
QPoint point,
|
QPoint point,
|
||||||
StateRequest request) const override;
|
StateRequest request) const override;
|
||||||
|
|
||||||
|
void clearHeavyPart() override;
|
||||||
|
|
||||||
protected:
|
protected:
|
||||||
float64 dataProgress() const override;
|
float64 dataProgress() const override;
|
||||||
bool dataFinished() const override;
|
bool dataFinished() const override;
|
||||||
|
@ -284,6 +288,8 @@ public:
|
||||||
QPoint point,
|
QPoint point,
|
||||||
StateRequest request) const override;
|
StateRequest request) const override;
|
||||||
|
|
||||||
|
void clearHeavyPart() override;
|
||||||
|
|
||||||
protected:
|
protected:
|
||||||
float64 dataProgress() const override;
|
float64 dataProgress() const override;
|
||||||
bool dataFinished() const override;
|
bool dataFinished() const override;
|
||||||
|
@ -334,6 +340,8 @@ public:
|
||||||
QPoint point,
|
QPoint point,
|
||||||
StateRequest request) const override;
|
StateRequest request) const override;
|
||||||
|
|
||||||
|
void clearHeavyPart() override;
|
||||||
|
|
||||||
protected:
|
protected:
|
||||||
const style::RoundCheckbox &checkboxStyle() const override;
|
const style::RoundCheckbox &checkboxStyle() const override;
|
||||||
|
|
||||||
|
|
|
@ -14,7 +14,8 @@ class ItemBase;
|
||||||
|
|
||||||
class Delegate {
|
class Delegate {
|
||||||
public:
|
public:
|
||||||
virtual void registerHeavyItem(not_null<ItemBase*> item) = 0;
|
virtual void registerHeavyItem(not_null<const ItemBase*> item) = 0;
|
||||||
|
virtual void unregisterHeavyItem(not_null<const ItemBase*> item) = 0;
|
||||||
|
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue