1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76
|
/*
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 {
Key::Key(History *history) : _value(history) {
}
Key::Key(Data::Folder *folder) : _value(folder) {
}
Key::Key(Data::Thread *thread) : _value(thread) {
}
Key::Key(Data::ForumTopic *topic) : _value(topic) {
}
Key::Key(not_null<History*> history) : _value(history) {
}
Key::Key(not_null<Data::Thread*> thread) : _value(thread) {
}
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;
}
Data::Folder *Key::folder() const {
return _value ? _value->asFolder() : nullptr;
}
Data::ForumTopic *Key::topic() const {
return _value ? _value->asTopic() : nullptr;
}
Data::Thread *Key::thread() const {
return _value ? _value->asThread() : nullptr;
}
History *Key::owningHistory() const {
if (const auto thread = this->thread()) {
return thread->owningHistory();
}
return nullptr;
}
PeerData *Key::peer() const {
if (const auto history = owningHistory()) {
return history->peer;
}
return nullptr;
}
} // namespace Dialogs
|