67 lines
1.3 KiB
C++
67 lines
1.3 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/rp_widget.h"
|
|
|
|
class HistoryItem;
|
|
|
|
namespace Data {
|
|
class DocumentMedia;
|
|
class PhotoMedia;
|
|
} // namespace Data
|
|
|
|
namespace Ui {
|
|
class SpoilerAnimation;
|
|
} // namespace Ui
|
|
|
|
namespace Info::Statistics {
|
|
|
|
struct SavedState;
|
|
|
|
class MessagePreview final : public Ui::RpWidget {
|
|
public:
|
|
MessagePreview(
|
|
not_null<Ui::RpWidget*> parent,
|
|
not_null<HistoryItem*> item,
|
|
int views,
|
|
int shares,
|
|
QImage cachedPreview);
|
|
|
|
void saveState(SavedState &state) const;
|
|
|
|
protected:
|
|
void paintEvent(QPaintEvent *e) override;
|
|
|
|
int resizeGetHeight(int newWidth) override;
|
|
|
|
private:
|
|
void processPreview(not_null<HistoryItem*> item);
|
|
|
|
not_null<HistoryItem*> _item;
|
|
Ui::Text::String _text;
|
|
Ui::Text::String _date;
|
|
Ui::Text::String _views;
|
|
Ui::Text::String _shares;
|
|
|
|
int _viewsWidth = 0;
|
|
int _sharesWidth = 0;
|
|
|
|
QImage _cornerCache;
|
|
QImage _preview;
|
|
|
|
std::shared_ptr<Data::PhotoMedia> _photoMedia;
|
|
std::shared_ptr<Data::DocumentMedia> _documentMedia;
|
|
std::unique_ptr<Ui::SpoilerAnimation> _spoiler;
|
|
|
|
rpl::lifetime _lifetimeDownload;
|
|
|
|
};
|
|
|
|
} // namespace Info::Statistics
|