gnome-shell r86 - trunk/js/ui



Author: walters
Date: Wed Nov 26 19:14:18 2008
New Revision: 86
URL: http://svn.gnome.org/viewvc/gnome-shell?rev=86&view=rev

Log:
Convert users of static functions to new gjs syntax

Modified:
   trunk/js/ui/appdisplay.js
   trunk/js/ui/main.js
   trunk/js/ui/overlay.js
   trunk/js/ui/panel.js
   trunk/js/ui/run_dialog.js
   trunk/js/ui/windowmanager.js

Modified: trunk/js/ui/appdisplay.js
==============================================================================
--- trunk/js/ui/appdisplay.js	(original)
+++ trunk/js/ui/appdisplay.js	Wed Nov 26 19:14:18 2008
@@ -57,7 +57,7 @@
 
 	let name = appinfo.get_name();
 
-	let icontheme = Gtk.icon_theme_get_default();
+	let icontheme = Gtk.IconTheme.get_default();
 
 	this._group = new Clutter.Group({reactive: true,
 					 width: width,
@@ -114,7 +114,7 @@
 AppDisplay.prototype = {
     _init : function(x, y, width, height) {
 	let me = this;
-	let global = Shell.global_get();
+	let global = Shell.Global.get();
         this._search = '';
         this._x = x;
 	this._y = y;

Modified: trunk/js/ui/main.js
==============================================================================
--- trunk/js/ui/main.js	(original)
+++ trunk/js/ui/main.js	Wed Nov 26 19:14:18 2008
@@ -84,7 +84,7 @@
 Signals.addSignalMethods(ClutterFrameTicker.prototype);
 
 function start() {
-    let global = Shell.global_get();
+    let global = Shell.Global.get();
 
     Tweener.setFrameTicker(new ClutterFrameTicker());
 
@@ -125,7 +125,7 @@
 // the stage. Returns true if we successfully grabbed the keyboard and
 // went modal, false otherwise
 function startModal() {
-    let global = Shell.global_get();
+    let global = Shell.Global.get();
 
     if (!global.grab_keyboard())
 	return false;
@@ -136,7 +136,7 @@
 }
 
 function endModal() {
-    let global = Shell.global_get();
+    let global = Shell.Global.get();
 
     global.ungrab_keyboard();
     global.set_stage_input_area(0, 0, global.screen_width, Panel.PANEL_HEIGHT);

Modified: trunk/js/ui/overlay.js
==============================================================================
--- trunk/js/ui/overlay.js	(original)
+++ trunk/js/ui/overlay.js	Wed Nov 26 19:14:18 2008
@@ -54,11 +54,11 @@
     _init : function(width) {
 	let me = this;
 
-	let global = Shell.global_get();
+	let global = Shell.Global.get();
         this._group = new Clutter.Group();
 	this._group.hide();
 	global.stage.add_actor(this._group);
-	let icontheme = Gtk.icon_theme_get_default();
+	let icontheme = Gtk.IconTheme.get_default();
 	let rect = new Clutter.Rectangle({ color: SIDESHOW_SEARCH_BG_COLOR,
 					     x: SIDESHOW_PAD,
                                              y: Panel.PANEL_HEIGHT + SIDESHOW_PAD,
@@ -130,7 +130,7 @@
     _init : function() {
 	let me = this;
 
-	let global = Shell.global_get();
+	let global = Shell.Global.get();
 
 	this._group = new Clutter.Group();
 	this.visible = false;
@@ -161,7 +161,7 @@
     },
 
     _recalculateSize: function () {
-	let global = Shell.global_get();
+	let global = Shell.Global.get();
         let screenWidth = global.screen_width;
 	let screenHeight = global.screen_height;
         // The desktop windows are shown on top of a scaled down version of the
@@ -176,7 +176,7 @@
 	if (!this.visible) {
 	    this.visible = true;
 
-	    let global = Shell.global_get();
+	    let global = Shell.Global.get();
 
 	    let windows = global.get_windows();
 	    let desktopWindow = null;
@@ -235,7 +235,7 @@
 
     hide : function() {
 	if (this.visible) {
-	    let global = Shell.global_get();
+	    let global = Shell.Global.get();
 
 	    this.visible = false;
 	    global.window_group.show()
@@ -260,7 +260,7 @@
     },
 
     _createDesktopRectangle : function() {   
-        let global = Shell.global_get();
+        let global = Shell.Global.get();
         // In the case when we have a desktop window from the file manager, its height is
         // full-screen, i.e. it includes the height of the panel, so we should not subtract
         // the height of the panel from global.screen_height here either to have them show

Modified: trunk/js/ui/panel.js
==============================================================================
--- trunk/js/ui/panel.js	(original)
+++ trunk/js/ui/panel.js	Wed Nov 26 19:14:18 2008
@@ -22,7 +22,7 @@
 
 Panel.prototype = {
     _init : function() {
-	let global = Shell.global_get();
+	let global = Shell.Global.get();
 
 	this._group = new Clutter.Group();
 
@@ -101,7 +101,7 @@
     // Struts determine the area along each side of the screen that is reserved
     // and not available to applications
     _setStruts: function() {
-	let global = Shell.global_get();
+	let global = Shell.Global.get();
 
 	let struts = [
             new Meta.Strut({

Modified: trunk/js/ui/run_dialog.js
==============================================================================
--- trunk/js/ui/run_dialog.js	(original)
+++ trunk/js/ui/run_dialog.js	Wed Nov 26 19:14:18 2008
@@ -24,7 +24,7 @@
 
 RunDialog.prototype = {
     _init : function() {
-        let global = Shell.global_get();
+        let global = Shell.Global.get();
 
         // All actors are inside _group. We create it initially
 	// hidden then show it in show()
@@ -111,7 +111,7 @@
         //         return true;
         // });
 
-	let global = Shell.global_get();
+	let global = Shell.Global.get();
         global.stage.set_key_focus(this._entry);
 
 	return true;

Modified: trunk/js/ui/windowmanager.js
==============================================================================
--- trunk/js/ui/windowmanager.js	(original)
+++ trunk/js/ui/windowmanager.js	Wed Nov 26 19:14:18 2008
@@ -18,7 +18,7 @@
     _init : function() {
         let me = this;
 
-        this._global = Shell.global_get();
+        this._global = Shell.Global.get();
         this._shellwm = this._global.window_manager;
 
         this._switchData = null;



[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]