[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: [Qemu-devel] [PATCH 2/3] qmp: qmp_send_key(): accept key codes in he
From: |
Eric Blake |
Subject: |
Re: [Qemu-devel] [PATCH 2/3] qmp: qmp_send_key(): accept key codes in hex |
Date: |
Fri, 21 Sep 2012 12:18:36 -0600 |
User-agent: |
Mozilla/5.0 (X11; Linux x86_64; rv:15.0) Gecko/20120828 Thunderbird/15.0 |
On 09/21/2012 11:26 AM, Luiz Capitulino wrote:
> On Fri, 21 Sep 2012 13:42:34 -0300
> Luiz Capitulino <address@hidden> wrote:
>
>>>> +{ 'union': 'KeyValue',
>>>> + 'data': {
>>>> + 'hex': 'int',
+ 'qcode': 'QKeyCode',
>>>
>>> Don't you find it a bit odd to name this 'hex', even though it works to
>>> do 'hex':32 as a synonym for 'hex':0x20? Should we instead name it
>>> 'value', since we don't care in what base the value was represented,
>>> only that JSON was able to decode the base into a value?
>>
>> Yes, that's a good point. I'll respin.
>
> Actually, this also has drawbacks:
>
> keylist->value->kind = KEY_VALUE_KIND_VALUE;
> keylist->value->value = value;
> Any better ideas?
Maybe s/hex/number/, as in:
JSON: 'number':0x20
C code: keylist->value->number = number;
that is, you are passing the value either as a keycode name, or as a number.
--
Eric Blake address@hidden +1-919-301-3266
Libvirt virtualization library http://libvirt.org
signature.asc
Description: OpenPGP digital signature
[Qemu-devel] [PATCH 3/3] input: index_from_key(): drop unused code, Luiz Capitulino, 2012/09/21
[Qemu-devel] [PATCH 1/3] input: qmp_send_key(): simplify, Luiz Capitulino, 2012/09/21
Re: [Qemu-devel] [PATCH v2 0/3]: qmp: send-key: accept key codes in hex, Eric Blake, 2012/09/21