32 lines
		
	
	
	
		
			785 B
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			32 lines
		
	
	
	
		
			785 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
 | |
| 
 | |
| #include "ui/text/text_entity.h"
 | |
| #include "base/weak_ptr.h"
 | |
| 
 | |
| class ClickHandler;
 | |
| using ClickHandlerPtr = std::shared_ptr<ClickHandler>;
 | |
| using ClickHandlerFilter = Fn<bool(const ClickHandlerPtr&, Qt::MouseButton)>;
 | |
| 
 | |
| namespace Ui {
 | |
| namespace Toast {
 | |
| class Instance;
 | |
| } // namespace Toast
 | |
| 
 | |
| struct MultilineToastArgs {
 | |
| 	QWidget *parentOverride = nullptr;
 | |
| 	TextWithEntities text;
 | |
| 	crl::time duration = 0;
 | |
| 	ClickHandlerFilter filter;
 | |
| };
 | |
| 
 | |
| base::weak_ptr<Toast::Instance> ShowMultilineToast(
 | |
| 	MultilineToastArgs &&args);
 | |
| 
 | |
| } // namespace Ui
 | 
