...
> I am using swing on Windows Platform. On other windows-GUIs, radio
> buttons can be selected by the arrow or cursor keys.
...
> I am pretty sure, that can be done with swing, too.
I thought it would be a 'look-and-feel' thing, but I just
checked my own software project and can report the
following..
Metal LnF and Windows LnF behave the same way
(in this regard) - you need to 'tab' vertically between
choices, but you _can_ traverse the buttons in a radio
group (or rows of buttons, for that matter)
_horizontally_ using either LnF.
I don't think Sun quite got the Windows LnF
right here.
(That is the limit of my expertise on LnF,
though a more experienced GUI person might
be able to confirm whether your problem
might be solved by altering an exisiting LnF)
--
Andrew Thompson
* http://www.PhySci.org/ PhySci software suite
* http://www.1point1C.org/ 1.1C - Superluminal!
* http://www.AThompson.info/andrew/ personal site
Goetz Markgraf - 18 Nov 2003 15:59 GMT
> ...
> > I am using swing on Windows Platform. On other windows-GUIs, radio
[quoted text clipped - 19 lines]
> be able to confirm whether your problem
> might be solved by altering an exisiting LnF)
I did not find out about the LnF-Stuff, but I solved it with adding an
inputMap/actionMap pair to the surrounding Panel.
Thanx everybody