diff options
Diffstat (limited to 'cursor.js')
-rw-r--r-- | cursor.js | 18 |
1 files changed, 18 insertions, 0 deletions
@@ -73,6 +73,12 @@ SpiceCursorConn.prototype.process_channel_message = function(msg) return true; } + if (msg.type == SPICE_MSG_CURSOR_MOVE) + { + this.known_unimplemented(msg.type, "Cursor Move"); + return true; + } + if (msg.type == SPICE_MSG_CURSOR_HIDE) { DEBUG > 1 && console.log("SpiceMsgCursorHide"); @@ -80,6 +86,12 @@ SpiceCursorConn.prototype.process_channel_message = function(msg) return true; } + if (msg.type == SPICE_MSG_CURSOR_TRAIL) + { + this.known_unimplemented(msg.type, "Cursor Trail"); + return true; + } + if (msg.type == SPICE_MSG_CURSOR_RESET) { DEBUG > 1 && console.log("SpiceMsgCursorReset"); @@ -87,6 +99,12 @@ SpiceCursorConn.prototype.process_channel_message = function(msg) return true; } + if (msg.type == SPICE_MSG_CURSOR_INVAL_ONE) + { + this.known_unimplemented(msg.type, "Cursor Inval One"); + return true; + } + if (msg.type == SPICE_MSG_CURSOR_INVAL_ALL) { DEBUG > 1 && console.log("SpiceMsgCursorInvalAll"); |