summaryrefslogtreecommitdiff
path: root/atk/atkutil.h
Commit message (Collapse)AuthorAgeFilesLines
* atk: Use const instead G_CONST_RETURNJavier Jardón2011-06-131-5/+5
| | | | https://bugzilla.gnome.org/show_bug.cgi?id=652205
* Bug 640574: gobject-introspection annotation and documentation fixesMike Gorse2011-01-251-3/+3
|
* docs: Add documentation for ATK_DEFINE_ convenience macrosJavier Jardón2010-11-291-0/+67
|
* add G_DISABLE_SINGLE_INCLUDES and ATK_DISABLE_SINGLE_INCLUDES to CPPFLAGS.Michael Natterer2008-06-051-8/+6
| | | | | | | | | | | | | | | | | | | | 2008-06-05 Michael Natterer <mitch@imendio.com> * configure.in: add G_DISABLE_SINGLE_INCLUDES and ATK_DISABLE_SINGLE_INCLUDES to CPPFLAGS. * atk/atk.h: define __ATK_H_INSIDE__ around including all other headers. * atk/atk*.h: add single-include guards that #error out if ATK_DISABLE_SINGLE_INCLUDES is defined and any of these files is included individually. Use G_BEGIN_DECLS/G_END_DECLS in all files. * atk/Makefile.am: define ATK_COMPILATION while building ATK. Add single-include guards to the generated atk-enum-types.h too. svn path=/trunk/; revision=1246
* Bug #502840. Derived type definition convenience macros Bug #500978. FixesLi Yuan2008-01-041-0/+68
| | | | | | | | | | | | 2008-01-04 Li Yuan <li.yuan@sun.com> * atk/atkutil.h: Bug #502840. Derived type definition convenience macros * tests/Makefile.am: Bug #500978. Fixes the building of the test modules as dynamic on Cygwin and MinGW. svn path=/trunk/; revision=1217
* Bug #460851. A new API to get the current version of ATK.Li Yuan2007-07-271-0/+5
| | | | | | | | | | 2007-07-27 Li Yuan <li.yuan@sun.com> * atk/atkutil.c: (atk_get_version): * atk/atkutil.h: Bug #460851. A new API to get the current version of ATK. svn path=/trunk/; revision=1186
* Improved documentation: ATK now has 100% gtk-doc coverage with noBill Haneman2006-03-211-0/+21
| | | | sections tagged as incomplete.
* Minor documentation clarifications and tweaks.Bill Haneman2006-03-201-6/+44
|
* Add state FOCUSED if object is focus object.Padraig O'Briain2003-11-261-0/+2
| | | | | | | | | | | | | | | 2003-11-26 Padraig O'Briain <padraig.obriain@sun.com> * atk/atkobject.c (atk_object_real_ref_state_set): Add state FOCUSED if object is focus object. * atk/atkutil.[ch] (atk_get_focus_object): New function which returns the last object reported by the application as focused. * docs/atk-sections.txt, docs/tmpl/atkutil.sgml: Add atk_get_focus_object. Fixes bug #127400.
* Add documentation for AtkKeyEventTypePadraig O'Briain2002-09-051-0/+8
| | | | | | | | | | | | | | | | | * atk/atkutil.h: Add documentation for AtkKeyEventType * docs/tmpl/action.sgml docs/tmpl/atkcomponent.sgml docs/tmpl/atkdocument.sgml docs/tmpl/atkeditabletext.sgml docs/tmpl/atkgobjectaccessible.sgml docs/tmpl/atkhyperlink.sgml docs/tmpl/atkhypertext.sgml docs/tmpl/atkimage.sgml docs/tmpl/atknoopobject.sgml docs/tmp[l/atknoopobjectfactory.sgml docs/tmpl/atkobject.sgml docs/tmpl/atkobjectfacory.sgml docs/tmpl/atkregistry.sgml docs/tmpl/atkrelation.sgml docs/tmpl/atkselection.sgml docs/tmpl/atkstate.sgml docs/tmpl/atkstreamablecontent.sgml docs/tmpl/atktable.sgml docs/tmpl/atktext.sml docs/tmpl/atkutil.sgml docs/tmpl/atkutil.sgml: Reduce number of undocumented symbols
* atk/atkutil.h atk/docs/atk-docs.sgml atk/docs/tmpl/atk-component.sgmlPadraig O'Briain2002-06-201-1/+1
| | | | | | | | | | | | | | | * atk/atkutil.h atk/docs/atk-docs.sgml atk/docs/tmpl/atk-component.sgml atk/docs/atkdocument.sgml atk/docs/tmpl/atkeditabletext.sgml atk/docs/tmpl/atkgobjectaccessible.sgml atk/docs/tmpl/atkhyperlink.sgml atk/docs/tmpl/atkhypertext.sgml atk/docs/tmpl/atkimage.sgml atk/docs/atknoopobject.sgml atk/docs/tmpl/atknoopobjectfactory.sgml atk/docs/tmpl/atkobjectfactory.sgml atk/docs/tmpl/atkregistry.sgml atk/docs/tmpl/atkregistry.sgml atk/docs/tmpl/atkrelationset.sgml atk/docs/tmpl/atkselection.sgml atk/docs/tmpl/atkstate.sgml atk/docs/tmpl/atkstateset.sgml atk/docs/tmpl/atkstreamablecontent.sgml atk/docs/tmpl/atktable.sgml atk/docs/tmpl/atktext.sgml atk/docs/tmpl/atkutil.sgml atk/docs/tmpl/atkvalue.sgml Update documentation.
* paranoia is not appropriate here, setup parent_class, don't create a newMichael Meeks2001-12-101-1/+0
| | | | | | | | | | | 2001-12-08 Michael Meeks <michael@ximian.com> * atk/atkregistry.c (atk_registry_class_init): paranoia is not appropriate here, setup parent_class, don't create a new default registry here - makes no sense. (atk_registry_finalize): chain to parent class, do g_hash_table_destroys instead of g_frees.
* switch to class_peek.Michael Meeks2001-11-221-6/+7
| | | | | | | | | | | | | | | | | | | | 2001-11-22 Michael Meeks <michael@ximian.com> * atk/atkutil.c (atk_add_key_event_listener): switch to class_peek. * atk/atkobject.c (atk_object_real_get_property): add missing 'break'. 2001-11-21 Michael Meeks <michael@ximian.com> * atk/atkrelation.c: pull in string.h for strcmp * atk/atktext.c (atk_text_get_selection): fix bug / warning. * atk/atkutil.c (atk_add_global_event_listener), (atk_get_toolkit_name, atk_get_toolkit_version): constify
* Introduced AtkKeyEventType, to insulate us from GDK dependencies.Bill Haneman2001-11-201-1/+8
|
* Change to signature of atk_add_event_listener to use AtkKeySnoopFunc insteadBill Haneman2001-11-191-1/+1
| | | | | | of pointer to same. Changed AtkKeySnoopFunc sig: removed AtkObjectImplementor arg since snooped keys are not reliably associated with AtkObjects.
* Added state-change signal to AtkObject (will deprecate accessible-state ↵Bill Haneman2001-11-191-2/+2
| | | | | | property) Fixed API problem in atk_util_add_key_listener.
* Added API for key snoop functions, to allow non-GTK-specific registrationBill Haneman2001-11-141-0/+27
| | | | of toolkit-level key snoopers.
* Changed first argument of atk_add_global_event_listenerBrian Cameron2001-07-301-4/+4
| | | | | | | so the callback function is of type GSignalEmissionHook instead of AtkEventListener. AtkEventListener is appropriate for Focus event callbacks, but not generic ones.
* atk/atkeditabletext.c atk/atktext.c atk/atktext.h atk/atkutil.hBrian Cameron2001-07-161-1/+2
| | | | | | | | | | | * atk/atkeditabletext.c atk/atktext.c atk/atktext.h atk/atkutil.h docs/atk-sections.txt docs/tmpl/atktext.sgml docs/tmpl/atkutil.sgml gail_textattributes_update.pat is for gail/gail and integrates the ATK_ATTRIBUTE_* macros in the gail implementations. atk_docs_textattributes_update.pat is for atk/docs and patches atk-sections.txt etc. for improved docs atk_atk_textattributes_update.pat is for atk/atk and included the new ATK_ATTRIBUTE_* macros and updated gtk-doc comments.
* Added new functions to AtkUtil.Brian Cameron2001-06-291-10/+70
|
* Updated so that functions that take screen coords asBrian Cameron2001-06-281-0/+13
| | | | | input/output also take an enum specifying whether the coords are screen or top-level window based.
* Initial revisionBill Haneman2001-04-261-0/+65