59 lines
		
	
	
	
		
			1.6 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			59 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"
 | 
						|
 | 
						|
class PeerData;
 | 
						|
 | 
						|
namespace Api {
 | 
						|
struct InviteLink;
 | 
						|
} // namespace Api
 | 
						|
 | 
						|
namespace Ui {
 | 
						|
class VerticalLayout;
 | 
						|
class Show;
 | 
						|
} // namespace Ui
 | 
						|
 | 
						|
[[nodiscard]] bool IsExpiredLink(const Api::InviteLink &data, TimeId now);
 | 
						|
 | 
						|
void AddSinglePeerRow(
 | 
						|
	not_null<Ui::VerticalLayout*> container,
 | 
						|
	not_null<PeerData*> peer,
 | 
						|
	rpl::producer<QString> status);
 | 
						|
 | 
						|
void AddPermanentLinkBlock(
 | 
						|
	std::shared_ptr<Ui::Show> show,
 | 
						|
	not_null<Ui::VerticalLayout*> container,
 | 
						|
	not_null<PeerData*> peer,
 | 
						|
	not_null<UserData*> admin,
 | 
						|
	rpl::producer<Api::InviteLink> fromList);
 | 
						|
 | 
						|
void CopyInviteLink(not_null<QWidget*> toastParent, const QString &link);
 | 
						|
[[nodiscard]] object_ptr<Ui::BoxContent> ShareInviteLinkBox(
 | 
						|
	not_null<PeerData*> peer,
 | 
						|
	const QString &link);
 | 
						|
[[nodiscard]] object_ptr<Ui::BoxContent> InviteLinkQrBox(const QString &link);
 | 
						|
[[nodiscard]] object_ptr<Ui::BoxContent> RevokeLinkBox(
 | 
						|
	not_null<PeerData*> peer,
 | 
						|
	not_null<UserData*> admin,
 | 
						|
	const QString &link,
 | 
						|
	bool permanent = false);
 | 
						|
[[nodiscard]] object_ptr<Ui::BoxContent> EditLinkBox(
 | 
						|
	not_null<PeerData*> peer,
 | 
						|
	const Api::InviteLink &data);
 | 
						|
[[nodiscard]] object_ptr<Ui::BoxContent> DeleteLinkBox(
 | 
						|
	not_null<PeerData*> peer,
 | 
						|
	not_null<UserData*> admin,
 | 
						|
	const QString &link);
 | 
						|
 | 
						|
[[nodiscard]] object_ptr<Ui::BoxContent> ShowInviteLinkBox(
 | 
						|
	not_null<PeerData*> peer,
 | 
						|
	const Api::InviteLink &link);
 | 
						|
 | 
						|
[[nodiscard]] QString PrepareRequestedRowStatus(TimeId date);
 |