49 lines
1.3 KiB
C
49 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/CustomEmojiId.h"
|
||
|
#include "td/telegram/DialogId.h"
|
||
|
#include "td/telegram/MessageId.h"
|
||
|
#include "td/telegram/td_api.h"
|
||
|
#include "td/telegram/telegram_api.h"
|
||
|
|
||
|
#include "td/utils/common.h"
|
||
|
#include "td/utils/StringBuilder.h"
|
||
|
|
||
|
namespace td {
|
||
|
|
||
|
class Td;
|
||
|
|
||
|
class ForumTopicInfo {
|
||
|
MessageId top_thread_message_id_;
|
||
|
string title_;
|
||
|
int32 icon_color_ = 0x6FB9F0;
|
||
|
CustomEmojiId icon_custom_emoji_id_;
|
||
|
int32 creation_date_ = 0;
|
||
|
DialogId creator_dialog_id_;
|
||
|
bool is_outgoing_ = false;
|
||
|
bool is_closed_ = false;
|
||
|
|
||
|
friend StringBuilder &operator<<(StringBuilder &string_builder, const ForumTopicInfo &topic_info);
|
||
|
|
||
|
public:
|
||
|
ForumTopicInfo() = default;
|
||
|
|
||
|
ForumTopicInfo(Td *td, const tl_object_ptr<telegram_api::ForumTopic> &forum_topic_ptr);
|
||
|
|
||
|
bool is_empty() const {
|
||
|
return !top_thread_message_id_.is_valid();
|
||
|
}
|
||
|
|
||
|
td_api::object_ptr<td_api::forumTopicInfo> get_forum_topic_info_object(Td *td) const;
|
||
|
};
|
||
|
|
||
|
StringBuilder &operator<<(StringBuilder &string_builder, const ForumTopicInfo &topic_info);
|
||
|
|
||
|
} // namespace td
|