From 242e0b7cf0e1e762cfed3c9b117c3528a27436c0 Mon Sep 17 00:00:00 2001 From: Nick Couchman Date: Mon, 30 Apr 2018 13:35:08 -0400 Subject: [PATCH] GUACAMOLE-152: Allow zoom/scale to be manually entered. --- .../app/client/directives/guacZoomCtrl.js | 42 +++++++++++++++++++ .../main/webapp/app/client/styles/menu.css | 10 +++++ .../webapp/app/client/templates/client.html | 2 +- 3 files changed, 53 insertions(+), 1 deletion(-) create mode 100644 guacamole/src/main/webapp/app/client/directives/guacZoomCtrl.js diff --git a/guacamole/src/main/webapp/app/client/directives/guacZoomCtrl.js b/guacamole/src/main/webapp/app/client/directives/guacZoomCtrl.js new file mode 100644 index 000000000..597143970 --- /dev/null +++ b/guacamole/src/main/webapp/app/client/directives/guacZoomCtrl.js @@ -0,0 +1,42 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + +/** + * A directive which converts between human-readable zoom + * percentage and display scale. + */ +angular.module('client').directive('guacZoomCtrl', function guacZoomCtrl() { + return { + restrict: 'A', + require: 'ngModel', + priority: 101, + link: function(scope, element, attr, ngModel) { + + // When pushing to the menu, mutiply by 100. + ngModel.$formatters.push(function(value) { + return Math.round(value * 100); + }); + + // When parsing value from menu, divide by 100. + ngModel.$parsers.push(function(value) { + return Math.round(value) / 100; + }); + } + } +}); diff --git a/guacamole/src/main/webapp/app/client/styles/menu.css b/guacamole/src/main/webapp/app/client/styles/menu.css index a7980bf75..3fb6f5710 100644 --- a/guacamole/src/main/webapp/app/client/styles/menu.css +++ b/guacamole/src/main/webapp/app/client/styles/menu.css @@ -134,6 +134,16 @@ padding-top: 1em; } +.menu-section .zoom-ctrl { + width: 4em; +} + +.menu-section .zoom-ctrl::-webkit-inner-spin-button, +.menu-section .zoom-ctrl::-webkit-outer-spin-button { + -webkit-appearance: none; + margin: 0; +} + .menu, .menu.closed { left: -480px; diff --git a/guacamole/src/main/webapp/app/client/templates/client.html b/guacamole/src/main/webapp/app/client/templates/client.html index 846821860..d152d809f 100644 --- a/guacamole/src/main/webapp/app/client/templates/client.html +++ b/guacamole/src/main/webapp/app/client/templates/client.html @@ -151,7 +151,7 @@
-
-
{{formattedScale()}}%
+ %
+