| <!DOCTYPE html> |
| <html lang="en"> |
| <head> |
| <meta charset="utf-8"> |
| <title>JSDoc: Source: main/webapp/modules/Event.js</title> |
| |
| <script src="scripts/prettify/prettify.js"> </script> |
| <script src="scripts/prettify/lang-css.js"> </script> |
| <!--[if lt IE 9]> |
| <script src="//html5shiv.googlecode.com/svn/trunk/html5.js"></script> |
| <![endif]--> |
| <link type="text/css" rel="stylesheet" href="styles/prettify-tomorrow.css"> |
| <link type="text/css" rel="stylesheet" href="styles/jsdoc-default.css"> |
| </head> |
| |
| <body> |
| |
| <div id="main"> |
| |
| <h1 class="page-title">Source: main/webapp/modules/Event.js</h1> |
| |
| |
| |
| |
| |
| |
| <section> |
| <article> |
| <pre class="prettyprint source linenums"><code>/* |
| * 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. |
| */ |
| |
| var Guacamole = Guacamole || {}; |
| |
| /** |
| * An arbitrary event, emitted by a {@link Guacamole.Event.Target}. This object |
| * should normally serve as the base class for a different object that is more |
| * specific to the event type. |
| * |
| * @constructor |
| * @param {!string} type |
| * The unique name of this event type. |
| */ |
| Guacamole.Event = function Event(type) { |
| |
| /** |
| * The unique name of this event type. |
| * |
| * @type {!string} |
| */ |
| this.type = type; |
| |
| /** |
| * An arbitrary timestamp in milliseconds, indicating this event's |
| * position in time relative to other events. |
| * |
| * @type {!number} |
| */ |
| this.timestamp = new Date().getTime(); |
| |
| /** |
| * Returns the number of milliseconds elapsed since this event was created. |
| * |
| * @return {!number} |
| * The number of milliseconds elapsed since this event was created. |
| */ |
| this.getAge = function getAge() { |
| return new Date().getTime() - this.timestamp; |
| }; |
| |
| /** |
| * Requests that the legacy event handler associated with this event be |
| * invoked on the given event target. This function will be invoked |
| * automatically by implementations of {@link Guacamole.Event.Target} |
| * whenever {@link Guacamole.Event.Target#emit emit()} is invoked. |
| * <p> |
| * Older versions of Guacamole relied on single event handlers with the |
| * prefix "on", such as "onmousedown" or "onkeyup". If a Guacamole.Event |
| * implementation is replacing the event previously represented by one of |
| * these handlers, this function gives the implementation the opportunity |
| * to provide backward compatibility with the old handler. |
| * <p> |
| * Unless overridden, this function does nothing. |
| * |
| * @param {!Guacamole.Event.Target} eventTarget |
| * The {@link Guacamole.Event.Target} that emitted this event. |
| */ |
| this.invokeLegacyHandler = function invokeLegacyHandler(eventTarget) { |
| // Do nothing |
| }; |
| |
| }; |
| |
| /** |
| * A {@link Guacamole.Event} that may relate to one or more DOM events. |
| * Continued propagation and default behavior of the related DOM events may be |
| * prevented with {@link Guacamole.Event.DOMEvent#stopPropagation stopPropagation()} |
| * and {@link Guacamole.Event.DOMEvent#preventDefault preventDefault()} |
| * respectively. |
| * |
| * @constructor |
| * @augments Guacamole.Event |
| * |
| * @param {!string} type |
| * The unique name of this event type. |
| * |
| * @param {Event|Event[]} [events=[]] |
| * The DOM events that are related to this event, if any. Future calls to |
| * {@link Guacamole.Event.DOMEvent#preventDefault preventDefault()} and |
| * {@link Guacamole.Event.DOMEvent#stopPropagation stopPropagation()} will |
| * affect these events. |
| */ |
| Guacamole.Event.DOMEvent = function DOMEvent(type, events) { |
| |
| Guacamole.Event.call(this, type); |
| |
| // Default to empty array |
| events = events || []; |
| |
| // Automatically wrap non-array single Event in an array |
| if (!Array.isArray(events)) |
| events = [ events ]; |
| |
| /** |
| * Requests that the default behavior of related DOM events be prevented. |
| * Whether this request will be honored by the browser depends on the |
| * nature of those events and the timing of the request. |
| */ |
| this.preventDefault = function preventDefault() { |
| events.forEach(function applyPreventDefault(event) { |
| if (event.preventDefault) event.preventDefault(); |
| event.returnValue = false; |
| }); |
| }; |
| |
| /** |
| * Stops further propagation of related events through the DOM. Only events |
| * that are directly related to this event will be stopped. |
| */ |
| this.stopPropagation = function stopPropagation() { |
| events.forEach(function applyStopPropagation(event) { |
| event.stopPropagation(); |
| }); |
| }; |
| |
| }; |
| |
| /** |
| * Convenience function for cancelling all further processing of a given DOM |
| * event. Invoking this function prevents the default behavior of the event and |
| * stops any further propagation. |
| * |
| * @param {!Event} event |
| * The DOM event to cancel. |
| */ |
| Guacamole.Event.DOMEvent.cancelEvent = function cancelEvent(event) { |
| event.stopPropagation(); |
| if (event.preventDefault) event.preventDefault(); |
| event.returnValue = false; |
| }; |
| |
| /** |
| * An object which can dispatch {@link Guacamole.Event} objects. Listeners |
| * registered with {@link Guacamole.Event.Target#on on()} will automatically |
| * be invoked based on the type of {@link Guacamole.Event} passed to |
| * {@link Guacamole.Event.Target#dispatch dispatch()}. It is normally |
| * subclasses of Guacamole.Event.Target that will dispatch events, and usages |
| * of those subclasses that will catch dispatched events with on(). |
| * |
| * @constructor |
| */ |
| Guacamole.Event.Target = function Target() { |
| |
| /** |
| * A callback function which handles an event dispatched by an event |
| * target. |
| * |
| * @callback Guacamole.Event.Target~listener |
| * @param {!Guacamole.Event} event |
| * The event that was dispatched. |
| * |
| * @param {!Guacamole.Event.Target} target |
| * The object that dispatched the event. |
| */ |
| |
| /** |
| * All listeners (callback functions) registered for each event type passed |
| * to {@link Guacamole.Event.Targer#on on()}. |
| * |
| * @private |
| * @type {!Object.<string, Guacamole.Event.Target~listener[]>} |
| */ |
| var listeners = {}; |
| |
| /** |
| * Registers a listener for events having the given type, as dictated by |
| * the {@link Guacamole.Event#type type} property of {@link Guacamole.Event} |
| * provided to {@link Guacamole.Event.Target#dispatch dispatch()}. |
| * |
| * @param {!string} type |
| * The unique name of this event type. |
| * |
| * @param {!Guacamole.Event.Target~listener} listener |
| * The function to invoke when an event having the given type is |
| * dispatched. The {@link Guacamole.Event} object provided to |
| * {@link Guacamole.Event.Target#dispatch dispatch()} will be passed to |
| * this function, along with the dispatching Guacamole.Event.Target. |
| */ |
| this.on = function on(type, listener) { |
| |
| var relevantListeners = listeners[type]; |
| if (!relevantListeners) |
| listeners[type] = relevantListeners = []; |
| |
| relevantListeners.push(listener); |
| |
| }; |
| |
| /** |
| * Registers a listener for events having the given types, as dictated by |
| * the {@link Guacamole.Event#type type} property of {@link Guacamole.Event} |
| * provided to {@link Guacamole.Event.Target#dispatch dispatch()}. |
| * <p> |
| * Invoking this function is equivalent to manually invoking |
| * {@link Guacamole.Event.Target#on on()} for each of the provided types. |
| * |
| * @param {!string[]} types |
| * The unique names of the event types to associate with the given |
| * listener. |
| * |
| * @param {!Guacamole.Event.Target~listener} listener |
| * The function to invoke when an event having any of the given types |
| * is dispatched. The {@link Guacamole.Event} object provided to |
| * {@link Guacamole.Event.Target#dispatch dispatch()} will be passed to |
| * this function, along with the dispatching Guacamole.Event.Target. |
| */ |
| this.onEach = function onEach(types, listener) { |
| types.forEach(function addListener(type) { |
| this.on(type, listener); |
| }, this); |
| }; |
| |
| /** |
| * Dispatches the given event, invoking all event handlers registered with |
| * this Guacamole.Event.Target for that event's |
| * {@link Guacamole.Event#type type}. |
| * |
| * @param {!Guacamole.Event} event |
| * The event to dispatch. |
| */ |
| this.dispatch = function dispatch(event) { |
| |
| // Invoke any relevant legacy handler for the event |
| event.invokeLegacyHandler(this); |
| |
| // Invoke all registered listeners |
| var relevantListeners = listeners[event.type]; |
| if (relevantListeners) { |
| for (var i = 0; i < relevantListeners.length; i++) { |
| relevantListeners[i](event, this); |
| } |
| } |
| |
| }; |
| |
| /** |
| * Unregisters a listener that was previously registered with |
| * {@link Guacamole.Event.Target#on on()} or |
| * {@link Guacamole.Event.Target#onEach onEach()}. If no such listener was |
| * registered, this function has no effect. If multiple copies of the same |
| * listener were registered, the first listener still registered will be |
| * removed. |
| * |
| * @param {!string} type |
| * The unique name of the event type handled by the listener being |
| * removed. |
| * |
| * @param {!Guacamole.Event.Target~listener} listener |
| * The listener function previously provided to |
| * {@link Guacamole.Event.Target#on on()}or |
| * {@link Guacamole.Event.Target#onEach onEach()}. |
| * |
| * @returns {!boolean} |
| * true if the specified listener was removed, false otherwise. |
| */ |
| this.off = function off(type, listener) { |
| |
| var relevantListeners = listeners[type]; |
| if (!relevantListeners) |
| return false; |
| |
| for (var i = 0; i < relevantListeners.length; i++) { |
| if (relevantListeners[i] === listener) { |
| relevantListeners.splice(i, 1); |
| return true; |
| } |
| } |
| |
| return false; |
| |
| }; |
| |
| /** |
| * Unregisters listeners that were previously registered with |
| * {@link Guacamole.Event.Target#on on()} or |
| * {@link Guacamole.Event.Target#onEach onEach()}. If no such listeners |
| * were registered, this function has no effect. If multiple copies of the |
| * same listener were registered for the same event type, the first |
| * listener still registered will be removed. |
| * <p> |
| * Invoking this function is equivalent to manually invoking |
| * {@link Guacamole.Event.Target#off off()} for each of the provided types. |
| * |
| * @param {!string[]} types |
| * The unique names of the event types handled by the listeners being |
| * removed. |
| * |
| * @param {!Guacamole.Event.Target~listener} listener |
| * The listener function previously provided to |
| * {@link Guacamole.Event.Target#on on()} or |
| * {@link Guacamole.Event.Target#onEach onEach()}. |
| * |
| * @returns {!boolean} |
| * true if any of the specified listeners were removed, false |
| * otherwise. |
| */ |
| this.offEach = function offEach(types, listener) { |
| |
| var changed = false; |
| |
| types.forEach(function removeListener(type) { |
| changed |= this.off(type, listener); |
| }, this); |
| |
| return changed; |
| |
| }; |
| |
| }; |
| </code></pre> |
| </article> |
| </section> |
| |
| |
| |
| |
| </div> |
| |
| <nav> |
| <h2><a href="index.html">Home</a></h2><h3>Namespaces</h3><ul><li><a href="Guacamole.html">Guacamole</a></li><li><a href="Guacamole.AudioContextFactory.html">Guacamole.AudioContextFactory</a></li></ul><h3>Classes</h3><ul><li><a href="Guacamole.ArrayBufferReader.html">Guacamole.ArrayBufferReader</a></li><li><a href="Guacamole.ArrayBufferWriter.html">Guacamole.ArrayBufferWriter</a></li><li><a href="Guacamole.AudioPlayer.html">Guacamole.AudioPlayer</a></li><li><a href="Guacamole.AudioRecorder.html">Guacamole.AudioRecorder</a></li><li><a href="Guacamole.BlobReader.html">Guacamole.BlobReader</a></li><li><a href="Guacamole.BlobWriter.html">Guacamole.BlobWriter</a></li><li><a href="Guacamole.ChainedTunnel.html">Guacamole.ChainedTunnel</a></li><li><a href="Guacamole.Client.html">Guacamole.Client</a></li><li><a href="Guacamole.DataURIReader.html">Guacamole.DataURIReader</a></li><li><a href="Guacamole.Display.html">Guacamole.Display</a></li><li><a href="Guacamole.Display.Statistics.html">Guacamole.Display.Statistics</a></li><li><a href="Guacamole.Display.VisibleLayer.html">Guacamole.Display.VisibleLayer</a></li><li><a href="Guacamole.Event.html">Guacamole.Event</a></li><li><a href="Guacamole.Event.DOMEvent.html">Guacamole.Event.DOMEvent</a></li><li><a href="Guacamole.Event.Target.html">Guacamole.Event.Target</a></li><li><a href="Guacamole.HTTPTunnel.html">Guacamole.HTTPTunnel</a></li><li><a href="Guacamole.InputSink.html">Guacamole.InputSink</a></li><li><a href="Guacamole.InputStream.html">Guacamole.InputStream</a></li><li><a href="Guacamole.IntegerPool.html">Guacamole.IntegerPool</a></li><li><a href="Guacamole.JSONReader.html">Guacamole.JSONReader</a></li><li><a href="Guacamole.KeyEventInterpreter.html">Guacamole.KeyEventInterpreter</a></li><li><a href="Guacamole.KeyEventInterpreter.KeyDefinition.html">Guacamole.KeyEventInterpreter.KeyDefinition</a></li><li><a href="Guacamole.KeyEventInterpreter.KeyEvent.html">Guacamole.KeyEventInterpreter.KeyEvent</a></li><li><a href="Guacamole.Keyboard.html">Guacamole.Keyboard</a></li><li><a href="Guacamole.Keyboard.ModifierState.html">Guacamole.Keyboard.ModifierState</a></li><li><a href="Guacamole.Layer.html">Guacamole.Layer</a></li><li><a href="Guacamole.Layer.Pixel.html">Guacamole.Layer.Pixel</a></li><li><a href="Guacamole.Mouse.html">Guacamole.Mouse</a></li><li><a href="Guacamole.Mouse.Event.html">Guacamole.Mouse.Event</a></li><li><a href="Guacamole.Mouse.Event.Target.html">Guacamole.Mouse.Event.Target</a></li><li><a href="Guacamole.Mouse.State.html">Guacamole.Mouse.State</a></li><li><a href="Guacamole.Mouse.Touchpad.html">Guacamole.Mouse.Touchpad</a></li><li><a href="Guacamole.Mouse.Touchscreen.html">Guacamole.Mouse.Touchscreen</a></li><li><a href="Guacamole.Object.html">Guacamole.Object</a></li><li><a href="Guacamole.OnScreenKeyboard.html">Guacamole.OnScreenKeyboard</a></li><li><a href="Guacamole.OnScreenKeyboard.Key.html">Guacamole.OnScreenKeyboard.Key</a></li><li><a href="Guacamole.OnScreenKeyboard.Layout.html">Guacamole.OnScreenKeyboard.Layout</a></li><li><a href="Guacamole.OutputStream.html">Guacamole.OutputStream</a></li><li><a href="Guacamole.Parser.html">Guacamole.Parser</a></li><li><a href="Guacamole.Position.html">Guacamole.Position</a></li><li><a href="Guacamole.RawAudioFormat.html">Guacamole.RawAudioFormat</a></li><li><a href="Guacamole.RawAudioPlayer.html">Guacamole.RawAudioPlayer</a></li><li><a href="Guacamole.RawAudioRecorder.html">Guacamole.RawAudioRecorder</a></li><li><a href="Guacamole.SessionRecording.html">Guacamole.SessionRecording</a></li><li><a href="Guacamole.StaticHTTPTunnel.html">Guacamole.StaticHTTPTunnel</a></li><li><a href="Guacamole.Status.html">Guacamole.Status</a></li><li><a href="Guacamole.StringReader.html">Guacamole.StringReader</a></li><li><a href="Guacamole.StringWriter.html">Guacamole.StringWriter</a></li><li><a href="Guacamole.Touch.html">Guacamole.Touch</a></li><li><a href="Guacamole.Touch.Event.html">Guacamole.Touch.Event</a></li><li><a href="Guacamole.Touch.State.html">Guacamole.Touch.State</a></li><li><a href="Guacamole.Tunnel.html">Guacamole.Tunnel</a></li><li><a href="Guacamole.UTF8Parser.html">Guacamole.UTF8Parser</a></li><li><a href="Guacamole.VideoPlayer.html">Guacamole.VideoPlayer</a></li><li><a href="Guacamole.WebSocketTunnel.html">Guacamole.WebSocketTunnel</a></li></ul><h3>Events</h3><ul><li><a href="Guacamole.ArrayBufferReader.html#event:ondata">Guacamole.ArrayBufferReader#ondata</a></li><li><a href="Guacamole.ArrayBufferReader.html#event:onend">Guacamole.ArrayBufferReader#onend</a></li><li><a href="Guacamole.ArrayBufferWriter.html#event:onack">Guacamole.ArrayBufferWriter#onack</a></li><li><a href="Guacamole.AudioRecorder.html#event:onclose">Guacamole.AudioRecorder#onclose</a></li><li><a href="Guacamole.AudioRecorder.html#event:onerror">Guacamole.AudioRecorder#onerror</a></li><li><a href="Guacamole.BlobReader.html#event:onend">Guacamole.BlobReader#onend</a></li><li><a href="Guacamole.BlobReader.html#event:onprogress">Guacamole.BlobReader#onprogress</a></li><li><a href="Guacamole.BlobWriter.html#event:onack">Guacamole.BlobWriter#onack</a></li><li><a href="Guacamole.BlobWriter.html#event:oncomplete">Guacamole.BlobWriter#oncomplete</a></li><li><a href="Guacamole.BlobWriter.html#event:onerror">Guacamole.BlobWriter#onerror</a></li><li><a href="Guacamole.BlobWriter.html#event:onprogress">Guacamole.BlobWriter#onprogress</a></li><li><a href="Guacamole.ChainedTunnel.html#event:onerror">Guacamole.ChainedTunnel#onerror</a></li><li><a href="Guacamole.ChainedTunnel.html#event:oninstruction">Guacamole.ChainedTunnel#oninstruction</a></li><li><a href="Guacamole.ChainedTunnel.html#event:onstatechange">Guacamole.ChainedTunnel#onstatechange</a></li><li><a href="Guacamole.ChainedTunnel.html#event:onuuid">Guacamole.ChainedTunnel#onuuid</a></li><li><a href="Guacamole.Client.html#event:onargv">Guacamole.Client#onargv</a></li><li><a href="Guacamole.Client.html#event:onaudio">Guacamole.Client#onaudio</a></li><li><a href="Guacamole.Client.html#event:onclipboard">Guacamole.Client#onclipboard</a></li><li><a href="Guacamole.Client.html#event:onerror">Guacamole.Client#onerror</a></li><li><a href="Guacamole.Client.html#event:onfile">Guacamole.Client#onfile</a></li><li><a href="Guacamole.Client.html#event:onfilesystem">Guacamole.Client#onfilesystem</a></li><li><a href="Guacamole.Client.html#event:onjoin">Guacamole.Client#onjoin</a></li><li><a href="Guacamole.Client.html#event:onleave">Guacamole.Client#onleave</a></li><li><a href="Guacamole.Client.html#event:onmsg">Guacamole.Client#onmsg</a></li><li><a href="Guacamole.Client.html#event:onmultitouch">Guacamole.Client#onmultitouch</a></li><li><a href="Guacamole.Client.html#event:onname">Guacamole.Client#onname</a></li><li><a href="Guacamole.Client.html#event:onpipe">Guacamole.Client#onpipe</a></li><li><a href="Guacamole.Client.html#event:onrequired">Guacamole.Client#onrequired</a></li><li><a href="Guacamole.Client.html#event:onstatechange">Guacamole.Client#onstatechange</a></li><li><a href="Guacamole.Client.html#event:onsync">Guacamole.Client#onsync</a></li><li><a href="Guacamole.Client.html#event:onvideo">Guacamole.Client#onvideo</a></li><li><a href="Guacamole.DataURIReader.html#event:onend">Guacamole.DataURIReader#onend</a></li><li><a href="Guacamole.Display.html#event:oncursor">Guacamole.Display#oncursor</a></li><li><a href="Guacamole.Display.html#event:onresize">Guacamole.Display#onresize</a></li><li><a href="Guacamole.Display.html#event:onstatistics">Guacamole.Display#onstatistics</a></li><li><a href="Guacamole.HTTPTunnel.html#event:onerror">Guacamole.HTTPTunnel#onerror</a></li><li><a href="Guacamole.HTTPTunnel.html#event:oninstruction">Guacamole.HTTPTunnel#oninstruction</a></li><li><a href="Guacamole.HTTPTunnel.html#event:onstatechange">Guacamole.HTTPTunnel#onstatechange</a></li><li><a href="Guacamole.HTTPTunnel.html#event:onuuid">Guacamole.HTTPTunnel#onuuid</a></li><li><a href="Guacamole.InputStream.html#event:onblob">Guacamole.InputStream#onblob</a></li><li><a href="Guacamole.InputStream.html#event:onend">Guacamole.InputStream#onend</a></li><li><a href="Guacamole.JSONReader.html#event:onend">Guacamole.JSONReader#onend</a></li><li><a href="Guacamole.JSONReader.html#event:onprogress">Guacamole.JSONReader#onprogress</a></li><li><a href="Guacamole.Keyboard.html#event:onkeydown">Guacamole.Keyboard#onkeydown</a></li><li><a href="Guacamole.Keyboard.html#event:onkeyup">Guacamole.Keyboard#onkeyup</a></li><li><a href="Guacamole.Mouse.html#event:mousedown">Guacamole.Mouse#mousedown</a></li><li><a href="Guacamole.Mouse.html#event:mousemove">Guacamole.Mouse#mousemove</a></li><li><a href="Guacamole.Mouse.html#event:mouseout">Guacamole.Mouse#mouseout</a></li><li><a href="Guacamole.Mouse.html#event:mouseup">Guacamole.Mouse#mouseup</a></li><li><a href="Guacamole.Mouse.Event.Target.html#event:mousedown">Guacamole.Mouse.Event.Target#mousedown</a></li><li><a href="Guacamole.Mouse.Event.Target.html#event:mousemove">Guacamole.Mouse.Event.Target#mousemove</a></li><li><a href="Guacamole.Mouse.Event.Target.html#event:mouseout">Guacamole.Mouse.Event.Target#mouseout</a></li><li><a href="Guacamole.Mouse.Event.Target.html#event:mouseup">Guacamole.Mouse.Event.Target#mouseup</a></li><li><a href="Guacamole.Mouse.Touchpad.html#event:mousedown">Guacamole.Mouse.Touchpad#mousedown</a></li><li><a href="Guacamole.Mouse.Touchpad.html#event:mousemove">Guacamole.Mouse.Touchpad#mousemove</a></li><li><a href="Guacamole.Mouse.Touchpad.html#event:mouseup">Guacamole.Mouse.Touchpad#mouseup</a></li><li><a href="Guacamole.Mouse.Touchscreen.html#event:mousedown">Guacamole.Mouse.Touchscreen#mousedown</a></li><li><a href="Guacamole.Mouse.Touchscreen.html#event:mousemove">Guacamole.Mouse.Touchscreen#mousemove</a></li><li><a href="Guacamole.Mouse.Touchscreen.html#event:mouseup">Guacamole.Mouse.Touchscreen#mouseup</a></li><li><a href="Guacamole.Object.html#event:onbody">Guacamole.Object#onbody</a></li><li><a href="Guacamole.Object.html#event:onundefine">Guacamole.Object#onundefine</a></li><li><a href="Guacamole.OnScreenKeyboard.html#event:onkeydown">Guacamole.OnScreenKeyboard#onkeydown</a></li><li><a href="Guacamole.OnScreenKeyboard.html#event:onkeyup">Guacamole.OnScreenKeyboard#onkeyup</a></li><li><a href="Guacamole.OutputStream.html#event:onack">Guacamole.OutputStream#onack</a></li><li><a href="Guacamole.Parser.html#event:oninstruction">Guacamole.Parser#oninstruction</a></li><li><a href="Guacamole.RawAudioRecorder.html#event:onclose">Guacamole.RawAudioRecorder#onclose</a></li><li><a href="Guacamole.RawAudioRecorder.html#event:onerror">Guacamole.RawAudioRecorder#onerror</a></li><li><a href="Guacamole.SessionRecording.html#event:onabort">Guacamole.SessionRecording#onabort</a></li><li><a href="Guacamole.SessionRecording.html#event:onerror">Guacamole.SessionRecording#onerror</a></li><li><a href="Guacamole.SessionRecording.html#event:onkeyevents">Guacamole.SessionRecording#onkeyevents</a></li><li><a href="Guacamole.SessionRecording.html#event:onload">Guacamole.SessionRecording#onload</a></li><li><a href="Guacamole.SessionRecording.html#event:onpause">Guacamole.SessionRecording#onpause</a></li><li><a href="Guacamole.SessionRecording.html#event:onplay">Guacamole.SessionRecording#onplay</a></li><li><a href="Guacamole.SessionRecording.html#event:onprogress">Guacamole.SessionRecording#onprogress</a></li><li><a href="Guacamole.SessionRecording.html#event:onseek">Guacamole.SessionRecording#onseek</a></li><li><a href="Guacamole.SessionRecording._PlaybackTunnel.html#event:onerror">Guacamole.SessionRecording._PlaybackTunnel#onerror</a></li><li><a href="Guacamole.SessionRecording._PlaybackTunnel.html#event:oninstruction">Guacamole.SessionRecording._PlaybackTunnel#oninstruction</a></li><li><a href="Guacamole.SessionRecording._PlaybackTunnel.html#event:onstatechange">Guacamole.SessionRecording._PlaybackTunnel#onstatechange</a></li><li><a href="Guacamole.SessionRecording._PlaybackTunnel.html#event:onuuid">Guacamole.SessionRecording._PlaybackTunnel#onuuid</a></li><li><a href="Guacamole.StaticHTTPTunnel.html#event:onerror">Guacamole.StaticHTTPTunnel#onerror</a></li><li><a href="Guacamole.StaticHTTPTunnel.html#event:oninstruction">Guacamole.StaticHTTPTunnel#oninstruction</a></li><li><a href="Guacamole.StaticHTTPTunnel.html#event:onstatechange">Guacamole.StaticHTTPTunnel#onstatechange</a></li><li><a href="Guacamole.StaticHTTPTunnel.html#event:onuuid">Guacamole.StaticHTTPTunnel#onuuid</a></li><li><a href="Guacamole.StringReader.html#event:onend">Guacamole.StringReader#onend</a></li><li><a href="Guacamole.StringReader.html#event:ontext">Guacamole.StringReader#ontext</a></li><li><a href="Guacamole.StringWriter.html#event:onack">Guacamole.StringWriter#onack</a></li><li><a href="Guacamole.Touch.html#event:touchend">Guacamole.Touch#touchend</a></li><li><a href="Guacamole.Touch.html#event:touchmove">Guacamole.Touch#touchmove</a></li><li><a href="Guacamole.Touch.html#event:touchstart">Guacamole.Touch#touchstart</a></li><li><a href="Guacamole.Tunnel.html#event:onerror">Guacamole.Tunnel#onerror</a></li><li><a href="Guacamole.Tunnel.html#event:oninstruction">Guacamole.Tunnel#oninstruction</a></li><li><a href="Guacamole.Tunnel.html#event:onstatechange">Guacamole.Tunnel#onstatechange</a></li><li><a href="Guacamole.Tunnel.html#event:onuuid">Guacamole.Tunnel#onuuid</a></li><li><a href="Guacamole.WebSocketTunnel.html#event:onerror">Guacamole.WebSocketTunnel#onerror</a></li><li><a href="Guacamole.WebSocketTunnel.html#event:oninstruction">Guacamole.WebSocketTunnel#oninstruction</a></li><li><a href="Guacamole.WebSocketTunnel.html#event:onstatechange">Guacamole.WebSocketTunnel#onstatechange</a></li><li><a href="Guacamole.WebSocketTunnel.html#event:onuuid">Guacamole.WebSocketTunnel#onuuid</a></li></ul> |
| </nav> |
| |
| <br class="clear"> |
| |
| <footer> |
| Documentation generated by <a href="https://github.com/jsdoc/jsdoc">JSDoc 4.0.2</a> on Mon Jun 16 2025 15:53:22 GMT-0700 (Pacific Daylight Time) |
| </footer> |
| |
| <script> prettyPrint(); </script> |
| <script src="scripts/linenumber.js"> </script> |
| </body> |
| </html> |