diff mbox

How to make changes to qapi-types.h

Message ID 20160301025154.GH15213@ad.usersys.redhat.com
State New
Headers show

Commit Message

Fam Zheng March 1, 2016, 2:51 a.m. UTC
On Mon, 02/29 21:38, Programmingkid wrote:
> 
> On Feb 29, 2016, at 8:59 PM, Fam Zheng wrote:
> 
> > On Mon, 02/29 20:26, Programmingkid wrote:
> >> I need to add a variable to the QKeyCode enum in the file qapi-types.h. This
> >> file is auto-generated so using traditional means to create a patch is not
> >> possible. Would anyone know how I can add to this file?
> > 
> > The file to look at is qapi-schema.json. The generator is also documented in
> > docs/qapi-code-gen.txt.
> 
> Thank you very much for your help, but the information in the files you sent
> did not seem to help. Maybe I should say exactly what I'm trying to do. 
> 
> In the file qapi-types.h, there is an enum called QKeyCode. I want to add
> this to the enum:
> 
>  Q_KEY_CODE_KP_EQUALS = 125,
> 
> Would anyone know how to do this so I can submit this change as a patch?

You missed what I was trying to point out.

Comments

Programmingkid March 1, 2016, 10:13 p.m. UTC | #1
On Feb 29, 2016, at 9:51 PM, Fam Zheng wrote:

> On Mon, 02/29 21:38, Programmingkid wrote:
>> 
>> On Feb 29, 2016, at 8:59 PM, Fam Zheng wrote:
>> 
>>> On Mon, 02/29 20:26, Programmingkid wrote:
>>>> I need to add a variable to the QKeyCode enum in the file qapi-types.h. This
>>>> file is auto-generated so using traditional means to create a patch is not
>>>> possible. Would anyone know how I can add to this file?
>>> 
>>> The file to look at is qapi-schema.json. The generator is also documented in
>>> docs/qapi-code-gen.txt.
>> 
>> Thank you very much for your help, but the information in the files you sent
>> did not seem to help. Maybe I should say exactly what I'm trying to do. 
>> 
>> In the file qapi-types.h, there is an enum called QKeyCode. I want to add
>> this to the enum:
>> 
>> Q_KEY_CODE_KP_EQUALS = 125,
>> 
>> Would anyone know how to do this so I can submit this change as a patch?
> 
> You missed what I was trying to point out.
> 
> diff --git a/qapi-schema.json b/qapi-schema.json
> index 7b8f2a1..ad50b06 100644
> --- a/qapi-schema.json
> +++ b/qapi-schema.json
> @@ -3096,7 +3096,7 @@
>             'left', 'up', 'down', 'right', 'insert', 'delete', 'stop', 'again',
>             'props', 'undo', 'front', 'copy', 'open', 'paste', 'find', 'cut',
>             'lf', 'help', 'meta_l', 'meta_r', 'compose', 'pause', 'ro',
> -            'kp_comma' ] }
> +            'kp_comma', 'kp_equals' ] }
> 
> ##
> # @KeyValue
> 

Thank you very much for all your help.
diff mbox

Patch

diff --git a/qapi-schema.json b/qapi-schema.json
index 7b8f2a1..ad50b06 100644
--- a/qapi-schema.json
+++ b/qapi-schema.json
@@ -3096,7 +3096,7 @@ 
             'left', 'up', 'down', 'right', 'insert', 'delete', 'stop', 'again',
             'props', 'undo', 'front', 'copy', 'open', 'paste', 'find', 'cut',
             'lf', 'help', 'meta_l', 'meta_r', 'compose', 'pause', 'ro',
-            'kp_comma' ] }
+            'kp_comma', 'kp_equals' ] }
 
 ##
 # @KeyValue