mirror of
https://github.com/gyurix1968/guacamole-client.git
synced 2025-09-06 13:17:41 +00:00
GUACAMOLE-152: Merge changes adding support for explicitly specifying the zoom level.
This commit is contained in:
@@ -731,10 +731,6 @@ angular.module('client').controller('clientController', ['$scope', '$routeParams
|
|||||||
|
|
||||||
});
|
});
|
||||||
|
|
||||||
$scope.formattedScale = function formattedScale() {
|
|
||||||
return Math.round($scope.client.clientProperties.scale * 100);
|
|
||||||
};
|
|
||||||
|
|
||||||
$scope.zoomIn = function zoomIn() {
|
$scope.zoomIn = function zoomIn() {
|
||||||
$scope.menu.autoFit = false;
|
$scope.menu.autoFit = false;
|
||||||
$scope.client.clientProperties.autoFit = false;
|
$scope.client.clientProperties.autoFit = false;
|
||||||
@@ -745,6 +741,16 @@ angular.module('client').controller('clientController', ['$scope', '$routeParams
|
|||||||
$scope.client.clientProperties.autoFit = false;
|
$scope.client.clientProperties.autoFit = false;
|
||||||
$scope.client.clientProperties.scale -= 0.1;
|
$scope.client.clientProperties.scale -= 0.1;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
/**
|
||||||
|
* When zoom is manually set by entering a value
|
||||||
|
* into the controller, this method turns off autoFit,
|
||||||
|
* both in the menu and the clientProperties.
|
||||||
|
*/
|
||||||
|
$scope.zoomSet = function zoomSet() {
|
||||||
|
$scope.menu.autoFit = false;
|
||||||
|
$scope.client.clientProperties.autoFit = false;
|
||||||
|
};
|
||||||
|
|
||||||
$scope.changeAutoFit = function changeAutoFit() {
|
$scope.changeAutoFit = function changeAutoFit() {
|
||||||
if ($scope.menu.autoFit && $scope.client.clientProperties.minScale) {
|
if ($scope.menu.autoFit && $scope.client.clientProperties.minScale) {
|
||||||
|
@@ -0,0 +1,48 @@
|
|||||||
|
/*
|
||||||
|
* 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, attrs, ngModel) {
|
||||||
|
|
||||||
|
// Evaluate the ngChange attribute when the model
|
||||||
|
// changes.
|
||||||
|
ngModel.$viewChangeListeners.push(function() {
|
||||||
|
scope.$eval(attrs.ngChange);
|
||||||
|
});
|
||||||
|
|
||||||
|
// 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;
|
||||||
|
});
|
||||||
|
}
|
||||||
|
}
|
||||||
|
});
|
@@ -134,6 +134,27 @@
|
|||||||
padding-top: 1em;
|
padding-top: 1em;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.menu-section input.zoom-ctrl {
|
||||||
|
width: 2em;
|
||||||
|
font-size: 1em;
|
||||||
|
padding: 0;
|
||||||
|
background: transparent;
|
||||||
|
border-color: rgba(0, 0, 0, 0.125);
|
||||||
|
}
|
||||||
|
|
||||||
|
.menu-section div.zoom-ctrl {
|
||||||
|
font-size: 1.5em;
|
||||||
|
display: inline;
|
||||||
|
align-content: center;
|
||||||
|
vertical-align: middle;
|
||||||
|
}
|
||||||
|
|
||||||
|
.menu-section .zoom-ctrl::-webkit-inner-spin-button,
|
||||||
|
.menu-section .zoom-ctrl::-webkit-outer-spin-button {
|
||||||
|
-webkit-appearance: none;
|
||||||
|
margin: 0;
|
||||||
|
}
|
||||||
|
|
||||||
.menu,
|
.menu,
|
||||||
.menu.closed {
|
.menu.closed {
|
||||||
left: -480px;
|
left: -480px;
|
||||||
|
@@ -151,7 +151,12 @@
|
|||||||
<div class="content">
|
<div class="content">
|
||||||
<div id="zoom-settings">
|
<div id="zoom-settings">
|
||||||
<div ng-click="zoomOut()" id="zoom-out"><img src="images/settings/zoom-out.png" alt="-"/></div>
|
<div ng-click="zoomOut()" id="zoom-out"><img src="images/settings/zoom-out.png" alt="-"/></div>
|
||||||
<div id="zoom-state">{{formattedScale()}}%</div>
|
<div class="zoom-ctrl">
|
||||||
|
<input type="number" class="zoom-ctrl" guac-zoom-ctrl
|
||||||
|
ng-model="client.clientProperties.scale"
|
||||||
|
ng-model-options="{ updateOn: 'blur submit' }"
|
||||||
|
ng-change="zoomSet()" />%
|
||||||
|
</div>
|
||||||
<div ng-click="zoomIn()" id="zoom-in"><img src="images/settings/zoom-in.png" alt="+"/></div>
|
<div ng-click="zoomIn()" id="zoom-in"><img src="images/settings/zoom-in.png" alt="+"/></div>
|
||||||
</div>
|
</div>
|
||||||
<div><label><input ng-model="menu.autoFit" ng-change="changeAutoFit()" ng-disabled="autoFitDisabled()" type="checkbox" id="auto-fit"/> {{'CLIENT.TEXT_ZOOM_AUTO_FIT' | translate}}</label></div>
|
<div><label><input ng-model="menu.autoFit" ng-change="changeAutoFit()" ng-disabled="autoFitDisabled()" type="checkbox" id="auto-fit"/> {{'CLIENT.TEXT_ZOOM_AUTO_FIT' | translate}}</label></div>
|
||||||
|
Reference in New Issue
Block a user