summaryrefslogtreecommitdiff
path: root/atk
Commit message (Collapse)AuthorAgeFilesLines
* Added AtkMisc class, uprev for gnome-2.17.5, and release.ATK_1_13_0Bill Haneman2007-01-083-0/+214
| | | | svn path=/trunk/; revision=1130
* Updating svn:ignore and remove .cvsignore filesChristian Persch2006-12-311-13/+0
| | | | svn path=/trunk/; revision=1126
* Allow text wrap type of GTK_WRAP_WORD_CHAR, as a text attribute.atk_1_12_3Bill Haneman2006-09-261-1/+1
| | | | Bug #357847.
* Add "load-stopped", "load_complete", "loading" signals to AtkDocumentBill Haneman2006-09-203-1/+56
| | | | interface. Based on patch from Neo Liu <nian.liu@sun.com>.
* Fix win32 build (bug #355312, patch from Cedric Gustin), andBill Haneman2006-09-142-0/+6
| | | | | deprecate atk_hyperlink_is_selected_link (bug #340553) since ATK_STATE_SELECTED gives the same info.
* Fix for bug #346464, allow underlines in gtk with style "PANGO_UNDERLINE_ERROR".Bill Haneman2006-09-141-1/+1
|
* Fix from Neo Liu - missing return statement in atk_hyperlink_impl_get_hyperlink.Bill Haneman2006-09-081-1/+1
|
* Fixed typos and template omissions which were preventing some inlineBill Haneman2006-08-173-2/+8
| | | | docs from getting exported. Bug #351580.
* Tweak to AtkRoleType docs.Bill Haneman2006-08-011-2/+2
|
* Fixed AtkHyperlink prototype func and impl.ATK_1_12_1Bill Haneman2006-07-202-3/+4
|
* Added AtkHyperlinkImpl interface. See RFE #344284.Bill Haneman2006-06-294-0/+145
|
* Added docs for ATK_STATE_ANIMATED and added ATK_ROLE_INPUT_METHOD_WINDOW.Bill Haneman2006-06-232-1/+7
|
* Added ATK_ROLE_LINK.Bill Haneman2006-06-231-1/+6
|
* Revise atk-docs.sgml to add indices for deprecated and newBill Haneman2006-06-238-12/+12
| | | | | symbols, and modify the inline docs so that the parser can find them. Bug #313183.
* ATK_STATE macro fix from Ginn Chen, bug #345407. Fixes macro forBill Haneman2006-06-211-1/+1
| | | | enum values > 32.
* Fix nasty typos in last commit. Bug #344195. Thanks Elijah and Frederic.Bill Haneman2006-06-152-2/+2
|
* Added getURI to AtkStreamableContent.Bill Haneman2006-06-142-3/+56
|
* Attempt to fix win32 builds when srcdir != builddir (bug #336082).Bill Haneman2006-06-091-1/+1
|
* Added ATK_STATE_ANIMATED which was in AT-SPI but missing from ATK.Bill Haneman2006-06-091-0/+1
|
* Added ATK_STATE_VISITED, bug #344384.Bill Haneman2006-06-091-0/+2
|
* Added atk_value_get_minimum_increment, to sync up with the minimumIncrement ↵Bill Haneman2006-06-082-2/+36
| | | | | | readonly property in AT-SPI's Accessibility_Value.idl. Bug #341875.
* Added ATK_STATE_DEFAULT. (Bug #344281)Bill Haneman2006-06-081-0/+2
|
* Added ATK_ROLE_FORM and ATK_RELATION_DESCRIBED_BY/DESCRIPTION_FOR to HEAD.Bill Haneman2006-06-083-2/+12
|
* Added four more 'Since' tags.Bill Haneman2006-03-313-0/+10
|
* Made atk_component_real_get_alpha static, as it should be.Bill Haneman2006-03-311-1/+1
|
* Improved documentation: ATK now has 100% gtk-doc coverage with noBill Haneman2006-03-217-21/+76
| | | | sections tagged as incomplete.
* Fix fatal typo.Tor Lillqvist2006-03-211-1/+1
| | | | | | | | 2006-03-21 Tor Lillqvist <tml@novell.com> * atk/atkobject.c (get_atk_locale_dir): Fix fatal typo. * atk/atk.def: Add some missing functions.
* Add some missing functions.Tor Lillqvist2006-03-211-0/+7
| | | | | | 2006-03-21 Tor Lillqvist <tml@novell.com> * atk/atk.def: Add some missing functions.
* Minor documentation clarifications and tweaks.Bill Haneman2006-03-203-13/+55
|
* Fix Coverity-detected bugs in atkimage.c - allow for possibilityBill Haneman2006-03-201-4/+4
| | | | | that NULL in-params were passed. Thanks to Behdad Estafood for finding problem.
* Win32 get_locale fix from Kazuzi IWAMOTO, andBill Haneman2006-02-242-49/+59
| | | | const patch from Arjan Van de Ven.
* Added new API for ATK 1.11/1.12. Minor docs cleanup.Bill Haneman2005-11-1810-44/+299
| | | | | Added new API for ATK 1.11/1.12. Minor docs cleanup.
* Added small docs patch from Bill Abt.;Bill Haneman2005-11-165-17/+16
| | | | | supplements AtkUtil sgml page, and moves return code exception/range info to "Returns" block.
* Fix typo.Tor Lillqvist2005-08-191-1/+1
| | | | | | 2005-08-19 Tor Lillqvist <tml@novell.com> * atk/Makefile.am (install-def-file): Fix typo.
* Look for windres on Win32.Tor Lillqvist2005-08-042-14/+14
| | | | | | | | | | | | | | | 2005-08-04 Tor Lillqvist <tml@novell.com> * configure.in: Look for windres on Win32. * atk/Makefile.am: Don't use the script in GLib's build/win32 to compile the rc file into a resource object file. (This means we lose the build number increment magic, but I doubt it was that useful anyway.) Instead use windres directly. To pass a normal .o file produced by windres through libtool, which wants .lo files, pass it directly to the linker using a -Wl option. * atk/atk.rc.in: Correspondingly, replace BUILDNUMBER with 0.
* Initialize gettext before use. Calling bindtextdomain() andTor Lillqvist2005-04-221-33/+42
| | | | | | | | | | | | | | | 2005-04-22 Tor Lillqvist <tml@novell.com> * atk/atkobject.c: Initialize gettext before use. Calling bindtextdomain() and bind_textdomain_codeset() in atk_role_get_localized_name() was too late. Put the calls in new function gettext_initialization() and call that from atk_object_class_init() and atk_role_get_localized_name(). Move the Win32-specific DllMain() and get_atk_locale_dir() functions and theredefinition of ATK_LOCALEDIR before gettext_initialization() as it uses ATK_LOCALEDIR. Fixes #170948 for atk's part. Thanks to Robert Ögren, Daniel Atallah and Kevin Strange.
* updated $(LIBINTL_LIBS) atkrelationtype.h to atk_headers, PKG_VERHans Breuer2005-04-091-2/+3
| | | | | | | 2005-04-09 Hans Breuer <hans@breuer.org> * atk/makefile.msc : updated $(LIBINTL_LIBS) atkrelationtype.h to atk_headers, PKG_VER
* Added ATK_STATE_REQUIRED, bug #172663.Bill Haneman2005-04-051-0/+2
|
* Update doc to note that atk_relation_add_target was added for version 1.9.Padraig O'Briain2005-04-042-0/+4
| | | | | | | | | | 2005-04-04 Padraig O'Briain <padraig.obriain@sun.com> * atk/atkrelation.c: Update doc to note that atk_relation_add_target was added for version 1.9. * atk/atkrelationset.c: Update doc to note that atk_relation_set_add_relation_by_type was added for version 1.9.
* Add atk_text_clip_type_get_type. Bug #165288.Padraig O'Briain2005-01-261-0/+1
| | | | | | 2005-01-26 Padraig O'Briain <padraig.obriain@sun.com> * atk/atk.def: Add atk_text_clip_type_get_type. Bug #165288.
* Add new functions.Tor Lillqvist2004-12-291-0/+3
| | | | | | 2004-12-29 Tor Lillqvist <tml@iki.fi> * atk/atk.def: Add new functions.
* Add description for ATK_RELATION_SUBWINDOW_OF. Fixes bug #161562.Padraig O'Briain2004-12-201-1/+1
| | | | | | | 2004-12-20 Padraig O'Briain <padraig.obriain@sun.com> * atk/atkrelationtype.h: Add description for ATK_RELATION_SUBWINDOW_OF. Fixes bug #161562.
* Replace DEPRECATED by @Deprecated in comments to fix warning whenPadraig O'Briain2004-11-225-2/+73
| | | | | | | | | | | | | | | | | | 2004-11-22 Padraig O'Briain <padraig.obriain@sun.com> * atk/atkobject.c: Replace DEPRECATED by @Deprecated in comments to fix warning when documentation is generated. * atk/atkrelation.[ch]: * docs/tmpl/atkrelation.sgml: Add atk_relation_add_target. * atk/atkrelationset.[ch]: * atk/tmpl/atkrelationset.sgml: Add atk_relation_add_relation_by_type. * docs/atk-sections.txt: Add atk_relation_add_target and atk_relation_add_relation_by_type. Fixes bug #158722.
* Add a more descriptive title in the docs. Patch from Diego Gonzalez. (bugPadraig O'Briain2004-10-281-14/+21
| | | | | | | | | | | 2004-10-28 Padraig O'Briain <padraig.obriain@sun.com> * docs/atk-docs.sgml: Add a more descriptive title in the docs. Patch from Diego Gonzalez. (bug #156296) * atk/text.c (Clarify meaning of endd_offset for atk_text_get_text_at_offset(). Patch from Bill Haneman. (bug #156574)
* Fix for bug #149990; patch from Kjartan Maraas.Padraig O'Briain2004-08-139-9/+9
| | | | | | | | | 2004-08-13 Padraig O'Briain <padraig.obriain@sun.com> * *atk/atkdocument.c atk/atkeditabletext.c atk/atkhypertext.c atk/atkimage.c atk/atknoopobjectfactory.c atkobject.c atk/atkstreamablecontent.c atk/atktext.c attk/atkvalue.c: Fix for bug #149990; patch from Kjartan Maraas.
* Fix for bug 147989; Added ATK_ROLE_EMBEDDED. Revved to 1.7.2.ATK_1_7_2Bill Haneman2004-07-202-1/+4
|
* Add definition for atk_rectangle_get_type and ATK_TYPE_RECTANGLE. CorrectPadraig O'Briain2004-06-102-1/+24
| | | | | | | | | | | 2004-06-10 Padraig O'Briain <padraig.obriain@sun.com> * atk/atkcomponent.h: Add definition for atk_rectangle_get_type and ATK_TYPE_RECTANGLE. * atk/atkcomponent.c (atk_component_base_init): Correct definition of "bounds-changed" signal. (atk_rectangle_copy): New function. (atk_rectangle_get_type): New function.
* Allow locale dir not to be harcoded into binary. Fixes bug #128906.Padraig O'Briain2004-05-181-1/+5
| | | | | | | 2004-05-18 Padraig O'Briain <padraig.obriain@sun.com> * atk/atkobject.c: Allow locale dir not to be harcoded into binary. Fixes bug #128906.
* Make extra_roles static.Padraig O'Briain2004-05-113-3/+3
| | | | | | | | | | | | | 2004-05-11 Padraig O'Briain <padraig.obriain@sun.com> * atk/atkobject.c: Make extra_roles static. * atk/atkrelation.c: Make extra_names static. Fixes bug #142234. * atk/atkstate.h: Add clarification of state ATK_STATE_ENABLED to documentation.
* Increment version to 1.7.0.Padraig O'Briain2004-04-205-2/+37
| | | | | | | | | | | | | | | | | | | | 2004-04-20 Padraig O'Briain <padraig.obriain@sun.com> * configure.in: Increment version to 1.7.0. * atk/atkcomponent.[ch]: Add new signal "bounds_changed". * docs/tmpl/atkcomponent.sgml: Add new signal "bounds_changed". Fixes bug #140476. * atk/atkrelationtype.h: Add new relation ATK_RELATION_PARENT_WINDOW_OF. * atk/atkstate.h: Add new state ATK_STATE_TRUNCATED. * docs/tmpl/atkrelation.sgml: Add new relation * docs/tmpl/atkstate.sgml: Add new state ATK_STATE_TRUNCATED Fixes bug #133375. * atk/atktext.c: Make extra_attributes static.