Move QEMUExtendedKeyEvent encoding

The encoding list is ordered by number.
This commit is contained in:
Samuel Mannehed 2016-09-01 15:59:01 +02:00
parent 058be7851d
commit 25e4928fbb
1 changed files with 10 additions and 10 deletions

View File

@ -55,11 +55,11 @@ var RFB;
['DesktopSize', -223 ], ['DesktopSize', -223 ],
['last_rect', -224 ], ['last_rect', -224 ],
['Cursor', -239 ], ['Cursor', -239 ],
['QEMUExtendedKeyEvent', -258 ],
['ExtendedDesktopSize', -308 ], ['ExtendedDesktopSize', -308 ],
['xvp', -309 ], ['xvp', -309 ],
['Fence', -312 ], ['Fence', -312 ],
['ContinuousUpdates', -313 ], ['ContinuousUpdates', -313 ]
['QEMUExtendedKeyEvent', -258 ]
]; ];
this._encHandlers = {}; this._encHandlers = {};
@ -2306,14 +2306,6 @@ var RFB;
return true; return true;
}, },
JPEG_quality_lo: function () {
Util.Error("Server sent jpeg_quality pseudo-encoding");
},
compress_lo: function () {
Util.Error("Server sent compress level pseudo-encoding");
},
QEMUExtendedKeyEvent: function () { QEMUExtendedKeyEvent: function () {
this._FBU.rects--; this._FBU.rects--;
@ -2322,6 +2314,14 @@ var RFB;
this._qemuExtKeyEventSupported = true; this._qemuExtKeyEventSupported = true;
this._keyboard.setQEMUVNCKeyboardHandler(); this._keyboard.setQEMUVNCKeyboardHandler();
} }
},
JPEG_quality_lo: function () {
Util.Error("Server sent jpeg_quality pseudo-encoding");
},
compress_lo: function () {
Util.Error("Server sent compress level pseudo-encoding");
} }
}; };
})(); })();