]> git.proxmox.com Git - mirror_novnc.git/blame - app/ui.js
Don't request a new desktop size in view_only
[mirror_novnc.git] / app / ui.js
CommitLineData
15046f00
JM
1/*
2 * noVNC: HTML5 VNC client
d58f8b51 3 * Copyright (C) 2012 Joel Martin
777cb7a0 4 * Copyright (C) 2016 Samuel Mannehed for Cendio AB
6cba147d 5 * Copyright (C) 2016 Pierre Ossman for Cendio AB
1d728ace 6 * Licensed under MPL 2.0 (see LICENSE.txt)
15046f00
JM
7 *
8 * See README.md for usage and integration instructions.
9 */
43cf7bd8 10
bbbf42bb 11/* jslint white: false, browser: true */
ae510306
SR
12/* global window, document.getElementById, Util, WebUtil, RFB, Display */
13
14/* [module]
15 * import Util from "../core/util";
bd5340c7 16 * import KeyTable from "../core/input/keysym";
ae510306
SR
17 * import RFB from "../core/rfb";
18 * import Display from "../core/display";
19 * import WebUtil from "./webutil";
20 */
bbbf42bb
SR
21
22var UI;
23
24(function () {
25 "use strict";
26
ae510306 27 /* [begin skip-as-module] */
bbbf42bb 28 // Load supporting scripts
72bdd06e 29 WebUtil.load_scripts(
bd5340c7
SR
30 {'core': ["base64.js", "websock.js", "des.js", "input/keysymdef.js",
31 "input/xtscancodes.js", "input/util.js", "input/devices.js",
32 "display.js", "inflator.js", "rfb.js", "input/keysym.js"]});
ae510306 33
bbbf42bb 34 window.onscriptsload = function () { UI.load(); };
ae510306 35 /* [end skip-as-module] */
bbbf42bb 36
bd6874e0 37 UI = {
bbbf42bb 38
3bb12056
SM
39 connected: false,
40 desktopName: "",
529c64e1 41
045d9224 42 resizeTimeout: null,
ca5c74ad 43 statusTimeout: null,
529c64e1 44 hideKeyboardTimeout: null,
3f93a385
SM
45 idleControlbarTimeout: null,
46 closeControlbarTimeout: null,
529c64e1 47
04b399e2
SM
48 controlbarGrabbed: false,
49 controlbarDrag: false,
50 controlbarMouseDownClientY: 0,
51 controlbarMouseDownOffsetY: 0,
bbbf42bb 52 keyboardVisible: false,
529c64e1 53
bbbf42bb 54 isTouchDevice: false,
f620259b 55 isSafari: false,
a6357e82 56 rememberedClipSetting: null,
529c64e1 57 lastKeyboardinput: null,
58 defaultKeyboardinputLen: 100,
59
bbbf42bb
SR
60 // Setup rfb object, load settings from browser storage, then call
61 // UI.init to setup the UI/menus
0bd2cbac 62 load: function(callback) {
bbbf42bb
SR
63 WebUtil.initSettings(UI.start, callback);
64 },
65
66 // Render default UI and initialize settings menu
67 start: function(callback) {
0f6af1e3 68
69 // Setup global variables first
bbbf42bb 70 UI.isTouchDevice = 'ontouchstart' in document.documentElement;
0f6af1e3 71 UI.isSafari = (navigator.userAgent.indexOf('Safari') !== -1 &&
72 navigator.userAgent.indexOf('Chrome') === -1);
73
74 UI.initSettings();
75
6244e383 76 // Adapt the interface for touch screen devices
0f6af1e3 77 if (UI.isTouchDevice) {
6244e383 78 document.documentElement.classList.add("noVNC_touch");
0f6af1e3 79 // Remove the address bar
80 setTimeout(function() { window.scrollTo(0, 1); }, 100);
81 UI.forceSetting('clip', true);
82 } else {
83 UI.initSetting('clip', false);
84 }
85
86 // Setup and initialize event handlers
87 UI.setupWindowEvents();
88 UI.setupFullscreen();
89 UI.addControlbarHandlers();
90 UI.addTouchSpecificHandlers();
ebbec43a 91 UI.addExtraKeysHandlers();
0f6af1e3 92 UI.addXvpHandlers();
93 UI.addConnectionControlHandlers();
94 UI.addClipboardHandlers();
95 UI.addSettingsHandlers();
bbbf42bb 96
f9fff037 97 // Show the connect panel on first load unless autoconnecting
ed8cbe4e
PO
98 if (!autoconnect) {
99 UI.openConnectPanel();
100 }
0f6af1e3 101
f0d9ab96 102 UI.updateViewClip();
0f6af1e3 103
104 UI.updateVisualState();
105
106 document.getElementById('noVNC_setting_host').focus();
107
108 var autoconnect = WebUtil.getConfigVar('autoconnect', false);
109 if (autoconnect === 'true' || autoconnect == '1') {
110 autoconnect = true;
111 UI.connect();
112 } else {
113 autoconnect = false;
114 }
115
116 if (typeof callback === "function") {
117 callback(UI.rfb);
118 }
119 },
120
121 initSettings: function() {
bbbf42bb
SR
122 // Stylesheet selection dropdown
123 var sheet = WebUtil.selectStylesheet();
124 var sheets = WebUtil.getStylesheets();
125 var i;
126 for (i = 0; i < sheets.length; i += 1) {
ae510306 127 UI.addOption(document.getElementById('noVNC_setting_stylesheet'),sheets[i].title, sheets[i].title);
bbbf42bb
SR
128 }
129
130 // Logging selection dropdown
131 var llevels = ['error', 'warn', 'info', 'debug'];
132 for (i = 0; i < llevels.length; i += 1) {
ae510306 133 UI.addOption(document.getElementById('noVNC_setting_logging'),llevels[i], llevels[i]);
bbbf42bb
SR
134 }
135
136 // Settings with immediate effects
137 UI.initSetting('logging', 'warn');
138 WebUtil.init_logging(UI.getSetting('logging'));
139
140 UI.initSetting('stylesheet', 'default');
141 WebUtil.selectStylesheet(null);
142 // call twice to get around webkit bug
143 WebUtil.selectStylesheet(UI.getSetting('stylesheet'));
144
145 // if port == 80 (or 443) then it won't be present and should be
146 // set manually
147 var port = window.location.port;
148 if (!port) {
149 if (window.location.protocol.substring(0,5) == 'https') {
150 port = 443;
151 }
152 else if (window.location.protocol.substring(0,4) == 'http') {
153 port = 80;
154 }
155 }
156
157 /* Populate the controls if defaults are provided in the URL */
158 UI.initSetting('host', window.location.hostname);
159 UI.initSetting('port', port);
160 UI.initSetting('password', '');
161 UI.initSetting('encrypt', (window.location.protocol === "https:"));
162 UI.initSetting('true_color', true);
163 UI.initSetting('cursor', !UI.isTouchDevice);
8b46c0de 164 UI.initSetting('resize', 'off');
bbbf42bb
SR
165 UI.initSetting('shared', true);
166 UI.initSetting('view_only', false);
167 UI.initSetting('path', 'websockify');
168 UI.initSetting('repeaterID', '');
c55f05f6 169 UI.initSetting('token', '');
0f6af1e3 170 },
bbbf42bb 171
0f6af1e3 172 setupWindowEvents: function() {
173 window.addEventListener( 'resize', function () {
777cb7a0 174 UI.applyResizeMode();
f0d9ab96 175 UI.updateViewClip();
31ddaa1c 176 UI.updateViewDrag();
f8b399d7 177 } );
ca5c74ad 178
179 document.getElementById("noVNC_status")
180 .addEventListener('click', UI.hideStatus);
bbbf42bb
SR
181 },
182
0f6af1e3 183 setupFullscreen: function() {
184 // Only show the button if fullscreen is properly supported
185 // * Safari doesn't support alphanumerical input while in fullscreen
186 if (!UI.isSafari &&
187 (document.documentElement.requestFullscreen ||
188 document.documentElement.mozRequestFullScreen ||
189 document.documentElement.webkitRequestFullscreen ||
190 document.body.msRequestFullscreen)) {
e40978c7
PO
191 document.getElementById('noVNC_fullscreen_button')
192 .classList.remove("noVNC_hidden");
0f6af1e3 193 UI.addFullscreenHandlers();
d9fc1c7b 194 }
e543525f
SR
195 },
196
0f6af1e3 197 addControlbarHandlers: function() {
728b5d9e
PO
198 document.getElementById("noVNC_control_bar")
199 .addEventListener('mousemove', UI.activateControlbar);
200 document.getElementById("noVNC_control_bar")
201 .addEventListener('mouseup', UI.activateControlbar);
202 document.getElementById("noVNC_control_bar")
203 .addEventListener('mousedown', UI.activateControlbar);
204 document.getElementById("noVNC_control_bar")
205 .addEventListener('keypress', UI.activateControlbar);
206
3f93a385
SM
207 document.getElementById("noVNC_control_bar")
208 .addEventListener('mousedown', UI.keepControlbar);
209 document.getElementById("noVNC_control_bar")
210 .addEventListener('keypress', UI.keepControlbar);
211
d7f79071 212 document.getElementById("noVNC_view_drag_button")
213 .addEventListener('click', UI.toggleViewDrag);
04b399e2
SM
214
215 document.getElementById("noVNC_control_bar_handle")
216 .addEventListener('mousedown', UI.controlbarHandleMouseDown);
217 document.getElementById("noVNC_control_bar_handle")
218 .addEventListener('mouseup', UI.controlbarHandleMouseUp);
219 document.getElementById("noVNC_control_bar_handle")
220 .addEventListener('mousemove', UI.dragControlbarHandle);
221 // resize events aren't available for elements
222 window.addEventListener('resize', UI.updateControlbarHandle);
0f6af1e3 223 },
224
225 addTouchSpecificHandlers: function() {
d7f79071 226 document.getElementById("noVNC_mouse_button0")
227 .addEventListener('click', function () { UI.setMouseButton(1); });
228 document.getElementById("noVNC_mouse_button1")
229 .addEventListener('click', function () { UI.setMouseButton(2); });
230 document.getElementById("noVNC_mouse_button2")
231 .addEventListener('click', function () { UI.setMouseButton(4); });
232 document.getElementById("noVNC_mouse_button4")
233 .addEventListener('click', function () { UI.setMouseButton(0); });
234 document.getElementById("noVNC_keyboard_button")
4b30f9ce 235 .addEventListener('click', UI.toggleVirtualKeyboard);
d7f79071 236
237 document.getElementById("noVNC_keyboardinput")
238 .addEventListener('input', UI.keyInput);
239 document.getElementById("noVNC_keyboardinput")
4b30f9ce 240 .addEventListener('blur', UI.onblurVirtualKeyboard);
d7f79071 241 document.getElementById("noVNC_keyboardinput")
242 .addEventListener('submit', function () { return false; });
243
728b5d9e
PO
244 document.getElementById("noVNC_control_bar")
245 .addEventListener('touchstart', UI.activateControlbar);
246 document.getElementById("noVNC_control_bar")
247 .addEventListener('touchmove', UI.activateControlbar);
248 document.getElementById("noVNC_control_bar")
249 .addEventListener('touchend', UI.activateControlbar);
250 document.getElementById("noVNC_control_bar")
251 .addEventListener('input', UI.activateControlbar);
252
3f93a385
SM
253 document.getElementById("noVNC_control_bar")
254 .addEventListener('touchstart', UI.keepControlbar);
255 document.getElementById("noVNC_control_bar")
256 .addEventListener('input', UI.keepControlbar);
257
04b399e2
SM
258 document.getElementById("noVNC_control_bar_handle")
259 .addEventListener('touchstart', UI.controlbarHandleMouseDown);
260 document.getElementById("noVNC_control_bar_handle")
261 .addEventListener('touchend', UI.controlbarHandleMouseUp);
262 document.getElementById("noVNC_control_bar_handle")
263 .addEventListener('touchmove', UI.dragControlbarHandle);
264
0f6af1e3 265 window.addEventListener('load', UI.keyboardinputReset);
ebbec43a 266 },
0f6af1e3 267
ebbec43a 268 addExtraKeysHandlers: function() {
a49d9298 269 document.getElementById("noVNC_toggle_extra_keys_button")
d7f79071 270 .addEventListener('click', UI.toggleExtraKeys);
a49d9298 271 document.getElementById("noVNC_toggle_ctrl_button")
d7f79071 272 .addEventListener('click', UI.toggleCtrl);
a49d9298 273 document.getElementById("noVNC_toggle_alt_button")
d7f79071 274 .addEventListener('click', UI.toggleAlt);
a49d9298 275 document.getElementById("noVNC_send_tab_button")
d7f79071 276 .addEventListener('click', UI.sendTab);
a49d9298 277 document.getElementById("noVNC_send_esc_button")
d7f79071 278 .addEventListener('click', UI.sendEsc);
ca25d2ae
PO
279 document.getElementById("noVNC_send_ctrl_alt_del_button")
280 .addEventListener('click', UI.sendCtrlAltDel);
0f6af1e3 281 },
d7f79071 282
0f6af1e3 283 addXvpHandlers: function() {
a49d9298 284 document.getElementById("noVNC_xvp_shutdown_button")
d7f79071 285 .addEventListener('click', function() { UI.rfb.xvpShutdown(); });
a49d9298 286 document.getElementById("noVNC_xvp_reboot_button")
d7f79071 287 .addEventListener('click', function() { UI.rfb.xvpReboot(); });
a49d9298 288 document.getElementById("noVNC_xvp_reset_button")
d7f79071 289 .addEventListener('click', function() { UI.rfb.xvpReset(); });
a49d9298 290 document.getElementById("noVNC_xvp_button")
d7f79071 291 .addEventListener('click', UI.toggleXvpPanel);
0f6af1e3 292 },
293
294 addConnectionControlHandlers: function() {
a49d9298 295 document.getElementById("noVNC_connect_controls_button")
d7f79071 296 .addEventListener('click', UI.toggleConnectPanel);
297 document.getElementById("noVNC_disconnect_button")
298 .addEventListener('click', UI.disconnect);
0f6af1e3 299 document.getElementById("noVNC_connect_button")
300 .addEventListener('click', UI.connect);
8a7ec6ea
SM
301
302 document.getElementById("noVNC_password_button")
303 .addEventListener('click', UI.setPassword);
0f6af1e3 304 },
d7f79071 305
0f6af1e3 306 addClipboardHandlers: function() {
307 document.getElementById("noVNC_clipboard_button")
308 .addEventListener('click', UI.toggleClipboardPanel);
d7f79071 309 document.getElementById("noVNC_clipboard_text")
310 .addEventListener('focus', UI.displayBlur);
311 document.getElementById("noVNC_clipboard_text")
312 .addEventListener('blur', UI.displayFocus);
313 document.getElementById("noVNC_clipboard_text")
314 .addEventListener('change', UI.clipboardSend);
315 document.getElementById("noVNC_clipboard_clear_button")
316 .addEventListener('click', UI.clipboardClear);
0f6af1e3 317 },
d7f79071 318
0f6af1e3 319 addSettingsHandlers: function() {
320 document.getElementById("noVNC_settings_button")
321 .addEventListener('click', UI.toggleSettingsPanel);
d7f79071 322 document.getElementById("noVNC_settings_apply")
323 .addEventListener('click', UI.settingsApply);
324
d7f79071 325 document.getElementById("noVNC_setting_resize")
326 .addEventListener('change', UI.enableDisableViewClip);
bbbf42bb
SR
327 },
328
0f6af1e3 329 addFullscreenHandlers: function() {
330 document.getElementById("noVNC_fullscreen_button")
331 .addEventListener('click', UI.toggleFullscreen);
332
333 window.addEventListener('fullscreenchange', UI.updateFullscreenButton);
334 window.addEventListener('mozfullscreenchange', UI.updateFullscreenButton);
335 window.addEventListener('webkitfullscreenchange', UI.updateFullscreenButton);
336 window.addEventListener('msfullscreenchange', UI.updateFullscreenButton);
337 },
338
339 initRFB: function() {
340 try {
341 UI.rfb = new RFB({'target': document.getElementById('noVNC_canvas'),
a7127fee 342 'onNotification': UI.notification,
0f6af1e3 343 'onUpdateState': UI.updateState,
3bb12056 344 'onDisconnected': UI.disconnectFinished,
7d714b15 345 'onPasswordRequired': UI.passwordRequired,
0f6af1e3 346 'onXvpInit': UI.updateXvpButton,
347 'onClipboard': UI.clipboardReceive,
63bf2ba5 348 'onBell': UI.bell,
0f6af1e3 349 'onFBUComplete': UI.initialResize,
350 'onFBResize': UI.updateViewDrag,
3bb12056 351 'onDesktopName': UI.updateDesktopName});
0f6af1e3 352 return true;
353 } catch (exc) {
3bb12056 354 UI.showStatus('Unable to create RFB client -- ' + exc, 'error');
0f6af1e3 355 return false;
356 }
357 },
358
95dd6001 359/* ------^-------
360 * /INIT
361 * ==============
362 * VISUAL
363 * ------v------*/
58ded70d 364
3bb12056
SM
365 updateState: function(rfb, state, oldstate) {
366 switch (state) {
367 case 'connecting':
368 UI.showStatus("Connecting");
369 break;
370 case 'connected':
371 UI.connected = true;
372 if (rfb && rfb.get_encrypt()) {
373 UI.showStatus("Connected (encrypted) to " +
374 UI.desktopName);
375 } else {
376 UI.showStatus("Connected (unencrypted) to " +
377 UI.desktopName);
378 }
379 break;
380 case 'disconnecting':
381 UI.showStatus("Disconnecting");
382 break;
383 case 'disconnected':
384 UI.connected = false;
385 UI.showStatus("Disconnected");
386 break;
387 default:
388 UI.showStatus("Invalid state", 'error');
389 break;
fdedbafb 390 }
29475d77 391
392 UI.updateVisualState();
fdedbafb 393 },
394
29475d77 395 // Disable/enable controls depending on connection state
396 updateVisualState: function() {
29475d77 397 //Util.Debug(">> updateVisualState");
3bb12056
SM
398 document.getElementById('noVNC_setting_encrypt').disabled = UI.connected;
399 document.getElementById('noVNC_setting_true_color').disabled = UI.connected;
29475d77 400 if (Util.browserSupportsCursorURIs()) {
3bb12056 401 document.getElementById('noVNC_setting_cursor').disabled = UI.connected;
29475d77 402 } else {
403 UI.updateSetting('cursor', !UI.isTouchDevice);
ae510306 404 document.getElementById('noVNC_setting_cursor').disabled = true;
29475d77 405 }
fdedbafb 406
29475d77 407 UI.enableDisableViewClip();
3bb12056
SM
408 document.getElementById('noVNC_setting_resize').disabled = UI.connected;
409 document.getElementById('noVNC_setting_shared').disabled = UI.connected;
410 document.getElementById('noVNC_setting_view_only').disabled = UI.connected;
411 document.getElementById('noVNC_setting_path').disabled = UI.connected;
412 document.getElementById('noVNC_setting_repeaterID').disabled = UI.connected;
fdedbafb 413
3bb12056 414 if (UI.connected) {
6244e383 415 document.documentElement.classList.add("noVNC_connected");
f0d9ab96 416 UI.updateViewClip();
29475d77 417 UI.setMouseButton(1);
3f93a385
SM
418
419 // Hide the controlbar after 2 seconds
420 UI.closeControlbarTimeout = setTimeout(UI.closeControlbar, 2000);
29475d77 421 } else {
6244e383 422 document.documentElement.classList.remove("noVNC_connected");
9e45354e 423 UI.updateXvpButton(0);
7520ba52 424 UI.keepControlbar();
29475d77 425 }
fdedbafb 426
29475d77 427 // State change disables viewport dragging.
428 // It is enabled (toggled) by direct click on the button
f0d9ab96 429 UI.setViewDrag(false);
29475d77 430
8a7ec6ea
SM
431 // State change also closes the password dialog
432 document.getElementById('noVNC_password_dlg')
433 .classList.remove('noVNC_open');
434
29475d77 435 //Util.Debug("<< updateVisualState");
436 },
437
8d7708c8 438 showStatus: function(text, status_type, time) {
ca5c74ad 439 var statusElem = document.getElementById('noVNC_status');
4e471b5b 440
ca5c74ad 441 clearTimeout(UI.statusTimeout);
4e471b5b 442
8d7708c8
SM
443 if (typeof status_type === 'undefined') {
444 status_type = 'normal';
445 }
446
447 statusElem.classList.remove("noVNC_status_normal",
448 "noVNC_status_warn",
449 "noVNC_status_error");
450
451 switch (status_type) {
452 case 'warning':
453 case 'warn':
454 statusElem.classList.add("noVNC_status_warn");
455 break;
456 case 'error':
457 statusElem.classList.add("noVNC_status_error");
458 break;
459 case 'normal':
460 case 'info':
461 default:
462 statusElem.classList.add("noVNC_status_normal");
463 break;
464 }
465
ca5c74ad 466 statusElem.innerHTML = text;
467 statusElem.classList.add("noVNC_open");
468
469 // If no time was specified, show the status for 1.5 seconds
470 if (typeof time === 'undefined') {
471 time = 1500;
fdedbafb 472 }
4e471b5b 473
74a4a2b4
SM
474 // Error messages do not timeout
475 if (status_type !== 'error') {
ca5c74ad 476 UI.statusTimeout = window.setTimeout(UI.hideStatus, time);
477 }
fdedbafb 478 },
479
ca5c74ad 480 hideStatus: function() {
481 clearTimeout(UI.statusTimeout);
482 document.getElementById('noVNC_status').classList.remove("noVNC_open");
4e471b5b 483 },
484
a7127fee
SM
485 notification: function (rfb, msg, level, options) {
486 UI.showStatus(msg, level);
487 },
488
3f93a385
SM
489 activateControlbar: function(event) {
490 clearTimeout(UI.idleControlbarTimeout);
728b5d9e
PO
491 // We manipulate the anchor instead of the actual control
492 // bar in order to avoid creating new a stacking group
493 document.getElementById('noVNC_control_bar_anchor')
494 .classList.remove("noVNC_idle");
3f93a385 495 UI.idleControlbarTimeout = window.setTimeout(UI.idleControlbar, 2000);
728b5d9e
PO
496 },
497
498 idleControlbar: function() {
499 document.getElementById('noVNC_control_bar_anchor')
500 .classList.add("noVNC_idle");
501 },
502
3f93a385
SM
503 keepControlbar: function() {
504 clearTimeout(UI.closeControlbarTimeout);
505 },
506
38323d4d
PO
507 openControlbar: function() {
508 document.getElementById('noVNC_control_bar')
509 .classList.add("noVNC_open");
510 },
511
512 closeControlbar: function() {
513 UI.closeAllPanels();
514 document.getElementById('noVNC_control_bar')
515 .classList.remove("noVNC_open");
516 },
517
518 toggleControlbar: function() {
519 if (document.getElementById('noVNC_control_bar')
520 .classList.contains("noVNC_open")) {
521 UI.closeControlbar();
522 } else {
523 UI.openControlbar();
524 }
525 },
526
04b399e2
SM
527 dragControlbarHandle: function (e) {
528 if (!UI.controlbarGrabbed) return;
529
530 var ptr = Util.getPointerEvent(e);
531
532 if (!UI.controlbarDrag) {
533 // The goal is to trigger on a certain physical width, the
534 // devicePixelRatio brings us a bit closer but is not optimal.
535 var dragThreshold = 10 * (window.devicePixelRatio || 1);
536 var dragDistance = Math.abs(ptr.clientY - UI.controlbarMouseDownClientY);
537
538 if (dragDistance < dragThreshold) return;
539
540 UI.controlbarDrag = true;
541 }
542
543 var eventY = ptr.clientY - UI.controlbarMouseDownOffsetY;
544
545 UI.moveControlbarHandle(eventY);
546
547 e.preventDefault();
548 e.stopPropagation();
549 },
550
551 // Move the handle but don't allow any position outside the bounds
552 moveControlbarHandle: function (posY) {
553 var handle = document.getElementById("noVNC_control_bar_handle");
554 var handleHeight = Util.getPosition(handle).height;
555 var controlbar = document.getElementById("noVNC_control_bar");
556 var controlbarBounds = Util.getPosition(controlbar);
557 var controlbarTop = controlbarBounds.y;
558 var controlbarBottom = controlbarBounds.y + controlbarBounds.height;
559 var margin = 10;
560
561 var viewportY = posY;
562
563 // Refuse coordinates outside the control bar
564 if (viewportY < controlbarTop + margin) {
565 viewportY = controlbarTop + margin;
566 } else if (viewportY > controlbarBottom - handleHeight - margin) {
567 viewportY = controlbarBottom - handleHeight - margin;
568 }
569
570 // Corner case: control bar too small for stable position
571 if (controlbarBounds.height < (handleHeight + margin * 2)) {
572 viewportY = controlbarTop + (controlbarBounds.height - handleHeight) / 2;
573 }
574
575 var relativeY = viewportY - controlbarTop;
576 handle.style.transform = "translateY(" + relativeY + "px)";
577 },
578
579 updateControlbarHandle: function () {
580 var handle = document.getElementById("noVNC_control_bar_handle");
581 var pos = Util.getPosition(handle);
582 UI.moveControlbarHandle(pos.y);
583 },
584
585 controlbarHandleMouseUp: function(e) {
1c1cc1d0 586 if ((e.type == "mouseup") && (e.button != 0)) return;
04b399e2
SM
587
588 // mouseup and mousedown on the same place toggles the controlbar
589 if (UI.controlbarGrabbed && !UI.controlbarDrag) {
590 UI.toggleControlbar();
591 e.preventDefault();
592 e.stopPropagation();
593 }
594 UI.controlbarGrabbed = false;
595 },
596
597 controlbarHandleMouseDown: function(e) {
1c1cc1d0 598 if ((e.type == "mousedown") && (e.button != 0)) return;
04b399e2
SM
599
600 var ptr = Util.getPointerEvent(e);
601
602 var handle = document.getElementById("noVNC_control_bar_handle");
603 var bounds = handle.getBoundingClientRect();
604
605 WebUtil.setCapture(handle);
606 UI.controlbarGrabbed = true;
607 UI.controlbarDrag = false;
608
609 UI.controlbarMouseDownClientY = ptr.clientY;
610 UI.controlbarMouseDownOffsetY = ptr.clientY - bounds.top;
611 e.preventDefault();
612 e.stopPropagation();
613 },
614
95dd6001 615/* ------^-------
616 * /VISUAL
617 * ==============
618 * SETTINGS
619 * ------v------*/
620
45c70c9e 621 // Initial page load read/initialization of settings
622 initSetting: function(name, defVal) {
623 // Check Query string followed by cookie
624 var val = WebUtil.getConfigVar(name);
625 if (val === null) {
626 val = WebUtil.readSetting(name, defVal);
bbbf42bb 627 }
45c70c9e 628 UI.updateSetting(name, val);
bbbf42bb
SR
629 return val;
630 },
631
632 // Update cookie and form control setting. If value is not set, then
633 // updates from control to current cookie setting.
634 updateSetting: function(name, value) {
635
636 // Save the cookie for this session
637 if (typeof value !== 'undefined') {
638 WebUtil.writeSetting(name, value);
639 }
640
641 // Update the settings control
642 value = UI.getSetting(name);
643
ae510306 644 var ctrl = document.getElementById('noVNC_setting_' + name);
bbbf42bb
SR
645 if (ctrl.type === 'checkbox') {
646 ctrl.checked = value;
647
648 } else if (typeof ctrl.options !== 'undefined') {
649 for (var i = 0; i < ctrl.options.length; i += 1) {
650 if (ctrl.options[i].value === value) {
651 ctrl.selectedIndex = i;
652 break;
653 }
654 }
655 } else {
656 /*Weird IE9 error leads to 'null' appearring
657 in textboxes instead of ''.*/
658 if (value === null) {
659 value = "";
660 }
661 ctrl.value = value;
662 }
663 },
664
665 // Save control setting to cookie
666 saveSetting: function(name) {
ae510306 667 var val, ctrl = document.getElementById('noVNC_setting_' + name);
bbbf42bb
SR
668 if (ctrl.type === 'checkbox') {
669 val = ctrl.checked;
670 } else if (typeof ctrl.options !== 'undefined') {
671 val = ctrl.options[ctrl.selectedIndex].value;
672 } else {
673 val = ctrl.value;
674 }
675 WebUtil.writeSetting(name, val);
676 //Util.Debug("Setting saved '" + name + "=" + val + "'");
677 return val;
678 },
679
bbbf42bb
SR
680 // Force a setting to be a certain value
681 forceSetting: function(name, val) {
682 UI.updateSetting(name, val);
683 return val;
684 },
685
45c70c9e 686 // Read form control compatible setting from cookie
687 getSetting: function(name) {
ae510306 688 var ctrl = document.getElementById('noVNC_setting_' + name);
45c70c9e 689 var val = WebUtil.readSetting(name);
690 if (typeof val !== 'undefined' && val !== null && ctrl.type === 'checkbox') {
691 if (val.toString().toLowerCase() in {'0':1, 'no':1, 'false':1}) {
692 val = false;
4f19e5c6 693 } else {
45c70c9e 694 val = true;
4f19e5c6 695 }
bbbf42bb 696 }
bbbf42bb 697 return val;
bbbf42bb
SR
698 },
699
95dd6001 700 // Save/apply settings when 'Apply' button is pressed
701 settingsApply: function() {
702 //Util.Debug(">> settingsApply");
703 UI.saveSetting('encrypt');
704 UI.saveSetting('true_color');
705 if (Util.browserSupportsCursorURIs()) {
706 UI.saveSetting('cursor');
bbbf42bb 707 }
bbbf42bb 708
95dd6001 709 UI.saveSetting('resize');
bbbf42bb 710
95dd6001 711 if (UI.getSetting('resize') === 'downscale' || UI.getSetting('resize') === 'scale') {
712 UI.forceSetting('clip', false);
7d1dc09a 713 }
7d1dc09a 714
95dd6001 715 UI.saveSetting('clip');
716 UI.saveSetting('shared');
717 UI.saveSetting('view_only');
718 UI.saveSetting('path');
719 UI.saveSetting('repeaterID');
720 UI.saveSetting('stylesheet');
721 UI.saveSetting('logging');
722
723 // Settings with immediate (non-connected related) effect
724 WebUtil.selectStylesheet(UI.getSetting('stylesheet'));
725 WebUtil.init_logging(UI.getSetting('logging'));
f0d9ab96 726 UI.updateViewClip();
95dd6001 727 UI.updateViewDrag();
728 //Util.Debug("<< settingsApply");
7d1dc09a 729 },
730
ed8cbe4e
PO
731/* ------^-------
732 * /SETTINGS
733 * ==============
734 * PANELS
735 * ------v------*/
736
737 closeAllPanels: function() {
738 UI.closeSettingsPanel();
739 UI.closeXvpPanel();
740 UI.closeClipboardPanel();
741 UI.closeConnectPanel();
fb7c3b3b 742 UI.closeExtraKeys();
ed8cbe4e
PO
743 },
744
745/* ------^-------
746 * /PANELS
747 * ==============
748 * SETTINGS (panel)
749 * ------v------*/
750
751 openSettingsPanel: function() {
752 UI.closeAllPanels();
38323d4d 753 UI.openControlbar();
ed8cbe4e
PO
754
755 UI.updateSetting('encrypt');
756 UI.updateSetting('true_color');
757 if (Util.browserSupportsCursorURIs()) {
758 UI.updateSetting('cursor');
759 } else {
760 UI.updateSetting('cursor', !UI.isTouchDevice);
761 document.getElementById('noVNC_setting_cursor').disabled = true;
bbbf42bb 762 }
ed8cbe4e
PO
763 UI.updateSetting('clip');
764 UI.updateSetting('resize');
765 UI.updateSetting('shared');
766 UI.updateSetting('view_only');
767 UI.updateSetting('path');
768 UI.updateSetting('repeaterID');
769 UI.updateSetting('stylesheet');
770 UI.updateSetting('logging');
771
e40978c7
PO
772 document.getElementById('noVNC_settings')
773 .classList.add("noVNC_open");
774 document.getElementById('noVNC_settings_button')
d9e86214 775 .classList.add("noVNC_selected");
45c70c9e 776 },
bbbf42bb 777
ed8cbe4e 778 closeSettingsPanel: function() {
e40978c7
PO
779 document.getElementById('noVNC_settings')
780 .classList.remove("noVNC_open");
781 document.getElementById('noVNC_settings_button')
d9e86214 782 .classList.remove("noVNC_selected");
bbbf42bb
SR
783 },
784
785 // Toggle the settings menu:
786 // On open, settings are refreshed from saved cookies.
787 // On close, settings are applied
788 toggleSettingsPanel: function() {
ed8cbe4e
PO
789 if (document.getElementById('noVNC_settings')
790 .classList.contains("noVNC_open")) {
bbbf42bb 791 UI.settingsApply();
ed8cbe4e 792 UI.closeSettingsPanel();
bbbf42bb 793 } else {
ed8cbe4e 794 UI.openSettingsPanel();
bbbf42bb
SR
795 }
796 },
797
95dd6001 798/* ------^-------
799 * /SETTINGS
800 * ==============
801 * XVP
802 * ------v------*/
803
ed8cbe4e
PO
804 openXvpPanel: function() {
805 UI.closeAllPanels();
38323d4d 806 UI.openControlbar();
ed8cbe4e
PO
807
808 document.getElementById('noVNC_xvp')
809 .classList.add("noVNC_open");
810 document.getElementById('noVNC_xvp_button')
811 .classList.add("noVNC_selected");
812 },
813
814 closeXvpPanel: function() {
815 document.getElementById('noVNC_xvp')
816 .classList.remove("noVNC_open");
817 document.getElementById('noVNC_xvp_button')
818 .classList.remove("noVNC_selected");
819 },
820
bbbf42bb 821 toggleXvpPanel: function() {
ed8cbe4e
PO
822 if (document.getElementById('noVNC_xvp')
823 .classList.contains("noVNC_open")) {
824 UI.closeXvpPanel();
bbbf42bb 825 } else {
ed8cbe4e 826 UI.openXvpPanel();
bbbf42bb 827 }
bbbf42bb
SR
828 },
829
830 // Disable/enable XVP button
9e45354e 831 updateXvpButton: function(ver) {
bbbf42bb 832 if (ver >= 1) {
a49d9298 833 document.getElementById('noVNC_xvp_button')
e40978c7 834 .classList.remove("noVNC_hidden");
bbbf42bb 835 } else {
a49d9298 836 document.getElementById('noVNC_xvp_button')
e40978c7 837 .classList.add("noVNC_hidden");
bbbf42bb 838 // Close XVP panel if open
ed8cbe4e 839 UI.closeXvpPanel();
bbbf42bb
SR
840 }
841 },
842
95dd6001 843/* ------^-------
844 * /XVP
845 * ==============
846 * CLIPBOARD
847 * ------v------*/
f8b399d7 848
ed8cbe4e
PO
849 openClipboardPanel: function() {
850 UI.closeAllPanels();
38323d4d 851 UI.openControlbar();
ed8cbe4e
PO
852
853 document.getElementById('noVNC_clipboard')
854 .classList.add("noVNC_open");
855 document.getElementById('noVNC_clipboard_button')
856 .classList.add("noVNC_selected");
857 },
858
859 closeClipboardPanel: function() {
860 document.getElementById('noVNC_clipboard')
861 .classList.remove("noVNC_open");
862 document.getElementById('noVNC_clipboard_button')
863 .classList.remove("noVNC_selected");
864 },
865
bbbf42bb 866 toggleClipboardPanel: function() {
ed8cbe4e
PO
867 if (document.getElementById('noVNC_clipboard')
868 .classList.contains("noVNC_open")) {
869 UI.closeClipboardPanel();
bbbf42bb 870 } else {
ed8cbe4e 871 UI.openClipboardPanel();
bbbf42bb 872 }
bbbf42bb
SR
873 },
874
4d26f58e 875 clipboardReceive: function(rfb, text) {
876 Util.Debug(">> UI.clipboardReceive: " + text.substr(0,40) + "...");
ae510306 877 document.getElementById('noVNC_clipboard_text').value = text;
4d26f58e 878 Util.Debug("<< UI.clipboardReceive");
95dd6001 879 },
880
4d26f58e 881 clipboardClear: function() {
ae510306 882 document.getElementById('noVNC_clipboard_text').value = "";
95dd6001 883 UI.rfb.clipboardPasteFrom("");
884 },
885
4d26f58e 886 clipboardSend: function() {
ae510306 887 var text = document.getElementById('noVNC_clipboard_text').value;
4d26f58e 888 Util.Debug(">> UI.clipboardSend: " + text.substr(0,40) + "...");
95dd6001 889 UI.rfb.clipboardPasteFrom(text);
4d26f58e 890 Util.Debug("<< UI.clipboardSend");
95dd6001 891 },
892
893/* ------^-------
894 * /CLIPBOARD
895 * ==============
896 * CONNECTION
897 * ------v------*/
898
ed8cbe4e
PO
899 openConnectPanel: function() {
900 UI.closeAllPanels();
38323d4d 901 UI.openControlbar();
ab81ddf5 902
ed8cbe4e
PO
903 document.getElementById('noVNC_connect_controls')
904 .classList.add("noVNC_open");
905 document.getElementById('noVNC_connect_controls_button')
906 .classList.add("noVNC_selected");
907
908 document.getElementById('noVNC_setting_host').focus();
909 },
910
911 closeConnectPanel: function() {
912 document.getElementById('noVNC_connect_controls')
913 .classList.remove("noVNC_open");
914 document.getElementById('noVNC_connect_controls_button')
915 .classList.remove("noVNC_selected");
916
917 UI.saveSetting('host');
918 UI.saveSetting('port');
919 UI.saveSetting('token');
920 //UI.saveSetting('password');
921 },
922
923 toggleConnectPanel: function() {
924 if (document.getElementById('noVNC_connect_controls')
925 .classList.contains("noVNC_open")) {
926 UI.closeConnectPanel();
ab81ddf5 927 } else {
ed8cbe4e 928 UI.openConnectPanel();
ab81ddf5 929 }
bbbf42bb
SR
930 },
931
932 connect: function() {
ae510306
SR
933 var host = document.getElementById('noVNC_setting_host').value;
934 var port = document.getElementById('noVNC_setting_port').value;
935 var password = document.getElementById('noVNC_setting_password').value;
936 var token = document.getElementById('noVNC_setting_token').value;
937 var path = document.getElementById('noVNC_setting_path').value;
c55f05f6
MXPN
938
939 //if token is in path then ignore the new token variable
940 if (token) {
941 path = WebUtil.injectParamIfMissing(path, "token", token);
942 }
943
bbbf42bb 944 if ((!host) || (!port)) {
3bb12056
SM
945 UI.showStatus("Must set host and port", 'error');
946 return;
bbbf42bb 947 }
53fc7392 948
d9fc1c7b 949 if (!UI.initRFB()) return;
58ded70d 950
4102b71c
SM
951 UI.closeAllPanels();
952
bbbf42bb
SR
953 UI.rfb.set_encrypt(UI.getSetting('encrypt'));
954 UI.rfb.set_true_color(UI.getSetting('true_color'));
955 UI.rfb.set_local_cursor(UI.getSetting('cursor'));
956 UI.rfb.set_shared(UI.getSetting('shared'));
957 UI.rfb.set_view_only(UI.getSetting('view_only'));
958 UI.rfb.set_repeaterID(UI.getSetting('repeaterID'));
53fc7392 959
bbbf42bb 960 UI.rfb.connect(host, port, password, path);
bbbf42bb 961 },
5299db1a 962
bbbf42bb 963 disconnect: function() {
ed8cbe4e 964 UI.closeAllPanels();
bbbf42bb 965 UI.rfb.disconnect();
8e0f0088 966
f8b399d7 967 // Restore the callback used for initial resize
ab81ddf5 968 UI.rfb.set_onFBUComplete(UI.initialResize);
f8b399d7 969
e543525f 970 // Don't display the connection settings until we're actually disconnected
bbbf42bb
SR
971 },
972
3bb12056
SM
973 disconnectFinished: function (rfb, reason) {
974 if (typeof reason !== 'undefined') {
975 UI.showStatus(reason, 'error');
976 }
977 UI.openConnectPanel();
978 },
979
7d714b15
SM
980/* ------^-------
981 * /CONNECTION
982 * ==============
983 * PASSWORD
984 * ------v------*/
985
986 passwordRequired: function(rfb, msg) {
987
988 document.getElementById('noVNC_password_dlg')
989 .classList.add('noVNC_open');
990
991 setTimeout(function () {
992 document.getElementById('noVNC_password_input').focus();
993 }, 100);
994
995 if (typeof msg === 'undefined') {
996 msg = "Password is required";
997 }
3bb12056 998 UI.showStatus(msg, "warning");
7d714b15
SM
999 },
1000
95dd6001 1001 setPassword: function() {
8a7ec6ea
SM
1002 UI.rfb.sendPassword(document.getElementById('noVNC_password_input').value);
1003 document.getElementById('noVNC_password_dlg')
1004 .classList.remove('noVNC_open');
95dd6001 1005 return false;
1006 },
58ded70d 1007
95dd6001 1008/* ------^-------
7d714b15 1009 * /PASSWORD
95dd6001 1010 * ==============
1011 * FULLSCREEN
1012 * ------v------*/
1013
7d1dc09a 1014 toggleFullscreen: function() {
1015 if (document.fullscreenElement || // alternative standard method
1016 document.mozFullScreenElement || // currently working methods
1017 document.webkitFullscreenElement ||
a6357e82 1018 document.msFullscreenElement) {
7d1dc09a 1019 if (document.exitFullscreen) {
1020 document.exitFullscreen();
1021 } else if (document.mozCancelFullScreen) {
1022 document.mozCancelFullScreen();
1023 } else if (document.webkitExitFullscreen) {
1024 document.webkitExitFullscreen();
1025 } else if (document.msExitFullscreen) {
1026 document.msExitFullscreen();
1027 }
1028 } else {
1029 if (document.documentElement.requestFullscreen) {
1030 document.documentElement.requestFullscreen();
1031 } else if (document.documentElement.mozRequestFullScreen) {
1032 document.documentElement.mozRequestFullScreen();
1033 } else if (document.documentElement.webkitRequestFullscreen) {
1034 document.documentElement.webkitRequestFullscreen(Element.ALLOW_KEYBOARD_INPUT);
1035 } else if (document.body.msRequestFullscreen) {
1036 document.body.msRequestFullscreen();
1037 }
1038 }
a6357e82 1039 UI.enableDisableViewClip();
7d1dc09a 1040 UI.updateFullscreenButton();
bbbf42bb
SR
1041 },
1042
7d1dc09a 1043 updateFullscreenButton: function() {
1044 if (document.fullscreenElement || // alternative standard method
1045 document.mozFullScreenElement || // currently working methods
1046 document.webkitFullscreenElement ||
1047 document.msFullscreenElement ) {
a49d9298 1048 document.getElementById('noVNC_fullscreen_button')
d9e86214 1049 .classList.add("noVNC_selected");
7d1dc09a 1050 } else {
a49d9298 1051 document.getElementById('noVNC_fullscreen_button')
d9e86214 1052 .classList.remove("noVNC_selected");
7d1dc09a 1053 }
1054 },
1055
95dd6001 1056/* ------^-------
1057 * /FULLSCREEN
1058 * ==============
1059 * RESIZE
1060 * ------v------*/
777cb7a0 1061
1062 // Apply remote resizing or local scaling
0bd2cbac 1063 applyResizeMode: function() {
58ded70d
SR
1064 if (!UI.rfb) return;
1065
777cb7a0 1066 var screen = UI.screenSize();
1067
3bb12056 1068 if (screen && UI.connected && UI.rfb.get_display()) {
777cb7a0 1069
1070 var display = UI.rfb.get_display();
1071 var resizeMode = UI.getSetting('resize');
1072
1073 if (resizeMode === 'remote') {
1074
1075 // Request changing the resolution of the remote display to
1076 // the size of the local browser viewport.
1077
1078 // In order to not send multiple requests before the browser-resize
1079 // is finished we wait 0.5 seconds before sending the request.
1080 clearTimeout(UI.resizeTimeout);
1081 UI.resizeTimeout = setTimeout(function(){
1082
1083 // Limit the viewport to the size of the browser window
1084 display.set_maxWidth(screen.w);
1085 display.set_maxHeight(screen.h);
1086
777cb7a0 1087 // Request a remote size covering the viewport
7ae53db9
SM
1088 if (UI.rfb.requestDesktopSize(screen.w, screen.h)) {
1089 Util.Debug('Requested new desktop size: ' +
1090 screen.w + 'x' + screen.h);
1091 }
777cb7a0 1092 }, 500);
1093
1094 } else if (resizeMode === 'scale' || resizeMode === 'downscale') {
1095 var downscaleOnly = resizeMode === 'downscale';
1096 var scaleRatio = display.autoscale(screen.w, screen.h, downscaleOnly);
1097 UI.rfb.get_mouse().set_scale(scaleRatio);
1098 Util.Debug('Scaling by ' + UI.rfb.get_mouse().get_scale());
1099 }
1100 }
bbbf42bb
SR
1101 },
1102
777cb7a0 1103 // The screen is always the same size as the available viewport
1104 // in the browser window minus the height of the control bar
0bd2cbac 1105 screenSize: function() {
ae510306 1106 var screen = document.getElementById('noVNC_screen');
777cb7a0 1107
1108 // Hide the scrollbars until the size is calculated
1109 screen.style.overflow = "hidden";
1110
1111 var pos = Util.getPosition(screen);
1112 var w = pos.width;
1113 var h = pos.height;
1114
1115 screen.style.overflow = "visible";
1116
1117 if (isNaN(w) || isNaN(h)) {
1118 return false;
1119 } else {
1120 return {w: w, h: h};
1121 }
bbbf42bb
SR
1122 },
1123
777cb7a0 1124 // Normally we only apply the current resize mode after a window resize
1125 // event. This means that when a new connection is opened, there is no
1126 // resize mode active.
1127 // We have to wait until the first FBU because this is where the client
1128 // will find the supported encodings of the server. Some calls later in
1129 // the chain is dependant on knowing the server-capabilities.
1130 initialResize: function(rfb, fbu) {
1131 UI.applyResizeMode();
1132 // After doing this once, we remove the callback.
1133 UI.rfb.set_onFBUComplete(function() { });
bbbf42bb
SR
1134 },
1135
95dd6001 1136/* ------^-------
1137 * /RESIZE
1138 * ==============
1139 * CLIPPING
1140 * ------v------*/
1141
30bfff81 1142 // Set and configure viewport clipping
bbbf42bb 1143 setViewClip: function(clip) {
f0d9ab96 1144 UI.updateSetting('clip', clip);
1145 UI.updateViewClip();
1146 },
1147
1148 // Update parameters that depend on the clip setting
1149 updateViewClip: function() {
1c1cc1d0 1150 if (!UI.rfb) return;
8e0f0088 1151
f0d9ab96 1152 var display = UI.rfb.get_display();
bbbf42bb 1153 var cur_clip = display.get_viewport();
f0d9ab96 1154 var new_clip = UI.getSetting('clip');
bbbf42bb 1155
f0d9ab96 1156 if (cur_clip !== new_clip) {
1157 display.set_viewport(new_clip);
bbbf42bb 1158 }
8e0f0088 1159
f0d9ab96 1160 var size = UI.screenSize();
fdedbafb 1161
f0d9ab96 1162 if (new_clip && size) {
1163 // When clipping is enabled, the screen is limited to
1164 // the size of the browser window.
1165 display.set_maxWidth(size.w);
1166 display.set_maxHeight(size.h);
fdedbafb 1167
f0d9ab96 1168 var screen = document.getElementById('noVNC_screen');
1169 var canvas = document.getElementById('noVNC_canvas');
fdedbafb 1170
f0d9ab96 1171 // Hide potential scrollbars that can skew the position
1172 screen.style.overflow = "hidden";
fdedbafb 1173
f0d9ab96 1174 // The x position marks the left margin of the canvas,
1175 // remove the margin from both sides to keep it centered.
1176 var new_w = size.w - (2 * Util.getPosition(canvas).x);
fdedbafb 1177
f0d9ab96 1178 screen.style.overflow = "visible";
1179
1180 display.viewportChangeSize(new_w, size.h);
1181 } else {
1182 // Disable max dimensions
1183 display.set_maxWidth(0);
1184 display.set_maxHeight(0);
1185 display.viewportChangeSize();
bbbf42bb
SR
1186 }
1187 },
1188
30bfff81 1189 // Handle special cases where clipping is forced on/off or locked
0bd2cbac 1190 enableDisableViewClip: function() {
ae510306 1191 var resizeSetting = document.getElementById('noVNC_setting_resize');
a6357e82 1192
f620259b 1193 if (UI.isSafari) {
1194 // Safari auto-hides the scrollbars which makes them
1195 // impossible to use in most cases
1196 UI.setViewClip(true);
ae510306 1197 document.getElementById('noVNC_setting_clip').disabled = true;
682fd02b 1198 } else if (resizeSetting.value === 'downscale' || resizeSetting.value === 'scale') {
a6357e82 1199 // Disable clipping if we are scaling
1200 UI.setViewClip(false);
ae510306 1201 document.getElementById('noVNC_setting_clip').disabled = true;
a6357e82 1202 } else if (document.msFullscreenElement) {
1203 // The browser is IE and we are in fullscreen mode.
1204 // - We need to force clipping while in fullscreen since
1205 // scrollbars doesn't work.
ca5c74ad 1206 UI.showStatus("Forcing clipping mode since scrollbars aren't supported by IE in fullscreen");
a6357e82 1207 UI.rememberedClipSetting = UI.getSetting('clip');
1208 UI.setViewClip(true);
ae510306 1209 document.getElementById('noVNC_setting_clip').disabled = true;
a6357e82 1210 } else if (document.body.msRequestFullscreen && UI.rememberedClip !== null) {
1211 // Restore view clip to what it was before fullscreen on IE
1212 UI.setViewClip(UI.rememberedClipSetting);
3bb12056
SM
1213 document.getElementById('noVNC_setting_clip').disabled =
1214 UI.connected || UI.isTouchDevice;
30bfff81 1215 } else {
3bb12056
SM
1216 document.getElementById('noVNC_setting_clip').disabled =
1217 UI.connected || UI.isTouchDevice;
30bfff81 1218 if (UI.isTouchDevice) {
a6357e82 1219 UI.setViewClip(true);
30bfff81 1220 }
1221 }
1222 },
1223
95dd6001 1224/* ------^-------
1225 * /CLIPPING
1226 * ==============
1227 * VIEWDRAG
1228 * ------v------*/
1229
f0d9ab96 1230 toggleViewDrag: function() {
58ded70d 1231 if (!UI.rfb) return;
bbbf42bb 1232
f0d9ab96 1233 var drag = UI.rfb.get_viewportDrag();
1234 UI.setViewDrag(!drag);
1235 },
1236
1237 // Set the view drag mode which moves the viewport on mouse drags
1238 setViewDrag: function(drag) {
1239 if (!UI.rfb) return;
1240
1241 UI.rfb.set_viewportDrag(drag);
1242
1243 UI.updateViewDrag();
1244 },
1245
1246 updateViewDrag: function() {
1247 var clipping = false;
bbbf42bb 1248
3bb12056 1249 if (!UI.connected) return;
6244e383 1250
e00698fe 1251 // Check if viewport drag is possible. It is only possible
1252 // if the remote display is clipping the client display.
6244e383 1253 if (UI.rfb.get_display().get_viewport() &&
fdedbafb 1254 UI.rfb.get_display().clippingDisplay()) {
f0d9ab96 1255 clipping = true;
1256 }
31ddaa1c 1257
f0d9ab96 1258 var viewDragButton = document.getElementById('noVNC_view_drag_button');
29a0e6a8 1259
6244e383
PO
1260 if (!clipping &&
1261 UI.rfb.get_viewportDrag()) {
1262 // The size of the remote display is the same or smaller
1263 // than the client display. Make sure viewport drag isn't
1264 // active when it can't be used.
1265 UI.rfb.set_viewportDrag(false);
1266 }
1267
1268 if (UI.rfb.get_viewportDrag()) {
1269 viewDragButton.classList.add("noVNC_selected");
31ddaa1c 1270 } else {
6244e383
PO
1271 viewDragButton.classList.remove("noVNC_selected");
1272 }
31ddaa1c 1273
6244e383
PO
1274 // Different behaviour for touch vs non-touch
1275 // The button is disabled instead of hidden on touch devices
1276 if (UI.isTouchDevice) {
1277 viewDragButton.classList.remove("noVNC_hidden");
1278
1279 if (clipping) {
1280 viewDragButton.disabled = false;
31ddaa1c 1281 } else {
6244e383 1282 viewDragButton.disabled = true;
31ddaa1c 1283 }
6244e383
PO
1284 } else {
1285 viewDragButton.disabled = false;
29a0e6a8 1286
6244e383 1287 if (clipping) {
e40978c7 1288 viewDragButton.classList.remove("noVNC_hidden");
f0d9ab96 1289 } else {
6244e383 1290 viewDragButton.classList.add("noVNC_hidden");
f0d9ab96 1291 }
f8b399d7 1292 }
1293 },
1294
95dd6001 1295/* ------^-------
1296 * /VIEWDRAG
1297 * ==============
1298 * KEYBOARD
1299 * ------v------*/
fdf21468 1300
4b30f9ce 1301 showVirtualKeyboard: function() {
1c1cc1d0 1302 if (!UI.isTouchDevice) return;
4b30f9ce
SM
1303
1304 var input = document.getElementById('noVNC_keyboardinput');
1305
1c1cc1d0 1306 if (document.activeElement == input) return;
4b30f9ce
SM
1307
1308 UI.keyboardVisible = true;
1309 document.getElementById('noVNC_keyboard_button')
1310 .classList.add("noVNC_selected");
1311 input.focus();
1312
1313 try {
1314 var l = input.value.length;
1315 // Move the caret to the end
1316 input.setSelectionRange(l, l);
1317 } catch (err) {} // setSelectionRange is undefined in Google Chrome
1318 },
1319
1320 hideVirtualKeyboard: function() {
1c1cc1d0 1321 if (!UI.isTouchDevice) return;
4b30f9ce
SM
1322
1323 var input = document.getElementById('noVNC_keyboardinput');
1324
1c1cc1d0 1325 if (document.activeElement != input) return;
4b30f9ce
SM
1326
1327 input.blur();
1328 },
1329
1330 toggleVirtualKeyboard: function () {
1331 if (UI.keyboardVisible) {
1332 UI.hideVirtualKeyboard();
1333 } else {
1334 UI.showVirtualKeyboard();
bbbf42bb
SR
1335 }
1336 },
1337
4b30f9ce 1338 onblurVirtualKeyboard: function() {
fdf21468 1339 //Weird bug in iOS if you change keyboardVisible
1340 //here it does not actually occur so next time
1341 //you click keyboard icon it doesnt work.
1342 UI.hideKeyboardTimeout = setTimeout(function() {
1343 UI.keyboardVisible = false;
4b30f9ce
SM
1344 document.getElementById('noVNC_keyboard_button')
1345 .classList.remove("noVNC_selected");
fdf21468 1346 },100);
1347 },
1348
bbbf42bb
SR
1349 keepKeyboard: function() {
1350 clearTimeout(UI.hideKeyboardTimeout);
1351 if(UI.keyboardVisible === true) {
4b30f9ce 1352 UI.showVirtualKeyboard();
bbbf42bb 1353 } else if(UI.keyboardVisible === false) {
4b30f9ce 1354 UI.hideVirtualKeyboard();
bbbf42bb
SR
1355 }
1356 },
1357
1358 keyboardinputReset: function() {
ae510306 1359 var kbi = document.getElementById('noVNC_keyboardinput');
bbbf42bb
SR
1360 kbi.value = new Array(UI.defaultKeyboardinputLen).join("_");
1361 UI.lastKeyboardinput = kbi.value;
1362 },
1363
1364 // When normal keyboard events are left uncought, use the input events from
1365 // the keyboardinput element instead and generate the corresponding key events.
1366 // This code is required since some browsers on Android are inconsistent in
1367 // sending keyCodes in the normal keyboard events when using on screen keyboards.
1368 keyInput: function(event) {
3b8ec46f 1369
58ded70d 1370 if (!UI.rfb) return;
3b8ec46f 1371
bbbf42bb 1372 var newValue = event.target.value;
1138bdd4 1373
1374 if (!UI.lastKeyboardinput) {
1375 UI.keyboardinputReset();
1376 }
cb3e4deb 1377 var oldValue = UI.lastKeyboardinput;
bbbf42bb
SR
1378
1379 var newLen;
1380 try {
1381 // Try to check caret position since whitespace at the end
1382 // will not be considered by value.length in some browsers
1383 newLen = Math.max(event.target.selectionStart, newValue.length);
1384 } catch (err) {
1385 // selectionStart is undefined in Google Chrome
1386 newLen = newValue.length;
1387 }
1388 var oldLen = oldValue.length;
1389
1390 var backspaces;
1391 var inputs = newLen - oldLen;
1392 if (inputs < 0) {
1393 backspaces = -inputs;
1394 } else {
1395 backspaces = 0;
1396 }
8e0f0088 1397
bbbf42bb
SR
1398 // Compare the old string with the new to account for
1399 // text-corrections or other input that modify existing text
1400 var i;
1401 for (i = 0; i < Math.min(oldLen, newLen); i++) {
1402 if (newValue.charAt(i) != oldValue.charAt(i)) {
1403 inputs = newLen - i;
1404 backspaces = oldLen - i;
1405 break;
1406 }
1407 }
1408
1409 // Send the key events
1410 for (i = 0; i < backspaces; i++) {
ae510306 1411 UI.rfb.sendKey(KeyTable.XK_BackSpace);
bbbf42bb
SR
1412 }
1413 for (i = newLen - inputs; i < newLen; i++) {
1414 UI.rfb.sendKey(newValue.charCodeAt(i));
1415 }
1416
1417 // Control the text content length in the keyboardinput element
1418 if (newLen > 2 * UI.defaultKeyboardinputLen) {
1419 UI.keyboardinputReset();
1420 } else if (newLen < 1) {
1421 // There always have to be some text in the keyboardinput
1422 // element with which backspace can interact.
1423 UI.keyboardinputReset();
1424 // This sometimes causes the keyboard to disappear for a second
1425 // but it is required for the android keyboard to recognize that
1426 // text has been added to the field
1427 event.target.blur();
1428 // This has to be ran outside of the input handler in order to work
67685d07 1429 setTimeout(UI.keepKeyboard, 0);
bbbf42bb
SR
1430 } else {
1431 UI.lastKeyboardinput = newValue;
1432 }
1433 },
1434
4b30f9ce
SM
1435/* ------^-------
1436 * /KEYBOARD
1437 * ==============
1438 * EXTRA KEYS
1439 * ------v------*/
1440
ed8cbe4e 1441 openExtraKeys: function() {
fb7c3b3b 1442 UI.closeAllPanels();
38323d4d 1443 UI.openControlbar();
fb7c3b3b 1444
ed8cbe4e
PO
1445 document.getElementById('noVNC_modifiers')
1446 .classList.add("noVNC_open");
1447 document.getElementById('noVNC_toggle_extra_keys_button')
1448 .classList.add("noVNC_selected");
1449 },
1450
1451 closeExtraKeys: function() {
1452 document.getElementById('noVNC_modifiers')
1453 .classList.remove("noVNC_open");
1454 document.getElementById('noVNC_toggle_extra_keys_button')
1455 .classList.remove("noVNC_selected");
1456 },
1457
cd611a53 1458 toggleExtraKeys: function() {
bbbf42bb 1459 UI.keepKeyboard();
ed8cbe4e
PO
1460 if(document.getElementById('noVNC_modifiers')
1461 .classList.contains("noVNC_open")) {
1462 UI.closeExtraKeys();
1463 } else {
1464 UI.openExtraKeys();
bbbf42bb
SR
1465 }
1466 },
1467
fdf21468 1468 sendEsc: function() {
1469 UI.keepKeyboard();
ae510306 1470 UI.rfb.sendKey(KeyTable.XK_Escape);
fdf21468 1471 },
1472
1473 sendTab: function() {
1474 UI.keepKeyboard();
ae510306 1475 UI.rfb.sendKey(KeyTable.XK_Tab);
fdf21468 1476 },
1477
bbbf42bb
SR
1478 toggleCtrl: function() {
1479 UI.keepKeyboard();
b0c6d3c6 1480 var btn = document.getElementById('noVNC_toggle_ctrl_button');
1481 if (btn.classList.contains("noVNC_selected")) {
ae510306 1482 UI.rfb.sendKey(KeyTable.XK_Control_L, false);
b0c6d3c6 1483 btn.classList.remove("noVNC_selected");
1484 } else {
1485 UI.rfb.sendKey(KeyTable.XK_Control_L, true);
1486 btn.classList.add("noVNC_selected");
bbbf42bb
SR
1487 }
1488 },
1489
1490 toggleAlt: function() {
1491 UI.keepKeyboard();
b0c6d3c6 1492 var btn = document.getElementById('noVNC_toggle_alt_button');
1493 if (btn.classList.contains("noVNC_selected")) {
ae510306 1494 UI.rfb.sendKey(KeyTable.XK_Alt_L, false);
b0c6d3c6 1495 btn.classList.remove("noVNC_selected");
1496 } else {
1497 UI.rfb.sendKey(KeyTable.XK_Alt_L, true);
1498 btn.classList.add("noVNC_selected");
bbbf42bb
SR
1499 }
1500 },
1501
fdf21468 1502 sendCtrlAltDel: function() {
ca25d2ae 1503 UI.keepKeyboard();
fdf21468 1504 UI.rfb.sendCtrlAltDel();
bbbf42bb
SR
1505 },
1506
95dd6001 1507/* ------^-------
4b30f9ce 1508 * /EXTRA KEYS
95dd6001 1509 * ==============
1510 * MISC
1511 * ------v------*/
1512
1513 setMouseButton: function(num) {
95dd6001 1514 if (UI.rfb) {
1515 UI.rfb.get_mouse().set_touchButton(num);
1516 }
1517
1518 var blist = [0, 1,2,4];
1519 for (var b = 0; b < blist.length; b++) {
ae510306 1520 var button = document.getElementById('noVNC_mouse_button' + blist[b]);
95dd6001 1521 if (blist[b] === num) {
e40978c7 1522 button.classList.remove("noVNC_hidden");
95dd6001 1523 } else {
e40978c7 1524 button.classList.add("noVNC_hidden");
95dd6001 1525 }
1526 }
1527 },
1528
1529 displayBlur: function() {
1530 if (!UI.rfb) return;
1531
1532 UI.rfb.get_keyboard().set_focused(false);
1533 UI.rfb.get_mouse().set_focused(false);
1534 },
1535
1536 displayFocus: function() {
1537 if (!UI.rfb) return;
1538
1539 UI.rfb.get_keyboard().set_focused(true);
1540 UI.rfb.get_mouse().set_focused(true);
bbbf42bb
SR
1541 },
1542
3bb12056
SM
1543 updateDesktopName: function(rfb, name) {
1544 UI.desktopName = name;
1545 // Display the desktop name in the document title
95dd6001 1546 document.title = name + " - noVNC";
bbbf42bb
SR
1547 },
1548
63bf2ba5
PO
1549 bell: function(rfb) {
1550 if (WebUtil.getConfigVar('bell', 'on') === 'on') {
1551 document.getElementById('noVNC_bell').play();
1552 }
1553 },
1554
bbbf42bb
SR
1555 //Helper to add options to dropdown.
1556 addOption: function(selectbox, text, value) {
1557 var optn = document.createElement("OPTION");
1558 optn.text = text;
1559 optn.value = value;
1560 selectbox.options.add(optn);
1561 },
1562
95dd6001 1563/* ------^-------
1564 * /MISC
1565 * ==============
1566 */
bbbf42bb 1567 };
ae510306
SR
1568
1569 /* [module] UI.load(); */
bbbf42bb 1570})();
ae510306
SR
1571
1572/* [module] export default UI; */