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
72
73
74
75
76
77
78
79
80
81
82
83
84
|
Changes in version 0.13
* Add padding to class structures for future expansion [Padraig O'Briain]
* Add include guards to atk.h [Morten Welinder]
* Change argument of atk_component_get_layer(),atk_component_get_mdi_zorder()
to be AtkComponent instead of AtkObject [Padraig]
* Cleanups [Padraig]
Changes in version 0.11 and 0.12
* Ansi-fied function prototypes and definitions;
i.e. foo(void) instead of foo() [Jacob Berkman]
* Deprecated the mis-located AtkObject API for getting
layer and mdi-zorder info (should have been in AtkComponent)
and put this API into AtkComponent.
Changes in version 0.9 and 0.10
* Win32 build fixes [Hans Breuer]x
* Fix default signal handler name for text_caret_moved signal [Jeff Franks]
* Doc improvements [Padraig O'Briain]
* Fix signal prototypes in atkobject.h [Murray Cumming]
* Fix atk-enum-types.h includes for C++ [Mikael Hermansson]
* Bug fixes [Michael Meeks, Jeff]
Changes in 0.8
* Win32 build fixes [Hans Breuer]
* Add atk_role_get_name()/atk_rule_for_name() [Padraig O'Briain]
* Register types for ATK enumerations [Padraig]
* Allow registration of new txt attribute types [Padraig]
* Miscellaneous small API additions [Padraig]
* New test cases [Padraig]
* Documentation improvements [Padraig]
Other contributors: Darin Adler, Bill Haneman, Xavier Ordoquy, Michael Meeks,
Sebastian Wilhelmi
Changes in 0.7
* Some restructuring of how change notification works, use
signals not properties in some cases. [Padraig O'Briain, Bill Haneman]
* Various small API fixes and improvements [Padraig]
* Add key event hooks [Bill]
* Documentation improvements [Padraig]
* Win32 build improvements [Tor Lillqvist]
* Bug fixes [Padraig, Bill]
Changes in 0.6
* Small improvements to AtkText, AtkRelation, AtkObject APIs.
[Padraig O'Briain, Bill Haneman]
* Win32 build fixes [Tor Lillqvist]
* Bug fixes and optimizations [Padraig]
* Makefile fix [Jacob Berkman]
* Doc improvements [Padraig]
Changes in 0.5
* Win32 updates and a small bug fix [Hans Breuer]
Changes in 0.4
* Miscellaneous cleanups and fixes.
Changes in 0.3
* API improvements to AtkTable, AtkSelection
* Add AtkDocument interface
* Rename AtkHyperLink to AtkHyperlink
* Allow for screen or window relative coordinates
* Utility functions
* Various minor tweeks and cleanups.
* Documentation improvements
* Add default implementations for important functions
Changes in 0.2
* Some API tweaks
Changes in 0.1
This is the initial release of ATK, the Accessibility Tookit, which will be
used obtain accessibily information from GTK+ and GNOME widgets.
|