Re: [Spice-HTML5][PATCH 1/2] added sendCtrlAltDel method.

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

 



On 03/03/2013 09:25 AM, Amos Benari wrote:

Hi Amos,

Thanks a lot for your work on adding spice support in TheForeman !
http://theforeman.org/ (and thanks Ohad too)

As for this patch, please see one comment inline.

----- Forwarded Message -----
From: "Amos Benari"<abenari@xxxxxxxxxx>
To: spice-devel@xxxxxxxxxxxxxxxxxxxxx
Cc: "Amos Benari"<abenari@xxxxxxxxxx>
Sent: Sunday, March 3, 2013 1:55:47 AM
Subject: [PATCH 1/2] added sendCtrlAltDel method.

---
  inputs.js |   20 ++++++++++++++++++++
  1 files changed, 20 insertions(+), 0 deletions(-)

diff --git a/inputs.js b/inputs.js
index 4d3b28f..5f64749 100644
--- a/inputs.js
+++ b/inputs.js
@@ -175,6 +175,26 @@ function handle_keyup(e)
      e.preventDefault();
  }

+function sendCtrlAltDel()
+{
+  if (sc&&  sc.inputs&&  sc.inputs.state === "ready"){
+    var key = new SpiceMsgcKeyDown();
+    var msg = new SpiceMiniData();
+
+    key.code = KEY_LCtrl;
+    msg.build_msg(SPICE_MSGC_INPUTS_KEY_DOWN, key);
+    sc.inputs.send_msg(msg);
+
+    key.code = KEY_Alt;
+    msg.build_msg(SPICE_MSGC_INPUTS_KEY_DOWN, key);
+    sc.inputs.send_msg(msg);
+
+    key.code = KEY_KP_Decimal;
+    msg.build_msg(SPICE_MSGC_INPUTS_KEY_DOWN, key);
+    sc.inputs.send_msg(msg);
+  }

Don't you need to also send KEY_UP messages ?

Thanks,
    Uri.
_______________________________________________
Spice-devel mailing list
Spice-devel@xxxxxxxxxxxxxxxxxxxxx
http://lists.freedesktop.org/mailman/listinfo/spice-devel


[Index of Archives]     [Linux ARM Kernel]     [Linux ARM]     [Linux Omap]     [Fedora ARM]     [IETF Annouce]     [Security]     [Bugtraq]     [Linux]     [Linux OMAP]     [Linux MIPS]     [ECOS]     [Asterisk Internet PBX]     [Linux API]     [Monitors]