David Megginson writes:
> 
>   map<string,vector<FGBinding *> > _bindings;
> 
> p.s. Now why do I prefer coding in Java, again?

What I would like is a way to define menus something like

myMenu = (
     ('&File',
         ('New', (ALT, 'N'), self.OnFileNew),
         ('Open', (ALT, 'O'), self.OnFileOpen),
         ('Close', (ALT, 'C'), self.OnFileClose)),
     ('&Edit',
         ('Cut', (CTRL, 'X'), self.OnEditCut),
         ('Copy', (CTRL, 'C'), self.OnEditCopy),
         ('Paste', (CTRL, 'V'), self.OnEditPaste)))

It should be possible to come up with generator program
that can take the above, or something like it, that will write the
xml configuration files

anyone have any thoughts ?

Norman

_______________________________________________
Flightgear-devel mailing list
[EMAIL PROTECTED]
http://mail.flightgear.org/mailman/listinfo/flightgear-devel

Reply via email to