OLD | NEW |
---|---|
1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 /** | 5 /** |
6 * @fileoverview | 6 * @fileoverview |
7 * Class handling setting of the local app window shape to account for windows | 7 * Class handling setting of the local app window shape to account for windows |
8 * on the remote desktop, as well as any client-side UI. | 8 * on the remote desktop, as well as any client-side UI. |
9 */ | 9 */ |
10 | 10 |
11 'use strict'; | 11 'use strict'; |
12 | 12 |
13 /** @suppress {duplicate} */ | 13 /** @suppress {duplicate} */ |
14 var remoting = remoting || {}; | 14 var remoting = remoting || {}; |
15 | 15 |
16 /** @constructor */ | 16 /** @constructor */ |
17 remoting.WindowShape = function() { | 17 remoting.WindowShape = function() { |
18 /** @private {Array<{left: number, top: number, | 18 /** @private {Array<{left: number, top: number, |
19 width: number, height: number}>} */ | 19 width: number, height: number}>} */ |
20 this.desktopRects_ = []; | 20 this.desktopRects_ = []; |
21 | 21 |
22 /** @private {Array<remoting.WindowShape.ClientUI>} */ | 22 /** @private {Array<remoting.WindowShape.ClientUI>} */ |
23 this.clientUICallbacks_ = []; | 23 this.clientUIs_ = []; |
24 }; | 24 }; |
25 | 25 |
26 /** | 26 /** |
27 * @return {boolean} True if setShape is available and implemented for the | 27 * @return {boolean} True if setShape is available and implemented for the |
28 * current platform. | 28 * current platform. |
29 */ | 29 */ |
30 remoting.WindowShape.isSupported = function() { | 30 remoting.WindowShape.isSupported = function() { |
31 return base.isAppsV2() && | 31 return base.isAppsV2() && |
32 typeof(chrome.app.window.current().setShape) != 'undefined' && | 32 typeof(chrome.app.window.current().setShape) != 'undefined' && |
33 !remoting.platformIsMac(); | 33 !remoting.platformIsMac(); |
34 } | 34 }; |
35 | 35 |
36 /** | 36 /** |
37 * Add a client-side UI measurement callback. | 37 * Adds a client-side UI. |
garykac
2015/05/19 00:39:53
The other comments are active: "Center align the..
| |
38 * | 38 * |
39 * @param {remoting.WindowShape.ClientUI} callback | 39 * @param {remoting.WindowShape.ClientUI} callback |
40 */ | 40 */ |
41 remoting.WindowShape.prototype.addCallback = function(callback) { | 41 remoting.WindowShape.prototype.registerClientUI = function(callback) { |
42 this.clientUICallbacks_.push(callback); | 42 if (this.clientUIs_.indexOf(callback) === -1) { |
43 this.clientUIs_.push(callback); | |
44 this.updateClientWindowShape(); | |
45 } | |
46 }; | |
47 | |
48 /** | |
49 * Removes a client-side UI. | |
50 * | |
51 * @param {remoting.WindowShape.ClientUI} callback | |
52 */ | |
53 remoting.WindowShape.prototype.unregisterClientUI = function(callback) { | |
54 var index = this.clientUIs_.indexOf(callback); | |
55 this.clientUIs_.splice(index, 1); | |
43 this.updateClientWindowShape(); | 56 this.updateClientWindowShape(); |
44 }; | 57 }; |
45 | 58 |
59 /** | |
60 * Center align a DOM element to the desktop shape. | |
61 * | |
62 * @param {HTMLElement} element | |
63 */ | |
64 remoting.WindowShape.prototype.centerToDesktop = function(element) { | |
65 var desktop = { | |
66 left: Number.MAX_VALUE, | |
67 right: Number.MIN_VALUE, | |
68 top: Number.MAX_VALUE, | |
69 bottom: Number.MIN_VALUE | |
70 }; | |
71 | |
72 // If there is no desktop window, center it to the current viewport. | |
73 if (this.desktopRects_.length === 0) { | |
74 desktop.left = 0; | |
75 desktop.right = window.innerWidth; | |
76 desktop.top = 0; | |
77 desktop.bottom = window.innerHeight; | |
78 } else { | |
79 // Compute the union of the bounding rects of all desktop windows. | |
80 this.desktopRects_.forEach(function( | |
81 /**{left: number, top: number, width: number, height: number}*/ rect) { | |
82 desktop.left = Math.min(rect.left, desktop.left); | |
83 desktop.right = Math.max(rect.left + rect.width, desktop.right); | |
84 desktop.top = Math.min(rect.top, desktop.top); | |
85 desktop.bottom = Math.max(rect.top + rect.height, desktop.bottom); | |
86 }); | |
87 } | |
88 | |
89 // Center the element to the desktop window bounding rect. | |
90 var rect = element.getBoundingClientRect(); | |
91 var left = (desktop.right - desktop.left - rect.width) / 2 + desktop.left; | |
92 var top = (desktop.bottom - desktop.top - rect.height) / 2 + desktop.top; | |
93 element.style.left = left + 'px'; | |
94 element.style.top = top + 'px'; | |
95 this.updateClientWindowShape(); | |
96 }; | |
97 | |
46 /** | 98 /** |
47 * Set the region associated with the remote desktop windows. | 99 * Set the region associated with the remote desktop windows. |
48 * | 100 * |
49 * @param {Array<{left: number, top: number, width: number, height: number}>} | 101 * @param {Array<{left: number, top: number, width: number, height: number}>} |
50 * rects | 102 * rects |
51 */ | 103 */ |
52 remoting.WindowShape.prototype.setDesktopRects = function(rects) { | 104 remoting.WindowShape.prototype.setDesktopRects = function(rects) { |
53 this.desktopRects_ = rects; | 105 this.desktopRects_ = rects; |
54 this.updateClientWindowShape(); | 106 this.updateClientWindowShape(); |
55 }; | 107 }; |
56 | 108 |
57 /** | 109 /** |
58 * Update the client window shape. | 110 * Update the client window shape. |
59 */ | 111 */ |
60 remoting.WindowShape.prototype.updateClientWindowShape = function() { | 112 remoting.WindowShape.prototype.updateClientWindowShape = function() { |
61 if (!remoting.WindowShape.isSupported()) { | 113 if (!remoting.WindowShape.isSupported()) { |
62 return; | 114 return; |
63 } | 115 } |
64 | 116 |
65 var rects = this.desktopRects_.slice(); | 117 var rects = this.desktopRects_.slice(); |
66 for (var i = 0; i < this.clientUICallbacks_.length; ++i) { | 118 for (var i = 0; i < this.clientUIs_.length; ++i) { |
67 this.clientUICallbacks_[i].addToRegion(rects); | 119 this.clientUIs_[i].addToRegion(rects); |
68 } | 120 } |
69 for (var i = 0; i < rects.length; ++i) { | 121 for (var i = 0; i < rects.length; ++i) { |
70 var rect = /** @type {ClientRect} */ (rects[i]); | 122 var rect = /** @type {ClientRect} */ (rects[i]); |
71 var left = Math.floor(rect.left); | 123 var left = Math.floor(rect.left); |
72 var right = Math.ceil(rect.left + rect.width); | 124 var right = Math.ceil(rect.left + rect.width); |
73 var top = Math.floor(rect.top); | 125 var top = Math.floor(rect.top); |
74 var bottom = Math.ceil(rect.top + rect.height); | 126 var bottom = Math.ceil(rect.top + rect.height); |
75 rects[i] = { left: left, | 127 rects[i] = { left: left, |
76 top: top, | 128 top: top, |
77 width: right - left, | 129 width: right - left, |
(...skipping 13 matching lines...) Expand all Loading... | |
91 * Add the context menu's bounding rectangle to the specified region. | 143 * Add the context menu's bounding rectangle to the specified region. |
92 * | 144 * |
93 * @param {Array<{left: number, top: number, width: number, height: number}>} | 145 * @param {Array<{left: number, top: number, width: number, height: number}>} |
94 * rects | 146 * rects |
95 */ | 147 */ |
96 remoting.WindowShape.ClientUI.prototype.addToRegion = function(rects) {}; | 148 remoting.WindowShape.ClientUI.prototype.addToRegion = function(rects) {}; |
97 | 149 |
98 | 150 |
99 /** @type {remoting.WindowShape} */ | 151 /** @type {remoting.WindowShape} */ |
100 remoting.windowShape = new remoting.WindowShape(); | 152 remoting.windowShape = new remoting.WindowShape(); |
OLD | NEW |