51 lines
1.3 KiB
C++
51 lines
1.3 KiB
C++
//
|
|
// Copyright Aliaksei Levin (levlam@telegram.org), Arseny Smirnov (arseny30@gmail.com) 2014-2022
|
|
//
|
|
// Distributed under the Boost Software License, Version 1.0. (See accompanying
|
|
// file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
|
|
//
|
|
#pragma once
|
|
|
|
#include "td/telegram/DialogNotificationSettings.h"
|
|
#include "td/telegram/ForumTopicInfo.h"
|
|
#include "td/telegram/MessageId.h"
|
|
#include "td/telegram/td_api.h"
|
|
#include "td/telegram/telegram_api.h"
|
|
|
|
#include "td/utils/common.h"
|
|
|
|
namespace td {
|
|
|
|
class DraftMessage;
|
|
class Td;
|
|
|
|
class ForumTopic {
|
|
ForumTopicInfo info_;
|
|
MessageId last_message_id_;
|
|
bool is_pinned_ = false;
|
|
int32 unread_count_ = 0;
|
|
MessageId last_read_inbox_message_id_;
|
|
MessageId last_read_outbox_message_id_;
|
|
int32 unread_mention_count_ = 0;
|
|
int32 unread_reaction_count_ = 0;
|
|
DialogNotificationSettings notification_settings_;
|
|
unique_ptr<DraftMessage> draft_message_;
|
|
|
|
public:
|
|
ForumTopic() = default;
|
|
|
|
ForumTopic(Td *td, tl_object_ptr<telegram_api::ForumTopic> &&forum_topic_ptr);
|
|
|
|
bool is_empty() const {
|
|
return info_.is_empty();
|
|
}
|
|
|
|
MessageId get_top_thread_message_id() const {
|
|
return info_.get_top_thread_message_id();
|
|
}
|
|
|
|
td_api::object_ptr<td_api::forumTopic> get_forum_topic_object(Td *td) const;
|
|
};
|
|
|
|
} // namespace td
|