Skip to main content



      Home
Home » Eclipse Projects » Standard Widget Toolkit (SWT) » FilteredLists and accessibility
FilteredLists and accessibility [message #482824] Fri, 28 August 2009 05:01
Eclipse UserFriend
I am trying to get the Label preceding a FilteredList to be read out by
the JAWS screen reader when the list box is given focus by tabbing to it.
The default behaviour is for JAWS to read out the first item in the list.

I tried to override that behaviour by adding an AccessibleControlListener
to the FilteredList and provide an AccessibleControlAdapter and override
the getRole method to specifiy that this custom control should behave like
a Text widget like this:

@Override
public void getRole(AccessibleControlEvent e) {
e.detail = ACC.ROLE_TEXT;
}

Am I doing something wrong or is this a bug?
Previous Topic:How to show horizontal scrollbar in table without using TableColumn.pack()
Next Topic:showing vertical and horizontal bar in editor
Goto Forum:
  


Current Time: Thu Jul 03 06:47:41 EDT 2025

Powered by FUDForum. Page generated in 0.24650 seconds
.:: Contact :: Home ::.

Powered by: FUDforum 3.0.2.
Copyright ©2001-2010 FUDforum Bulletin Board Software

Back to the top