summaryrefslogtreecommitdiff
path: root/cursor.js
diff options
context:
space:
mode:
Diffstat (limited to 'cursor.js')
-rw-r--r--cursor.js18
1 files changed, 18 insertions, 0 deletions
diff --git a/cursor.js b/cursor.js
index 71e941d..296fbde 100644
--- a/cursor.js
+++ b/cursor.js
@@ -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");