55 lines
		
	
	
	
		
			1.2 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			55 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/effects/animations.h"
 | |
| 
 | |
| namespace Window {
 | |
| 
 | |
| enum class SlideDirection {
 | |
| 	FromRight,
 | |
| 	FromLeft,
 | |
| };
 | |
| 
 | |
| class SlideAnimation {
 | |
| public:
 | |
| 	void paintContents(Painter &p, const QRect &update) const;
 | |
| 
 | |
| 	void setDirection(SlideDirection direction);
 | |
| 	void setPixmaps(const QPixmap &oldContentCache, const QPixmap &newContentCache);
 | |
| 	void setTopBarShadow(bool enabled);
 | |
| 	void setWithFade(bool withFade);
 | |
| 
 | |
| 	using RepaintCallback = Fn<void()>;
 | |
| 	void setRepaintCallback(RepaintCallback &&callback);
 | |
| 
 | |
| 	using FinishedCallback = Fn<void()>;
 | |
| 	void setFinishedCallback(FinishedCallback &&callback);
 | |
| 
 | |
| 	void start();
 | |
| 
 | |
| 	static const anim::transition &transition() {
 | |
| 		return anim::easeOutCirc;
 | |
| 	}
 | |
| 
 | |
| private:
 | |
| 	void animationCallback();
 | |
| 
 | |
| 	SlideDirection _direction = SlideDirection::FromRight;
 | |
| 	bool _topBarShadowEnabled = false;
 | |
| 	bool _withFade = false;
 | |
| 
 | |
| 	mutable Ui::Animations::Simple _animation;
 | |
| 	QPixmap _cacheUnder, _cacheOver;
 | |
| 
 | |
| 	RepaintCallback _repaintCallback;
 | |
| 	FinishedCallback _finishedCallback;
 | |
| 
 | |
| };
 | |
| 
 | |
| } // namespace Window
 | 
