Rewrite AndroidSyncSettings to be significantly simpler.
[chromium-blink-merge.git] / remoting / webapp / crd / js / client_plugin_host_desktop_impl.js
blob78ca6df168a33d4830d099d78835f5c59588bac9
1 // Copyright 2015 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
5 /**
6  * @fileoverview
7  * Provides an interface to manage the Host Desktop of a remoting session.
8  */
10 var remoting = remoting || {};
11 remoting.ClientPlugin = remoting.ClientPlugin || {};
13 (function() {
15 'use strict';
17 /**
18  * @param {remoting.ClientPluginImpl} plugin
19  * @param {function(Object):void} postMessageCallback Callback to post a message
20  *   to the Client Plugin.
21  *
22  * @implements {remoting.HostDesktop}
23  * @extends {base.EventSourceImpl}
24  * @constructor
25  */
26 remoting.ClientPlugin.HostDesktopImpl = function(plugin, postMessageCallback) {
27   /** @private */
28   this.plugin_ = plugin;
29   /** @private */
30   this.width_ = 0;
31   /** @private */
32   this.height_ = 0;
33   /** @private */
34   this.xDpi_ = 96;
35   /** @private */
36   this.yDpi_ = 96;
37   /** @private */
38   this.postMessageCallback_ = postMessageCallback;
40   this.defineEvents(base.values(remoting.HostDesktop.Events));
42 base.extend(remoting.ClientPlugin.HostDesktopImpl, base.EventSourceImpl);
44 /** @return {boolean} Whether the host supports desktop resizing. */
45 remoting.ClientPlugin.HostDesktopImpl.prototype.isResizable = function() {
46   return this.plugin_.hasFeature(
47       remoting.ClientPlugin.Feature.NOTIFY_CLIENT_RESOLUTION);
50 /** @return {{width:number, height:number, xDpi:number, yDpi:number}} */
51 remoting.ClientPlugin.HostDesktopImpl.prototype.getDimensions = function() {
52   return {
53     width: this.width_,
54     height: this.height_,
55     xDpi: this.xDpi_,
56     yDpi: this.yDpi_
57   };
60 /**
61  * @param {number} width
62  * @param {number} height
63  * @param {number} deviceScale
64  */
65 remoting.ClientPlugin.HostDesktopImpl.prototype.resize = function(
66     width, height, deviceScale) {
67   if (this.isResizable()) {
68     var dpi = Math.floor(deviceScale * 96);
69     this.postMessageCallback_({
70       method: 'notifyClientResolution',
71       data: {
72         width: Math.floor(width * deviceScale),
73         height: Math.floor(height * deviceScale),
74         x_dpi: dpi,
75         y_dpi: dpi
76       }
77     });
78   }
81 /**
82  * This function is called by |this.plugin_| when the size of the host
83  * desktop is changed.
84  *
85  * @param {remoting.ClientPluginMessage} message
86  */
87 remoting.ClientPlugin.HostDesktopImpl.prototype.onSizeUpdated = function(
88     message) {
89   this.width_ = getNumberAttr(message.data, 'width');
90   this.height_ = getNumberAttr(message.data, 'height');
91   this.xDpi_ = getNumberAttr(message.data, 'x_dpi', 96);
92   this.yDpi_ = getNumberAttr(message.data, 'y_dpi', 96);
93   this.raiseEvent(remoting.HostDesktop.Events.sizeChanged,
94                   this.getDimensions());
97 /**
98  * This function is called by |this.plugin_| when the shape of the host
99  * desktop is changed.
101  * @param {remoting.ClientPluginMessage} message
102  * @return {Array<{left:number, top:number, width:number, height:number}>}
103  *    rectangles of the desktop shape.
104  */
105 remoting.ClientPlugin.HostDesktopImpl.prototype.onShapeUpdated =
106     function(message) {
107   var shapes = getArrayAttr(message.data, 'rects');
108   var rects = shapes.map(
109     /** @param {Array.<number>} shape */
110     function(shape) {
111       if (!Array.isArray(shape) || shape.length != 4) {
112         throw 'Received invalid onDesktopShape message';
113       }
114       var rect = {};
115       rect.left = shape[0];
116       rect.top = shape[1];
117       rect.width = shape[2];
118       rect.height = shape[3];
119       return rect;
120   });
122   this.raiseEvent(remoting.HostDesktop.Events.shapeChanged, rects);
123   return rects;
126 }());