tdesktop/Telegram/SourceFiles/ui/effects/slide_animation.h

56 lines
1.4 KiB
C
Raw Normal View History

2016-11-24 19:28:23 +00:00
/*
This file is part of Telegram Desktop,
the official desktop application for the Telegram messaging service.
2016-11-24 19:28:23 +00:00
For license and copyright information please follow this link:
https://github.com/telegramdesktop/tdesktop/blob/master/LEGAL
2016-11-24 19:28:23 +00:00
*/
#pragma once
2019-04-02 09:13:30 +00:00
#include "ui/effects/animations.h"
2016-11-24 19:28:23 +00:00
namespace Ui {
class SlideAnimation {
public:
void setSnapshots(QPixmap leftSnapshot, QPixmap rightSnapshot);
void setOverflowHidden(bool hidden) {
_overflowHidden = hidden;
}
template <typename Lambda>
void start(bool slideLeft, Lambda &&updateCallback, float64 duration);
2019-04-02 09:13:30 +00:00
void paintFrame(Painter &p, int x, int y, int outerWidth);
2016-11-24 19:28:23 +00:00
bool animating() const {
return _animation.animating();
}
private:
2019-04-02 09:13:30 +00:00
Ui::Animations::Simple _animation;
2016-11-24 19:28:23 +00:00
QPixmap _leftSnapshot;
QPixmap _rightSnapshot;
bool _slideLeft = false;
bool _overflowHidden = true;
int _leftSnapshotWidth = 0;
int _leftSnapshotHeight = 0;
int _rightSnapshotWidth = 0;
};
template <typename Lambda>
void SlideAnimation::start(bool slideLeft, Lambda &&updateCallback, float64 duration) {
_slideLeft = slideLeft;
if (_slideLeft) {
std::swap(_leftSnapshot, _rightSnapshot);
2016-11-24 19:28:23 +00:00
}
_leftSnapshotWidth = _leftSnapshot.width() / cIntRetinaFactor();
_leftSnapshotHeight = _leftSnapshot.height() / cIntRetinaFactor();
_rightSnapshotWidth = _rightSnapshot.width() / cIntRetinaFactor();
_animation.start(std::forward<Lambda>(updateCallback), 0., 1., duration);
2016-11-24 19:28:23 +00:00
}
} // namespace Ui