58 lines
		
	
	
	
		
			1.2 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			58 lines
		
	
	
	
		
			1.2 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/abstract_button.h"
 | 
						|
#include "ui/round_rect.h"
 | 
						|
#include "ui/rp_widget.h"
 | 
						|
 | 
						|
namespace Ui {
 | 
						|
 | 
						|
class AttachControls final {
 | 
						|
public:
 | 
						|
	enum class Type {
 | 
						|
		Full,
 | 
						|
		EditOnly,
 | 
						|
		None,
 | 
						|
	};
 | 
						|
 | 
						|
	AttachControls();
 | 
						|
 | 
						|
	void paint(QPainter &p, int x, int y);
 | 
						|
	void setType(Type type);
 | 
						|
	void setVertical(bool vertical);
 | 
						|
 | 
						|
	[[nodiscard]] int width() const;
 | 
						|
	[[nodiscard]] int height() const;
 | 
						|
	[[nodiscard]] Type type() const;
 | 
						|
	[[nodiscard]] bool vertical() const;
 | 
						|
 | 
						|
private:
 | 
						|
	RoundRect _rect;
 | 
						|
	Type _type = Type::Full;
 | 
						|
	bool _vertical = false;
 | 
						|
 | 
						|
};
 | 
						|
 | 
						|
class AttachControlsWidget final : public RpWidget {
 | 
						|
public:
 | 
						|
	AttachControlsWidget(
 | 
						|
		not_null<RpWidget*> parent,
 | 
						|
		AttachControls::Type type = AttachControls::Type::Full);
 | 
						|
 | 
						|
	[[nodiscard]] rpl::producer<> editRequests() const;
 | 
						|
	[[nodiscard]] rpl::producer<> deleteRequests() const;
 | 
						|
 | 
						|
private:
 | 
						|
	const base::unique_qptr<AbstractButton> _edit;
 | 
						|
	const base::unique_qptr<AbstractButton> _delete;
 | 
						|
	AttachControls _controls;
 | 
						|
 | 
						|
};
 | 
						|
 | 
						|
} // namespace Ui
 |