Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
Re: [platform-swt-dev] SWT_AWT and Accessibility


It still makes sense to have a test case and bug report to track this issue and confirm that it does not work.



Richard Schwerdtfeger <schwer@xxxxxxxxxx>
Sent by: platform-swt-dev-bounces@xxxxxxxxxxx

05/09/2007 04:41 PM

Please respond to
"Eclipse Platform SWT component developers list."        <platform-swt-dev@xxxxxxxxxxx>

To
"Eclipse Platform SWT component developers list." <platform-swt-dev@xxxxxxxxxxx>
cc
"Eclipse Platform SWT component developers list." <platform-swt-dev@xxxxxxxxxxx>, platform-swt-dev-bounces@xxxxxxxxxxx
Subject
Re: [platform-swt-dev] SWT_AWT and Accessibility





Swing applications, currently, interoperate with assistive technologies through the Java Acces Bridge. Assistive technologies access Swing applications through a special Java access bridge dll provided by Sun. This is not how assistive technologies access Eclipse applications. Eclipse applications interoperate with assistive technologies, on Windows, using MSAA, offscreen modeling (screen scraping), and propietary APIs used by ActiveX plug-ins. Even if you installed the bridge, this would be problematic for ATs as they would not be able to handle the mix between the access bridge dll and MSAA.

We have developed an accessibility API extension to MSAA, called IAccessible2 which when combined with MSAA will give you the same level of rich interoperability as Java. We hope to implement support for it in Eclipse along with Linux accessibility support. Sun would also need to do a mapping from the Java Accessibility API ( referred to by Jamie) and MSAA/IAccessible2. This would provide the consistent framework you desire. Sun has not made that investment at this time. IAccessible2 should be fully supported by JAWS and Window-Eyes in their next releases.

So, it is recommended that Swing not be used in Eclipse applications if you would like them to be accessible. If possible, we recommend using an existing SWT control.

Rich


Rich Schwerdtfeger
Distinguished Engineer, SWG Accessibility Architect/Strategist
Chair, IBM Accessibility Architecture Review Board
blog:
http://www.ibm.com/developerworks/blogs/page/schwer
Inactive hide details for Steve Northover <Steve_Northover@xxxxxxxxxx>Steve Northover <Steve_Northover@xxxxxxxxxx>

Steve Northover <Steve_Northover@xxxxxxxxxx>
Sent by: platform-swt-dev-bounces@xxxxxxxxxxx

05/09/2007 03:18 PM

Please respond to
"Eclipse Platform SWT component developers list." <platform-swt-dev@xxxxxxxxxxx>



To

"Eclipse Platform SWT component developers list." <platform-swt-dev@xxxxxxxxxxx>

cc

Subject

Re: [platform-swt-dev] SWT_AWT and Accessibility





Can you confirm that it is working properly running a small Swing only example? If so, please create a bug report with a stand alone snippet.


jamie.guillemette@xxxxxx
Sent by: platform-swt-dev-bounces@xxxxxxxxxxx

05/09/2007 04:10 PM

Please respond to
"Eclipse Platform SWT component developers list." <platform-swt-dev@xxxxxxxxxxx>


To
platform-swt-dev@xxxxxxxxxxx
cc
Subject
[platform-swt-dev] SWT_AWT and Accessibility








Hi All,

Im trying to find out if the SWT_AWT bridge allows accessibility data to
flow from Swing components back to SWT and out to Accessibility
applications.

I have an eclipse application that uses swing for many views. The SWT_AWT
bridge is used to allow the swing panel to be embedded in the views.

Our client relies on Jaws a screen reader application.

In Swing we would call the method getAcessibleContext().setName()  or
setDescription()  on any swing component. This provides the details the
screen reader needs
to have to work properly.

So far my intial attempts at making this work within our eclipse plugin
have failed. Our SWT components / frames work perfectly.

Does anyone know :

a) is accessiblity supported in swing panels via SWT_AWT?

b) if not is there a best practice work around?



Thanks,
Jamie M. Guillemette
IT Solutions Developer
TD Enterprise Technology Solutions
275 Dundas Street, 11th Floor, London
(519) 663-1952


********************
NOTICE OF CONFIDENTIALITY
This communication including any information transmitted with it is
intended only for the use of the addressees and is confidential.
If you are not an intended recipient or responsible for delivering
the message to an intended recipient, any review, disclosure,
conversion to hard copy, dissemination, reproduction or other use
of any part of this communication is strictly prohibited, as is the
taking or omitting of any action in reliance upon this communication.
If you receive this communication in error or without authorization
please notify us immediately by return e-mail or otherwise and
permanently delete the entire communication from any computer,
disk drive, or other storage medium.

If the above disclaimer is not properly readable, it can be found at
www.td.com/legal
                                                       
AVERTISSEMENT DE CONFIDENTIALITE                  
Ce courriel, ainsi que tout renseignement ci-inclus, destiné uniquement
aux destinataires susmentionnés,  est confidentiel.  Si vous
n’êtes pas le destinataire prévu ou un agent responsable de la
livraison de ce courriel, tout examen, divulgation, copie, impression,
reproduction, distribution, ou autre utilisation d’une partie de ce
courriel est strictement interdit de même que toute intervention ou
abstraction à cet égard.  Si vous avez reçu ce message par erreur ou
sans autorisation, veuillez en aviser immédiatement l’expéditeur par
retour de courriel ou par un autre moyen et supprimer immédiatement
cette communication entière de tout système électronique.

Si l'avis de non-responsabilité ci-dessus n'est pas lisible, vous
pouvez le consulter à www.td.com/francais/legale
_______________________________________________
platform-swt-dev mailing list
platform-swt-dev@xxxxxxxxxxx

https://dev.eclipse.org/mailman/listinfo/platform-swt-dev
_______________________________________________
platform-swt-dev mailing list
platform-swt-dev@xxxxxxxxxxx

https://dev.eclipse.org/mailman/listinfo/platform-swt-dev
_______________________________________________
platform-swt-dev mailing list
platform-swt-dev@xxxxxxxxxxx
https://dev.eclipse.org/mailman/listinfo/platform-swt-dev


Back to the top