Some checks failed
Docker. / Ubuntu (push) Has been cancelled
User-agent updater. / User-agent (push) Failing after 15s
Lock Threads / lock (push) Failing after 10s
Waiting for answer. / waiting-for-answer (push) Failing after 22s
Close stale issues and PRs / stale (push) Successful in 13s
Needs user action. / needs-user-action (push) Failing after 8s
Can't reproduce. / cant-reproduce (push) Failing after 8s
37 lines
1.0 KiB
C++
37 lines
1.0 KiB
C++
/*
|
|
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
|
|
*/
|
|
#pragma once
|
|
|
|
namespace ChatHelpers {
|
|
|
|
struct ComposeFeatures {
|
|
bool likes : 1 = false;
|
|
bool sendAs : 1 = true;
|
|
bool ttlInfo : 1 = true;
|
|
bool attachments : 1 = true;
|
|
bool botCommandSend : 1 = true;
|
|
bool silentBroadcastToggle : 1 = true;
|
|
bool attachBotsMenu : 1 = true;
|
|
bool inlineBots : 1 = true;
|
|
bool megagroupSet : 1 = true;
|
|
bool collectibleStatus : 1 = false;
|
|
bool stickersSettings : 1 = true;
|
|
bool openStickerSets : 1 = true;
|
|
bool autocompleteHashtags : 1 = true;
|
|
bool autocompleteMentions : 1 = true;
|
|
bool autocompleteCommands : 1 = true;
|
|
bool suggestStickersByEmoji : 1 = true;
|
|
bool commonTabbedPanel : 1 = true;
|
|
bool recordMediaMessage : 1 = true;
|
|
bool editMessageStars : 1 = false;
|
|
bool emojiOnlyPanel : 1 = false;
|
|
bool videoStream : 1 = false;
|
|
};
|
|
|
|
} // namespace ChatHelpers
|