Skip to main content


Eclipse Community Forums
Forum Search:

Search      Help    Register    Login    Home
Home » Eclipse Projects » Standard Widget Toolkit (SWT) » FilteredLists and accessibility
FilteredLists and accessibility [message #482824] Fri, 28 August 2009 09:01
Barry Dow is currently offline Barry DowFriend
Messages: 5
Registered: July 2009
Junior Member
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: Fri Apr 19 09:13:08 GMT 2024

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

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

Back to the top