2
0
mirror of https://github.com/kotatogram/kotatogram-desktop synced 2025-08-23 19:07:25 +00:00

65 lines
1.5 KiB
C
Raw Normal View History

/*
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 <any>
class Image;
class HistoryItem;
enum class ImageRoundRadius;
namespace Ui {
} // namespace Ui
namespace HistoryView {
struct ToPreviewOptions;
2021-10-04 23:37:55 +04:00
struct ItemPreviewImage;
struct ItemPreview;
} // namespace HistoryView
namespace Dialogs::Ui {
using namespace ::Ui;
class MessageView final {
public:
MessageView();
~MessageView();
using ToPreviewOptions = HistoryView::ToPreviewOptions;
2021-10-04 23:37:55 +04:00
using ItemPreviewImage = HistoryView::ItemPreviewImage;
using ItemPreview = HistoryView::ItemPreview;
void itemInvalidated(not_null<const HistoryItem*> item);
[[nodiscard]] bool dependsOn(not_null<const HistoryItem*> item) const;
void paint(
Painter &p,
not_null<const HistoryItem*> item,
const QRect &geometry,
bool active,
bool selected,
ToPreviewOptions options) const;
private:
struct LoadingContext;
mutable const HistoryItem *_textCachedFor = nullptr;
2021-10-04 11:58:31 +04:00
mutable Ui::Text::String _senderCache;
mutable Ui::Text::String _textCache;
2021-10-04 23:37:55 +04:00
mutable std::vector<ItemPreviewImage> _imagesCache;
mutable std::unique_ptr<LoadingContext> _loadingContext;
};
2021-10-04 11:58:31 +04:00
[[nodiscard]] HistoryView::ItemPreview PreviewWithSender(
HistoryView::ItemPreview &&preview,
const TextWithEntities &sender);
2021-10-04 11:58:31 +04:00
} // namespace Dialogs::Ui