| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108 |
- /*
- 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 "data/data_saved_sublist.h"
- #include "dialogs/ui/chat_search_in.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(Data::SavedSublist *sublist) : _value(sublist) {
- }
- 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) {
- }
- Key::Key(not_null<Data::SavedSublist*> sublist) : _value(sublist) {
- }
- 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;
- }
- Data::SavedSublist *Key::sublist() const {
- return _value ? _value->asSublist() : 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;
- }
- [[nodiscard]] bool SearchState::empty() const {
- return !inChat
- && tags.empty()
- && QStringView(query).trimmed().isEmpty();
- }
- ChatSearchTab SearchState::defaultTabForMe() const {
- return inChat.topic()
- ? ChatSearchTab::ThisTopic
- : (inChat.history() || inChat.sublist())
- ? ChatSearchTab::ThisPeer
- : ChatSearchTab::MyMessages;
- }
- bool SearchState::filterChatsList() const {
- using Tab = ChatSearchTab;
- return !inChat // ThisPeer can be in opened forum.
- && (tab == Tab::MyMessages || tab == Tab::ThisPeer);
- }
- } // namespace Dialogs
|