Home | History | Annotate | Download | only in webapp

Lines Matching refs:clientArea

206     var clientArea = this.getClientArea_();
207 needsVerticalScroll = clientArea.height < this.plugin_.getDesktopHeight();
208 needsHorizontalScroll = clientArea.width < this.plugin_.getDesktopWidth();
212 clientArea.height - kScrollBarWidth < this.plugin_.getDesktopHeight();
215 clientArea.width - kScrollBarWidth < this.plugin_.getDesktopWidth();
767 var clientArea = this.getClientArea_();
768 this.plugin_.notifyClientResolution(clientArea.width,
769 clientArea.height,
925 var clientArea = this.getClientArea_();
926 this.plugin_.notifyClientResolution(clientArea.width,
927 clientArea.height,
1003 var clientArea = this.getClientArea_();
1004 this.plugin_.notifyClientResolution(clientArea.width,
1005 clientArea.height,
1070 var clientArea = this.getClientArea_();
1073 clientArea.width,
1074 clientArea.height,
1139 var clientArea = this.getClientArea_();
1164 var scaleFitWidth = Math.min(scale, 1.0 * clientArea.width / desktopWidth);
1166 Math.min(scale, 1.0 * clientArea.height / desktopHeight);
1312 var clientArea = this.getClientArea_();
1313 style.marginLeft = adjustMargin(style.marginLeft, dx, clientArea.width,
1318 style.marginTop, dy, clientArea.height,
1373 var clientArea = this.getClientArea_();
1374 var dx = computeDelta(event.x, clientArea.width);
1375 var dy = computeDelta(event.y, clientArea.height);