28 lines
		
	
	
	
		
			711 B
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			28 lines
		
	
	
	
		
			711 B
		
	
	
	
		
			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 = false;
 | |
| 	bool sendAs = true;
 | |
| 	bool ttlInfo = true;
 | |
| 	bool botCommandSend = true;
 | |
| 	bool silentBroadcastToggle = true;
 | |
| 	bool attachBotsMenu = true;
 | |
| 	bool inlineBots = true;
 | |
| 	bool megagroupSet = true;
 | |
| 	bool stickersSettings = true;
 | |
| 	bool openStickerSets = true;
 | |
| 	bool autocompleteHashtags = true;
 | |
| 	bool autocompleteMentions = true;
 | |
| 	bool autocompleteCommands = true;
 | |
| };
 | |
| 
 | |
| } // namespace ChatHelpers
 | 
