70 lines
		
	
	
	
		
			1.4 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			70 lines
		
	
	
	
		
			1.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 "data/data_photo.h"
 | 
						|
#include "data/data_document.h"
 | 
						|
 | 
						|
enum class WebPageType {
 | 
						|
	Photo,
 | 
						|
	Video,
 | 
						|
	Profile,
 | 
						|
	WallPaper,
 | 
						|
	Article,
 | 
						|
	ArticleWithIV,
 | 
						|
};
 | 
						|
 | 
						|
WebPageType ParseWebPageType(const MTPDwebPage &type);
 | 
						|
 | 
						|
struct WebPageCollage {
 | 
						|
	using Item = base::variant<PhotoData*, DocumentData*>;
 | 
						|
 | 
						|
	WebPageCollage() = default;
 | 
						|
	explicit WebPageCollage(const MTPDwebPage &data);
 | 
						|
 | 
						|
	std::vector<Item> items;
 | 
						|
 | 
						|
};
 | 
						|
 | 
						|
struct WebPageData {
 | 
						|
	WebPageData(const WebPageId &id) : id(id) {
 | 
						|
	}
 | 
						|
 | 
						|
	bool applyChanges(
 | 
						|
		WebPageType newType,
 | 
						|
		const QString &newUrl,
 | 
						|
		const QString &newDisplayUrl,
 | 
						|
		const QString &newSiteName,
 | 
						|
		const QString &newTitle,
 | 
						|
		const TextWithEntities &newDescription,
 | 
						|
		PhotoData *newPhoto,
 | 
						|
		DocumentData *newDocument,
 | 
						|
		WebPageCollage &&newCollage,
 | 
						|
		int newDuration,
 | 
						|
		const QString &newAuthor,
 | 
						|
		int newPendingTill);
 | 
						|
 | 
						|
	WebPageId id = 0;
 | 
						|
	WebPageType type = WebPageType::Article;
 | 
						|
	QString url;
 | 
						|
	QString displayUrl;
 | 
						|
	QString siteName;
 | 
						|
	QString title;
 | 
						|
	TextWithEntities description;
 | 
						|
	int duration = 0;
 | 
						|
	QString author;
 | 
						|
	PhotoData *photo = nullptr;
 | 
						|
	DocumentData *document = nullptr;
 | 
						|
	WebPageCollage collage;
 | 
						|
	int pendingTill = 0;
 | 
						|
	int version = 0;
 | 
						|
 | 
						|
private:
 | 
						|
	void replaceDocumentGoodThumbnail();
 | 
						|
 | 
						|
};
 |