init
Some checks failed
Docker. / Ubuntu (push) Has been cancelled
User-agent updater. / User-agent (push) Failing after 15s
Lock Threads / lock (push) Failing after 10s
Waiting for answer. / waiting-for-answer (push) Failing after 22s
Close stale issues and PRs / stale (push) Successful in 13s
Needs user action. / needs-user-action (push) Failing after 8s
Can't reproduce. / cant-reproduce (push) Failing after 8s
Some checks failed
Docker. / Ubuntu (push) Has been cancelled
User-agent updater. / User-agent (push) Failing after 15s
Lock Threads / lock (push) Failing after 10s
Waiting for answer. / waiting-for-answer (push) Failing after 22s
Close stale issues and PRs / stale (push) Successful in 13s
Needs user action. / needs-user-action (push) Failing after 8s
Can't reproduce. / cant-reproduce (push) Failing after 8s
This commit is contained in:
63
Telegram/SourceFiles/window/window_slide_animation.h
Normal file
63
Telegram/SourceFiles/window/window_slide_animation.h
Normal file
@@ -0,0 +1,63 @@
|
||||
/*
|
||||
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(QPainter &p) const;
|
||||
|
||||
[[nodiscard]] float64 progress() const;
|
||||
|
||||
void setDirection(SlideDirection direction);
|
||||
void setPixmaps(
|
||||
const QPixmap &oldContentCache,
|
||||
const QPixmap &newContentCache);
|
||||
void setTopBarShadow(bool enabled);
|
||||
void setTopSkip(int skip);
|
||||
void setTopBarMask(const QPixmap &mask);
|
||||
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;
|
||||
int _topSkip = 0;
|
||||
bool _topBarShadowEnabled = false;
|
||||
bool _withFade = false;
|
||||
|
||||
mutable Ui::Animations::Simple _animation;
|
||||
QPixmap _cacheUnder, _cacheOver;
|
||||
QPixmap _mask;
|
||||
|
||||
RepaintCallback _repaintCallback;
|
||||
FinishedCallback _finishedCallback;
|
||||
|
||||
};
|
||||
|
||||
} // namespace Window
|
||||
Reference in New Issue
Block a user