()
| 484 | } |
| 485 | |
| 486 | sendCtrlAltDel() { |
| 487 | if (this._rfbConnectionState !== 'connected' || this._viewOnly) { return; } |
| 488 | Log.Info("Sending Ctrl-Alt-Del"); |
| 489 | |
| 490 | this.sendKey(KeyTable.XK_Control_L, "ControlLeft", true); |
| 491 | this.sendKey(KeyTable.XK_Alt_L, "AltLeft", true); |
| 492 | this.sendKey(KeyTable.XK_Delete, "Delete", true); |
| 493 | this.sendKey(KeyTable.XK_Delete, "Delete", false); |
| 494 | this.sendKey(KeyTable.XK_Alt_L, "AltLeft", false); |
| 495 | this.sendKey(KeyTable.XK_Control_L, "ControlLeft", false); |
| 496 | } |
| 497 | |
| 498 | sendCtrlEsc() { |
| 499 | if (this._rfb_connection_state !== 'connected' || this._viewOnly) { return; } |
no test coverage detected