75 lines
		
	
	
	
		
			1.6 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			75 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 "base/weak_ptr.h"
 | 
						|
#include "base/object_ptr.h"
 | 
						|
#include "calls/group/calls_group_common.h"
 | 
						|
 | 
						|
class PeerData;
 | 
						|
 | 
						|
namespace Ui {
 | 
						|
class Show;
 | 
						|
class BoxContent;
 | 
						|
class VerticalLayout;
 | 
						|
} // namespace Ui
 | 
						|
 | 
						|
namespace style {
 | 
						|
struct FlatLabel;
 | 
						|
struct RoundButton;
 | 
						|
struct IconButton;
 | 
						|
struct PopupMenu;
 | 
						|
} // namespace style
 | 
						|
 | 
						|
namespace Calls::Group {
 | 
						|
 | 
						|
struct JoinInfo;
 | 
						|
 | 
						|
class StartRtmpProcess final {
 | 
						|
public:
 | 
						|
	StartRtmpProcess() = default;
 | 
						|
	~StartRtmpProcess();
 | 
						|
 | 
						|
	void start(
 | 
						|
		not_null<PeerData*> peer,
 | 
						|
		std::shared_ptr<Ui::Show> show,
 | 
						|
		Fn<void(JoinInfo)> done);
 | 
						|
	void close();
 | 
						|
 | 
						|
	static void FillRtmpRows(
 | 
						|
		not_null<Ui::VerticalLayout*> container,
 | 
						|
		bool divider,
 | 
						|
		std::shared_ptr<Ui::Show> show,
 | 
						|
		rpl::producer<RtmpInfo> &&data,
 | 
						|
		const style::FlatLabel *labelStyle,
 | 
						|
		const style::IconButton *showButtonStyle,
 | 
						|
		const style::FlatLabel *subsectionTitleStyle,
 | 
						|
		const style::RoundButton *attentionButtonStyle,
 | 
						|
		const style::PopupMenu *popupMenuStyle);
 | 
						|
 | 
						|
private:
 | 
						|
	void requestUrl(bool revoke);
 | 
						|
	void processUrl(RtmpInfo data);
 | 
						|
	void createBox();
 | 
						|
	void finish(JoinInfo info);
 | 
						|
 | 
						|
	struct RtmpRequest {
 | 
						|
		not_null<PeerData*> peer;
 | 
						|
		rpl::variable<RtmpInfo> data;
 | 
						|
		std::shared_ptr<Ui::Show> show;
 | 
						|
		Fn<void(JoinInfo)> done;
 | 
						|
		base::has_weak_ptr guard;
 | 
						|
		QPointer<Ui::BoxContent> box;
 | 
						|
		rpl::lifetime lifetime;
 | 
						|
		mtpRequestId id = 0;
 | 
						|
	};
 | 
						|
	std::unique_ptr<RtmpRequest> _request;
 | 
						|
 | 
						|
};
 | 
						|
 | 
						|
} // namespace Calls::Group
 |