tdesktop/Telegram/SourceFiles/api/api_common.cpp

32 lines
712 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"
2022-11-01 04:46:31 +00:00
#include "data/data_thread.h"
namespace Api {
SendAction::SendAction(
not_null<Data::Thread*> thread,
SendOptions options)
: history(thread->owningHistory())
, options(options)
2022-11-01 08:03:42 +00:00
, replyTo(thread->topicRootId())
, topicRootId(replyTo) {
2022-11-01 04:46:31 +00:00
}
SendOptions DefaultSendWhenOnlineOptions() {
return {
.scheduled = kScheduledUntilOnlineTimestamp,
.silent = base::IsCtrlPressed(),
};
}
2022-11-01 04:46:31 +00:00
} // namespace Api