2016-11-24 19:28:23 +00:00
|
|
|
/*
|
|
|
|
This file is part of Telegram Desktop,
|
2018-01-03 10:23:14 +00:00
|
|
|
the official desktop application for the Telegram messaging service.
|
2016-11-24 19:28:23 +00:00
|
|
|
|
2018-01-03 10:23:14 +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
|
|
|
|
|
|
|
|
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-02-19 06:57:53 +00:00
|
|
|
void paintFrame(Painter &p, int x, int y, int outerWidth, crl::time ms);
|
2016-11-24 19:28:23 +00:00
|
|
|
|
|
|
|
bool animating() const {
|
|
|
|
return _animation.animating();
|
|
|
|
}
|
|
|
|
|
|
|
|
private:
|
2016-12-07 13:32:25 +00:00
|
|
|
Animation _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) {
|
2017-02-21 13:45:56 +00:00
|
|
|
std::swap(_leftSnapshot, _rightSnapshot);
|
2016-11-24 19:28:23 +00:00
|
|
|
}
|
|
|
|
_leftSnapshotWidth = _leftSnapshot.width() / cIntRetinaFactor();
|
|
|
|
_leftSnapshotHeight = _leftSnapshot.height() / cIntRetinaFactor();
|
|
|
|
_rightSnapshotWidth = _rightSnapshot.width() / cIntRetinaFactor();
|
2017-02-21 13:45:56 +00:00
|
|
|
_animation.start(std::forward<Lambda>(updateCallback), 0., 1., duration);
|
2016-11-24 19:28:23 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
} // namespace Ui
|