78 lines
		
	
	
	
		
			1.5 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			78 lines
		
	
	
	
		
			1.5 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
 | 
						|
 | 
						|
namespace Api {
 | 
						|
enum class SendProgressType;
 | 
						|
} // namespace Api
 | 
						|
 | 
						|
namespace Ui {
 | 
						|
 | 
						|
class SendActionAnimation {
 | 
						|
public:
 | 
						|
	using Type = Api::SendProgressType;
 | 
						|
 | 
						|
	void start(Type type);
 | 
						|
	void stop();
 | 
						|
 | 
						|
	int width() const {
 | 
						|
		return _impl ? _impl->width() : 0;
 | 
						|
	}
 | 
						|
	void paint(Painter &p, style::color color, int x, int y, int outerWidth, crl::time ms) {
 | 
						|
		if (_impl) {
 | 
						|
			_impl->paint(p, color, x, y, outerWidth, ms);
 | 
						|
		}
 | 
						|
	}
 | 
						|
 | 
						|
	explicit operator bool() const {
 | 
						|
		return _impl != nullptr;
 | 
						|
	}
 | 
						|
 | 
						|
	class Impl {
 | 
						|
	public:
 | 
						|
		using Type = Api::SendProgressType;
 | 
						|
 | 
						|
		Impl(int period) : _period(period), _started(crl::now()) {
 | 
						|
		}
 | 
						|
 | 
						|
		struct MetaData {
 | 
						|
			int index;
 | 
						|
			std::unique_ptr<Impl> (*creator)();
 | 
						|
		};
 | 
						|
		virtual const MetaData *metaData() const = 0;
 | 
						|
		bool supports(Type type) const;
 | 
						|
 | 
						|
		virtual int width() const = 0;
 | 
						|
		void paint(
 | 
						|
			Painter &p,
 | 
						|
			style::color color,
 | 
						|
			int x,
 | 
						|
			int y,
 | 
						|
			int outerWidth,
 | 
						|
			crl::time ms);
 | 
						|
 | 
						|
		virtual ~Impl() = default;
 | 
						|
 | 
						|
	private:
 | 
						|
		virtual void paintFrame(Painter &p, style::color color, int x, int y, int outerWidth, int frameMs) = 0;
 | 
						|
 | 
						|
		int _period = 1;
 | 
						|
		crl::time _started = 0;
 | 
						|
 | 
						|
	};
 | 
						|
 | 
						|
	~SendActionAnimation();
 | 
						|
 | 
						|
private:
 | 
						|
	std::unique_ptr<Impl> createByType(Type type);
 | 
						|
 | 
						|
	std::unique_ptr<Impl> _impl;
 | 
						|
 | 
						|
};
 | 
						|
 | 
						|
} // namespace Ui
 |