[gnome-shell/gbsneto/new-lock-screen-part2: 10/22] screenShield: Remove the drag action from the shield
- From: Georges Basile Stavracas Neto <gbsneto src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [gnome-shell/gbsneto/new-lock-screen-part2: 10/22] screenShield: Remove the drag action from the shield
- Date: Fri, 29 Nov 2019 17:45:06 +0000 (UTC)
commit b152606c4f183ad5810493e6d9133d8caa5b840e
Author: Georges Basile Stavracas Neto <georges stavracas gmail com>
Date: Thu Nov 28 20:00:58 2019 -0300
screenShield: Remove the drag action from the shield
This is start of the end of the screen shield; start by
removing the dragging action from it.
js/ui/screenShield.js | 55 ---------------------------------------------------
1 file changed, 55 deletions(-)
---
diff --git a/js/ui/screenShield.js b/js/ui/screenShield.js
index ef19c24e57..dcf96b0af9 100644
--- a/js/ui/screenShield.js
+++ b/js/ui/screenShield.js
@@ -71,12 +71,6 @@ var ScreenShield = class {
this._onLockScreenScroll.bind(this));
Main.ctrlAltTabManager.addGroup(this._lockScreenGroup, _("Lock"), 'changes-prevent-symbolic');
- this._dragAction = new Clutter.GestureAction();
- this._dragAction.connect('gesture-begin', this._onDragBegin.bind(this));
- this._dragAction.connect('gesture-progress', this._onDragMotion.bind(this));
- this._dragAction.connect('gesture-end', this._onDragEnd.bind(this));
- this._lockScreenGroup.add_action(this._dragAction);
-
this._lockDialogGroup = new St.Widget({ x_expand: true,
y_expand: true,
reactive: true,
@@ -289,55 +283,6 @@ var ScreenShield = class {
}
}
- _onDragBegin() {
- this._lockScreenGroup.remove_all_transitions();
- this._lockScreenState = MessageTray.State.HIDING;
-
- if (this._isLocked)
- this._ensureUnlockDialog(false);
-
- return true;
- }
-
- _onDragMotion() {
- let [, origY] = this._dragAction.get_press_coords(0);
- let [, currentY] = this._dragAction.get_motion_coords(0);
-
- let newY = currentY - origY;
- newY = clamp(newY, -global.stage.height, 0);
-
- this._lockScreenGroup.translation_y = newY;
-
- return true;
- }
-
- _onDragEnd(_action, _actor, _eventX, _eventY, _modifiers) {
- if (this._lockScreenState != MessageTray.State.HIDING)
- return;
- if (this._lockScreenGroup.translation_y < -(ARROW_DRAG_THRESHOLD * global.stage.height)) {
- // Complete motion automatically
- let [velocity_, velocityX_, velocityY] = this._dragAction.get_velocity(0);
- this._liftShield(-velocityY);
- } else {
- // restore the lock screen to its original place
- // try to use the same speed as the normal animation
- let h = global.stage.height;
- let duration = MANUAL_FADE_TIME * -this._lockScreenGroup.translation_y / h;
- this._lockScreenGroup.remove_all_transitions();
- this._lockScreenGroup.ease({
- translation_y: 0,
- duration,
- mode: Clutter.AnimationMode.EASE_IN_QUAD,
- onComplete: () => {
- this._lockScreenGroup.fixed_position_set = false;
- this._lockScreenState = MessageTray.State.SHOWN;
- },
- });
-
- this._maybeCancelDialog();
- }
- }
-
_onStatusChanged(status) {
if (status != GnomeSession.PresenceStatus.IDLE)
return;
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]