mirror of https://github.com/procxx/kepka.git
Delayed notification hide without animations.
This commit is contained in:
parent
2e5a0e056c
commit
7f39d917ab
|
@ -406,7 +406,18 @@ void Widget::step_shift(float64 ms, bool timer) {
|
||||||
}
|
}
|
||||||
|
|
||||||
void Widget::hideSlow() {
|
void Widget::hideSlow() {
|
||||||
hideAnimated(st::notifySlowHide, anim::easeInCirc);
|
if (anim::Disabled()) {
|
||||||
|
_hiding = true;
|
||||||
|
auto [left, right] = base::make_binary_guard();
|
||||||
|
_hidingDelayed = std::move(left);
|
||||||
|
App::CallDelayed(st::notifySlowHide, this, [=, guard = std::move(right)] {
|
||||||
|
if (guard.alive() && _hiding) {
|
||||||
|
hideFast();
|
||||||
|
}
|
||||||
|
});
|
||||||
|
} else {
|
||||||
|
hideAnimated(st::notifySlowHide, anim::easeInCirc);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
void Widget::hideFast() {
|
void Widget::hideFast() {
|
||||||
|
@ -416,6 +427,7 @@ void Widget::hideFast() {
|
||||||
void Widget::hideStop() {
|
void Widget::hideStop() {
|
||||||
if (_hiding) {
|
if (_hiding) {
|
||||||
_hiding = false;
|
_hiding = false;
|
||||||
|
_hidingDelayed = {};
|
||||||
_a_opacity.start([this] { opacityAnimationCallback(); }, 0., 1., st::notifyFastAnim);
|
_a_opacity.start([this] { opacityAnimationCallback(); }, 0., 1., st::notifyFastAnim);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -145,6 +145,7 @@ private:
|
||||||
|
|
||||||
bool _hiding = false;
|
bool _hiding = false;
|
||||||
bool _deleted = false;
|
bool _deleted = false;
|
||||||
|
base::binary_guard _hidingDelayed;
|
||||||
Animation _a_opacity;
|
Animation _a_opacity;
|
||||||
|
|
||||||
QPoint _startPosition;
|
QPoint _startPosition;
|
||||||
|
|
Loading…
Reference in New Issue