tdlight/td/telegram/DraftMessage.h

48 lines
1.6 KiB
C
Raw Normal View History

//
2022-12-31 22:28:08 +01:00
// Copyright Aliaksei Levin (levlam@telegram.org), Arseny Smirnov (arseny30@gmail.com) 2014-2023
//
// 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
2021-10-21 11:51:16 +02:00
#include "td/telegram/DialogId.h"
#include "td/telegram/InputMessageText.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/Promise.h"
2021-09-29 13:06:43 +02:00
#include "td/utils/Status.h"
namespace td {
class ContactsManager;
class Td;
class DraftMessage {
public:
2021-11-11 15:39:09 +01:00
int32 date = 0;
MessageId reply_to_message_id;
InputMessageText input_message_text;
};
2023-05-31 14:29:37 +02:00
bool need_update_draft_message(const unique_ptr<DraftMessage> &old_draft_message,
const unique_ptr<DraftMessage> &new_draft_message, bool from_update);
td_api::object_ptr<td_api::draftMessage> get_draft_message_object(const unique_ptr<DraftMessage> &draft_message);
unique_ptr<DraftMessage> get_draft_message(ContactsManager *contacts_manager,
2021-09-29 13:06:43 +02:00
telegram_api::object_ptr<telegram_api::DraftMessage> &&draft_message_ptr);
Result<unique_ptr<DraftMessage>> get_draft_message(Td *td, DialogId dialog_id,
2021-09-29 13:06:43 +02:00
td_api::object_ptr<td_api::draftMessage> &&draft_message);
void save_draft_message(Td *td, DialogId dialog_id, const unique_ptr<DraftMessage> &draft_message,
Promise<Unit> &&promise);
void load_all_draft_messages(Td *td);
} // namespace td