44 lines
		
	
	
	
		
			1.3 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			44 lines
		
	
	
	
		
			1.3 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/rect_part.h"
 | |
| 
 | |
| namespace style {
 | |
| struct FlatLabel;
 | |
| } // namespace style
 | |
| 
 | |
| namespace st {
 | |
| extern const style::margins &defaultBoxDividerLabelPadding;
 | |
| } // namespace st
 | |
| 
 | |
| namespace Ui {
 | |
| 
 | |
| class FlatLabel;
 | |
| class VerticalLayout;
 | |
| 
 | |
| void AddSkip(not_null<Ui::VerticalLayout*> container);
 | |
| void AddSkip(not_null<Ui::VerticalLayout*> container, int skip);
 | |
| void AddDivider(not_null<Ui::VerticalLayout*> container);
 | |
| void AddDividerText(
 | |
| 	not_null<Ui::VerticalLayout*> container,
 | |
| 	rpl::producer<QString> text,
 | |
| 	const style::margins &margins = st::defaultBoxDividerLabelPadding,
 | |
| 	RectParts parts = RectPart::Top | RectPart::Bottom);
 | |
| void AddDividerText(
 | |
| 	not_null<Ui::VerticalLayout*> container,
 | |
| 	rpl::producer<TextWithEntities> text,
 | |
| 	const style::margins &margins = st::defaultBoxDividerLabelPadding,
 | |
| 	RectParts parts = RectPart::Top | RectPart::Bottom);
 | |
| not_null<Ui::FlatLabel*> AddSubsectionTitle(
 | |
| 	not_null<Ui::VerticalLayout*> container,
 | |
| 	rpl::producer<QString> text,
 | |
| 	style::margins addPadding = {},
 | |
| 	const style::FlatLabel *st = nullptr);
 | |
| 
 | |
| } // namespace Ui
 | 
