[gnome-shell/gbsneto/graphene: 2/2] Replace Clutter.Point by Graphene.Point
- From: Georges Basile Stavracas Neto <gbsneto src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [gnome-shell/gbsneto/graphene: 2/2] Replace Clutter.Point by Graphene.Point
- Date: Wed, 16 Oct 2019 09:43:54 +0000 (UTC)
commit 63c01dc8da6c13b3c45d3faa278154277b442426
Author: Georges Basile Stavracas Neto <georges stavracas gmail com>
Date: Wed Feb 20 16:54:29 2019 -0300
Replace Clutter.Point by Graphene.Point
https://gitlab.gnome.org/GNOME/gnome-shell/merge_requests/421
js/ui/appDisplay.js | 4 ++--
js/ui/dash.js | 5 +++--
js/ui/lookingGlass.js | 6 +++---
js/ui/messageList.js | 5 +++--
js/ui/popupMenu.js | 4 ++--
js/ui/screenShield.js | 4 ++--
6 files changed, 15 insertions(+), 13 deletions(-)
---
diff --git a/js/ui/appDisplay.js b/js/ui/appDisplay.js
index cc946f01c7..a056a53bef 100644
--- a/js/ui/appDisplay.js
+++ b/js/ui/appDisplay.js
@@ -1,7 +1,7 @@
// -*- mode: js; js-indent-level: 4; indent-tabs-mode: nil -*-
/* exported AppDisplay, AppSearchProvider */
-const { Clutter, Gio, GLib, GObject, Meta, Shell, St } = imports.gi;
+const { Clutter, Gio, GLib, GObject, Graphene, Meta, Shell, St } = imports.gi;
const Signals = imports.signals;
const AppFavorites = imports.ui.appFavorites;
@@ -1987,7 +1987,7 @@ var AppIcon = class AppIcon {
this.name = app.get_name();
this.actor = new St.Button({ style_class: 'app-well-app',
- pivot_point: new Clutter.Point({ x: 0.5, y: 0.5 }),
+ pivot_point: new Graphene.Point({ x: 0.5, y: 0.5 }),
reactive: true,
button_mask: St.ButtonMask.ONE | St.ButtonMask.TWO,
can_focus: true,
diff --git a/js/ui/dash.js b/js/ui/dash.js
index 0f99b9c88a..73418b1e60 100644
--- a/js/ui/dash.js
+++ b/js/ui/dash.js
@@ -1,7 +1,8 @@
// -*- mode: js; js-indent-level: 4; indent-tabs-mode: nil -*-
/* exported Dash */
-const { Clutter, GLib, GObject, Meta, Shell, St } = imports.gi;
+const { Clutter, GLib, GObject,
+ Graphene, Meta, Shell, St } = imports.gi;
const Signals = imports.signals;
const AppDisplay = imports.ui.appDisplay;
@@ -53,7 +54,7 @@ var DashItemContainer = GObject.registerClass(
class DashItemContainer extends St.Widget {
_init() {
super._init({ style_class: 'dash-item-container',
- pivot_point: new Clutter.Point({ x: .5, y: .5 }),
+ pivot_point: new Graphene.Point({ x: .5, y: .5 }),
scale_x: 0,
scale_y: 0,
opacity: 0,
diff --git a/js/ui/lookingGlass.js b/js/ui/lookingGlass.js
index 35b47b0360..03017d6109 100644
--- a/js/ui/lookingGlass.js
+++ b/js/ui/lookingGlass.js
@@ -1,8 +1,8 @@
// -*- mode: js; js-indent-level: 4; indent-tabs-mode: nil -*-
/* exported LookingGlass */
-const { Clutter, Cogl, Gio, GLib,
- GObject, Meta, Pango, Shell, St } = imports.gi;
+const { Clutter, Cogl, Gio, GLib, GObject,
+ Graphene, Meta, Pango, Shell, St } = imports.gi;
const Signals = imports.signals;
const System = imports.system;
@@ -352,7 +352,7 @@ var ObjInspector = class ObjInspector {
this._parentList = [];
- this.actor = new St.ScrollView({ pivot_point: new Clutter.Point({ x: 0.5, y: 0.5 }),
+ this.actor = new St.ScrollView({ pivot_point: new Graphene.Point({ x: 0.5, y: 0.5 }),
x_fill: true, y_fill: true });
this.actor.get_hscroll_bar().hide();
this._container = new St.BoxLayout({ name: 'LookingGlassPropertyInspector',
diff --git a/js/ui/messageList.js b/js/ui/messageList.js
index 4dcdb6d7fd..7faab03b9e 100644
--- a/js/ui/messageList.js
+++ b/js/ui/messageList.js
@@ -1,4 +1,5 @@
-const { Atk, Clutter, Gio, GLib, GObject, Meta, Pango, St } = imports.gi;
+const { Atk, Clutter, Gio, GLib,
+ GObject, Graphene, Meta, Pango, St } = imports.gi;
const Main = imports.ui.main;
const MessageTray = imports.ui.messageTray;
const Signals = imports.signals;
@@ -564,7 +565,7 @@ var MessageListSection = class MessageListSection {
keyFocusId: 0,
closeId: 0
};
- let pivot = new Clutter.Point({ x: .5, y: .5 });
+ let pivot = new Graphene.Point({ x: .5, y: .5 });
let scale = animate ? 0 : 1;
obj.container = new St.Widget({ layout_manager: new ScaleLayout(),
pivot_point: pivot,
diff --git a/js/ui/popupMenu.js b/js/ui/popupMenu.js
index 49ed823b12..66a1c9cff7 100644
--- a/js/ui/popupMenu.js
+++ b/js/ui/popupMenu.js
@@ -3,7 +3,7 @@
PopupImageMenuItem, PopupMenu, PopupDummyMenu, PopupSubMenu,
PopupMenuSection, PopupSubMenuMenuItem, PopupMenuManager */
-const { Atk, Clutter, Gio, GObject, Shell, St } = imports.gi;
+const { Atk, Clutter, Gio, GObject, Graphene, Shell, St } = imports.gi;
const Signals = imports.signals;
const BoxPointer = imports.ui.boxpointer;
@@ -1130,7 +1130,7 @@ class PopupSubMenuMenuItem extends PopupBaseMenuItem {
this.add(expander, { expand: true });
this._triangle = arrowIcon(St.Side.RIGHT);
- this._triangle.pivot_point = new Clutter.Point({ x: 0.5, y: 0.6 });
+ this._triangle.pivot_point = new Graphene.Point({ x: 0.5, y: 0.6 });
this._triangleBin = new St.Widget({ y_expand: true,
y_align: Clutter.ActorAlign.CENTER });
diff --git a/js/ui/screenShield.js b/js/ui/screenShield.js
index 2e2e95a387..576df48f62 100644
--- a/js/ui/screenShield.js
+++ b/js/ui/screenShield.js
@@ -1,7 +1,7 @@
// -*- mode: js; js-indent-level: 4; indent-tabs-mode: nil -*-
const { AccountsService, Clutter, Cogl, Gio, GLib,
- GnomeDesktop, GObject, Meta, Shell, St } = imports.gi;
+ GnomeDesktop, GObject, Graphene, Meta, Shell, St } = imports.gi;
const Cairo = imports.cairo;
const Signals = imports.signals;
@@ -486,7 +486,7 @@ var ScreenShield = class {
this._lockDialogGroup = new St.Widget({ x_expand: true,
y_expand: true,
reactive: true,
- pivot_point: new Clutter.Point({ x: 0.5, y: 0.5 }),
+ pivot_point: new Graphene.Point({ x: 0.5, y: 0.5 }),
name: 'lockDialogGroup' });
this.actor.add_actor(this._lockDialogGroup);
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]