1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71
|
<?xml version="1.0" encoding="utf-8"?>
<page xmlns="http://projectmallard.org/1.0/" xmlns:its="http://www.w3.org/2005/11/its" type="topic" id="tech-atk" xml:lang="gl">
<info>
<link type="guide" xref="tech" group="atk"/>
<revision pkgversion="3.0" date="2011-04-05" status="candidate"/>
<credit type="author copyright">
<name>Shaun McCance</name>
<email its:translate="no">shaunm@gnome.org</email>
<years>2011–2012</years>
</credit>
<include xmlns="http://www.w3.org/2001/XInclude" href="cc-by-sa-3-0.xml"/>
<desc>Accessibility toolkit to implement support for screen readers and
other tools</desc>
<mal:credit xmlns:mal="http://projectmallard.org/1.0/" type="translator copyright">
<mal:name>Fran Diéguez</mal:name>
<mal:email>frandieguez@gnome.org</mal:email>
<mal:years>2009-2020.</mal:years>
</mal:credit>
<mal:credit xmlns:mal="http://projectmallard.org/1.0/" type="translator copyright">
<mal:name>Leandro Regueiro</mal:name>
<mal:email>leandro.regueiro@gmail.com</mal:email>
<mal:years>2011.</mal:years>
</mal:credit>
</info>
<title>ATK</title>
<p>A accesibilidade é o proceso de asegurarse de que a súa aplicación pode ser usada por persoas con algunha ou varias discapacidades. As discapacidades poden ser de moitos tipos: visuais, de coordinación, movementos descoordinados, impedimentos auditivos, impedimentos cognitivos e de idioma e desorde de apoplexías. Moitas persoas teñen algún tipo de discapacidade e facer o seu aplicación accesíbel permitira que máis xente poida usalo de forma efectiva.</p>
<p>GNOME provides support for accessibility devices using the ATK framework,
which stands for Accessibility Tool Kit. This framework defines a set of
interfaces to which graphical interface components adhere. This allows, for
instance, screen readers to read the text of an interface and interact with its
controls. ATK support is built into GTK and the rest of the GNOME platform,
so any application using GTK will have reasonable accessibility support for
free.</p>
<p>ATK solves the problem of plugging many different kinds of widgets (text
entries, text areas, buttons, menus) with many different types of accessibility
technologies (screen readers, braille displays, sip-and-puff control devices).
Instead of writing N×M interfaces, from each widget to each accessibility
device, one just has to expose a widget through ATK's interfaces.
Accessibility devices will in turn use these interfaces to query accessible
widgets. For example, an aural screen reader and a braille display will both
use a standard "get the text contents" interface in ATK for all widgets with
textual information.</p>
<p>Nonetheless, you should be aware of accessibility issues when
developing your applications. Although GTK interfaces provide
reasonable accessibility by default, you can often improve how well
your program behaves with accessibility tools by providing additional
information to ATK. If you develop custom widgets, you should ensure
that they expose their properties to ATK. You should also avoid using
sound, graphics, or color as the sole means of conveying information
to the user; have redundant ways of providing this information instead of
relying on the user being able to perceive a particular medium.</p>
<p>O escritorio GNOME posee certo número de ferramentas de accesibilidade que lle permite aos usuarios con discapacidades usar plenamente o escritorio e as súas aplicacións. Os aplicacións que implementan completamente ATK serán capaces de traballar coas ferramentas de accesibilidade. As ferramentas de accesibilidade de GNOME inclúen un lector de pantalla, un magnificador de pantalla, un teclado en pantalla e <app>Dasher</app>, unha innovadora ferramenta de predición de entrada de texto.</p>
<list style="compact">
<item><p><link href="http://developer.gnome.org/accessibility-devel-guide/">Accesibilidade de GNOME para os desenvolvedores</link></p></item>
<item><p><link href="https://developer.gnome.org/atk/stable/">ATK Reference</link></p></item>
</list>
</page>
|