60 lines
		
	
	
	
		
			1.6 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			60 lines
		
	
	
	
		
			1.6 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
 | |
| 
 | |
| #include "ui/layers/generic_box.h"
 | |
| 
 | |
| namespace Main {
 | |
| class Session;
 | |
| } // namespace Main
 | |
| 
 | |
| namespace Window {
 | |
| class SessionNavigation;
 | |
| } // namespace Window
 | |
| 
 | |
| void ChannelsLimitBox(
 | |
| 	not_null<Ui::GenericBox*> box,
 | |
| 	not_null<Main::Session*> session);
 | |
| void PublicLinksLimitBox(
 | |
| 	not_null<Ui::GenericBox*> box,
 | |
| 	not_null<Window::SessionNavigation*> navigation,
 | |
| 	Fn<void()> retry);
 | |
| void FilterChatsLimitBox(
 | |
| 	not_null<Ui::GenericBox*> box,
 | |
| 	not_null<Main::Session*> session,
 | |
| 	int currentCount);
 | |
| void FiltersLimitBox(
 | |
| 	not_null<Ui::GenericBox*> box,
 | |
| 	not_null<Main::Session*> session);
 | |
| void FilterPinsLimitBox(
 | |
| 	not_null<Ui::GenericBox*> box,
 | |
| 	not_null<Main::Session*> session,
 | |
| 	FilterId filterId);
 | |
| void FolderPinsLimitBox(
 | |
| 	not_null<Ui::GenericBox*> box,
 | |
| 	not_null<Main::Session*> session);
 | |
| void PinsLimitBox(
 | |
| 	not_null<Ui::GenericBox*> box,
 | |
| 	not_null<Main::Session*> session);
 | |
| void CaptionLimitBox(
 | |
| 	not_null<Ui::GenericBox*> box,
 | |
| 	not_null<Main::Session*> session,
 | |
| 	int remove);
 | |
| void CaptionLimitReachedBox(
 | |
| 	not_null<Ui::GenericBox*> box,
 | |
| 	not_null<Main::Session*> session,
 | |
| 	int remove);
 | |
| void FileSizeLimitBox(
 | |
| 	not_null<Ui::GenericBox*> box,
 | |
| 	not_null<Main::Session*> session,
 | |
| 	uint64 fileSizeBytes);
 | |
| void AccountsLimitBox(
 | |
| 	not_null<Ui::GenericBox*> box,
 | |
| 	not_null<Main::Session*> session);
 | |
| 
 | |
| [[nodiscard]] QString LimitsPremiumRef(const QString &addition);
 | 
