39 lines
		
	
	
	
		
			778 B
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			39 lines
		
	
	
	
		
			778 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/widgets/buttons.h"
 | 
						|
#include "ui/effects/animations.h"
 | 
						|
 | 
						|
namespace style {
 | 
						|
struct SendAsButton;
 | 
						|
} // namespace style
 | 
						|
 | 
						|
namespace Ui {
 | 
						|
 | 
						|
class SendAsButton final : public AbstractButton {
 | 
						|
public:
 | 
						|
	SendAsButton(QWidget *parent, const style::SendAsButton &st);
 | 
						|
 | 
						|
	void setUserpic(QImage userpic);
 | 
						|
 | 
						|
	void setActive(bool active);
 | 
						|
 | 
						|
private:
 | 
						|
	void paintEvent(QPaintEvent *e) override;
 | 
						|
 | 
						|
	const style::SendAsButton &_st;
 | 
						|
 | 
						|
	Animations::Simple _activeAnimation;
 | 
						|
	bool _active = false;
 | 
						|
 | 
						|
	QImage _userpic;
 | 
						|
 | 
						|
};
 | 
						|
 | 
						|
} // namespace Ui
 |