compose_features.h 877 B

12345678910111213141516171819202122232425262728293031
  1. /*
  2. This file is part of Telegram Desktop,
  3. the official desktop application for the Telegram messaging service.
  4. For license and copyright information please follow this link:
  5. https://github.com/telegramdesktop/tdesktop/blob/master/LEGAL
  6. */
  7. #pragma once
  8. namespace ChatHelpers {
  9. struct ComposeFeatures {
  10. bool likes : 1 = false;
  11. bool sendAs : 1 = true;
  12. bool ttlInfo : 1 = true;
  13. bool botCommandSend : 1 = true;
  14. bool silentBroadcastToggle : 1 = true;
  15. bool attachBotsMenu : 1 = true;
  16. bool inlineBots : 1 = true;
  17. bool megagroupSet : 1 = true;
  18. bool collectibleStatus : 1 = false;
  19. bool stickersSettings : 1 = true;
  20. bool openStickerSets : 1 = true;
  21. bool autocompleteHashtags : 1 = true;
  22. bool autocompleteMentions : 1 = true;
  23. bool autocompleteCommands : 1 = true;
  24. bool suggestStickersByEmoji : 1 = true;
  25. bool commonTabbedPanel : 1 = true;
  26. };
  27. } // namespace ChatHelpers