mirror of
https://github.com/AyuGram/AyuGramDesktop.git
synced 2026-08-06 20:03:12 +00:00
712ed6ebc6
Regression was introduced in 07a01bf7c7.
105 lines
2.4 KiB
C++
105 lines
2.4 KiB
C++
/*
|
|
This file is part of Telegram Desktop,
|
|
the official desktop application for the Telegram messaging service.
|
|
|
|
For license and copyright information please follow this link:
|
|
https://github.com/telegramdesktop/tdesktop/blob/master/LEGAL
|
|
*/
|
|
#pragma once
|
|
|
|
#include "ui/effects/animations.h"
|
|
#include "base/flat_map.h"
|
|
|
|
namespace Main {
|
|
class Session;
|
|
} // namespace Main
|
|
|
|
namespace Ui {
|
|
class ThanosEffect;
|
|
class ScrollArea;
|
|
struct ChatPaintContext;
|
|
} // namespace Ui
|
|
|
|
namespace HistoryView {
|
|
class Element;
|
|
} // namespace HistoryView
|
|
|
|
class HistoryItem;
|
|
|
|
namespace Ui {
|
|
|
|
struct CollapseGap {
|
|
int absY = -1;
|
|
int height = 0;
|
|
|
|
friend bool operator==(const CollapseGap&, const CollapseGap&) = default;
|
|
};
|
|
|
|
class ThanosEffectController final {
|
|
public:
|
|
struct Delegate {
|
|
Fn<HistoryView::Element*(not_null<const HistoryItem*>)> viewForItem;
|
|
Fn<int(not_null<const HistoryView::Element*>)> itemTop;
|
|
Fn<int()> visibleAreaTop;
|
|
Fn<int()> visibleAreaBottom;
|
|
Fn<int()> contentWidth;
|
|
Fn<ChatPaintContext(QRect)> preparePaintContext;
|
|
Fn<QWidget*()> window;
|
|
Fn<not_null<ScrollArea*>()> scrollArea;
|
|
Fn<void(int scrollTop)> scrollToY;
|
|
Fn<void(std::vector<CollapseGap>)> setCollapseGaps;
|
|
};
|
|
|
|
ThanosEffectController(
|
|
not_null<Main::Session*> session,
|
|
Delegate delegate,
|
|
rpl::lifetime &lifetime);
|
|
~ThanosEffectController();
|
|
|
|
void captureOnRemoval(not_null<const HistoryItem*> item);
|
|
void clearPreCaptured();
|
|
|
|
[[nodiscard]] const std::vector<CollapseGap> &renderGaps() const {
|
|
return _renderGaps;
|
|
}
|
|
|
|
private:
|
|
struct PreCapturedView {
|
|
int height = 0;
|
|
int top = 0;
|
|
};
|
|
|
|
struct CollapseGapState {
|
|
int absY = -1;
|
|
int startHeight = 0;
|
|
int currentHeight = 0;
|
|
int originalHeight = 0;
|
|
};
|
|
|
|
void captureItemsBatch(
|
|
const std::vector<not_null<HistoryItem*>> &items);
|
|
[[nodiscard]] bool captureView(
|
|
not_null<const HistoryView::Element*> view,
|
|
int viewHeight,
|
|
int viewTop);
|
|
void startCollapseAnimation(int height, int itemTop);
|
|
void collapseAnimationCallback();
|
|
void syncCollapseGapsToHost();
|
|
void ensureScrollBaseline();
|
|
|
|
const not_null<Main::Session*> _session;
|
|
const Delegate _delegate;
|
|
|
|
std::unique_ptr<ThanosEffect> _thanosEffect;
|
|
base::flat_map<FullMsgId, PreCapturedView> _preCaptured;
|
|
std::vector<CollapseGap> _renderGaps;
|
|
|
|
std::vector<CollapseGapState> _collapseGaps;
|
|
Animations::Simple _collapseAnimation;
|
|
|
|
int _savedScrollTop = 0;
|
|
bool _restoreScrollPending = false;
|
|
};
|
|
|
|
} // namespace Ui
|