9fans - fans of the OS Plan 9 from Bell Labs
 help / color / mirror / Atom feed
From: Philippe Anel <xigh@free.fr>
To: 9fans@cse.psu.edu
Subject: [9fans] Special keys ...
Date: Sat, 28 Jan 2006 13:01:10 +0100	[thread overview]
Message-ID: <43DB5D06.4010708@free.fr> (raw)

Hello,

    In vncv source, it seems that some control key events are forwarded
to the server (see /sys/src/cmd/vnc/kbdv.c):

----------------------
        switch(r){
        case Kalt:
            alt = !alt;
            keyevent(v, Xalt, alt);
            break;
        case Kctl:
            ctl = !ctl;
            keyevent(v, Xctl, ctl);
            break;
        case Kshift:
            shift = !shift;
            keyevent(v, Xshift, shift);
            break;
----------------------

However, looking at /sys/src/9/pc/kbd.c, those key events are not sent 
through /dev/cons.
(Moreover values assigned to those key differ from those in keyboard.h).

I think we can't send those key event through /dev/cons without many 
changes to programs.

Therefore I'd like to:
1) add a control messages to /dev/consctl (ctlkeyon/ctlkeyoff) in 
port/devcons.c
2) modify pc/kbd.c to send KshiftDown, KshiftUp, ... when ctlkeyon has 
been sent to /dev/consctl
3) modify rio to handle those control messages (and to redirect read 
control key events only to the
    right windows).

Do you think it is the right way to patch vncv ?

    Philippe,



             reply	other threads:[~2006-01-28 12:01 UTC|newest]

Thread overview: 4+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2006-01-28 12:01 Philippe Anel [this message]
2006-01-28 14:12 ` Russ Cox
2006-01-28 15:01   ` Philippe Anel
2006-01-28 15:33     ` Russ Cox

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=43DB5D06.4010708@free.fr \
    --to=xigh@free.fr \
    --cc=9fans@cse.psu.edu \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).