tdesktop/Telegram/SourceFiles/api/api_common.cpp

38 lines
936 B
C++
Raw Normal View History

2022-11-01 04:46:31 +00:00
/*
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 "api/api_common.h"
#include "base/qt/qt_key_modifiers.h"
#include "data/data_histories.h"
2022-11-01 04:46:31 +00:00
#include "data/data_thread.h"
#include "history/history.h"
2022-11-01 04:46:31 +00:00
namespace Api {
SendAction::SendAction(
not_null<Data::Thread*> thread,
SendOptions options)
: history(thread->owningHistory())
, options(options)
2023-10-10 06:49:22 +00:00
, replyTo({ .messageId = { history->peer->id, thread->topicRootId() } }) {
replyTo.topicRootId = replyTo.messageId.msg;
2022-11-01 04:46:31 +00:00
}
SendOptions DefaultSendWhenOnlineOptions() {
return {
.scheduled = kScheduledUntilOnlineTimestamp,
.silent = base::IsCtrlPressed(),
};
}
MTPInputReplyTo SendAction::mtpReplyTo() const {
2023-10-10 06:49:22 +00:00
return Data::ReplyToForMTP(history, replyTo);
}
2022-11-01 04:46:31 +00:00
} // namespace Api