74 lines
		
	
	
	
		
			1.5 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			74 lines
		
	
	
	
		
			1.5 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
 | |
| */
 | |
| #include "dialogs/dialogs_key.h"
 | |
| 
 | |
| #include "data/data_folder.h"
 | |
| #include "data/data_forum_topic.h"
 | |
| #include "history/history.h"
 | |
| 
 | |
| namespace Dialogs {
 | |
| namespace {
 | |
| 
 | |
| using Folder = Data::Folder;
 | |
| using ForumTopic = Data::ForumTopic;
 | |
| 
 | |
| } // namespace
 | |
| 
 | |
| Key::Key(History *history) : _value(history) {
 | |
| }
 | |
| 
 | |
| Key::Key(Data::Folder *folder) : _value(folder) {
 | |
| }
 | |
| 
 | |
| Key::Key(Data::ForumTopic *topic) : _value(topic) {
 | |
| }
 | |
| 
 | |
| Key::Key(not_null<History*> history) : _value(history) {
 | |
| }
 | |
| 
 | |
| Key::Key(not_null<Data::Folder*> folder) : _value(folder) {
 | |
| }
 | |
| 
 | |
| Key::Key(not_null<Data::ForumTopic*> topic) : _value(topic) {
 | |
| }
 | |
| 
 | |
| not_null<Entry*> Key::entry() const {
 | |
| 	Expects(_value != nullptr);
 | |
| 
 | |
| 	return _value;
 | |
| }
 | |
| 
 | |
| History *Key::history() const {
 | |
| 	return _value ? _value->asHistory() : nullptr;
 | |
| }
 | |
| 
 | |
| Folder *Key::folder() const {
 | |
| 	return _value ? _value->asFolder() : nullptr;
 | |
| }
 | |
| 
 | |
| ForumTopic *Key::topic() const {
 | |
| 	return _value ? _value->asTopic() : nullptr;
 | |
| }
 | |
| 
 | |
| History *Key::parentHistory() const {
 | |
| 	if (const auto result = history()) {
 | |
| 		return result;
 | |
| 	} else if (const auto child = topic()) {
 | |
| 		return child->forum();
 | |
| 	}
 | |
| 	return nullptr;
 | |
| }
 | |
| 
 | |
| PeerData *Key::peer() const {
 | |
| 	if (const auto history = parentHistory()) {
 | |
| 		return history->peer;
 | |
| 	}
 | |
| 	return nullptr;
 | |
| }
 | |
| 
 | |
| } // namespace Dialogs
 | 
