29 lines
		
	
	
	
		
			743 B
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			29 lines
		
	
	
	
		
			743 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;
 | 
						|
	bool commonTabbedPanel = true;
 | 
						|
};
 | 
						|
 | 
						|
} // namespace ChatHelpers
 |