summaryrefslogtreecommitdiff
path: root/tests/testrelation.c
Commit message (Collapse)AuthorAgeFilesLines
* Revert "Updated FSF's address"Piotr Drąg2014-02-011-1/+3
| | | | This reverts commit feb4bd4c5b24672b1d8bbf0783e96539af0d0ba4.
* Updated FSF's addressDaniel Mustieles2014-01-231-3/+1
|
* Refactor tests directoryAlejandro Piñeiro2013-08-011-72/+5
| | | | | Each test suite is no longer a loadable module. Split testrelation into testrelation and testrole.
* tests: fix hyphenation on testrelation.cJohn E2013-03-271-4/+4
| | | | https://bugzilla.gnome.org/show_bug.cgi?id=696409
* tests: Use const instead G_CONST_RETURNJavier Jardón2011-06-091-3/+3
|
* Revved to 1.1.2, added ATK_RELATION_EMBEDS/EMBEDDED_BY,Bill Haneman2002-11-141-1/+16
| | | | atk_hyperlink_is_inline.
* Add reference to atk/atkrelationtype.hPadraig O'Briain2002-10-301-0/+65
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * atk/Makefile.am, atk/atk.h: Add reference to atk/atkrelationtype.h * atk/atkaction.[ch]: Add atk_action_get_localized_name. * atk/atkobject.[ch]: Add atk_role_get_localized_name, atk_object_add_relationship and atk_object_remove_relationship Add new roles ATK_ROLE_HEADER, ATK_ROLE_FOOTER, ATK_ROLE_PARAGRAPH and ATK_ROLE_RULER * atk/atkrelation.h: Move definition of AtkRelationType to atk/relationtype.h * atk/atkstate.h: Add new state ATK_STATE_MANAGES_DESCENDANTS * atk/atktext.[ch]: Add text-attributes-changed signal. * docs/atk-sections.txt, docs/tmpl/atkaction.sgml: Add new functions. * docs/tmpl/atkobject.sgml: Add new functions and new roles. * docs/tmpl/atkrelation.sgml: Add new relations * docs/tmpl/atkstate.sgml: Add new state * docs/tmpl/atktext.sgml: Add new signal * tests/testrelation.c: Add tests for new relationship functions.
* Change atk_attribute_register to atk_text_attribute_register,Padraig O'Briain2001-12-051-8/+8
| | | | | | | | | * atk/atk.def atk/atktext.c atk/atktext.h docs/atk-sections.txt docs/tmpl/atktext.sgml tests/testrelation.c: Change atk_attribute_register to atk_text_attribute_register, atk_attribute_get_value to atk_text_attribute_get_value, atk_attribute_get_name to atk_text_attribute_get_name atk_attribute_for_name to atk_text_attribuute_for_name
* Add implementation of atk_attribute_register, atk_attribute_for_name UdatePadraig O'Briain2001-12-041-2/+68
| | | | | | | | | | | | | | | | | | | | | * atk/atktext.c: Add implementation of atk_attribute_register, atk_attribute_for_name Udate atk_attribute_get_name to use ATK_TYPE_TEXT__ATTRIBUTE and support extra attributes being defined * atk/atktext.h: Add ATK_TEXT_ATTR_INVALID and ATK_TEXT_ATTR_LAST_DEFINED to allow extra attributes to be defined Add atk_attribute_register() and atk_attribute_for_name() * atk/atk.def: Add new functions * docs/atk-sections.txt docs/tmpl/atktext.sgml Update because of additions to atk/atktext.h * tests/testrelation.c: Add tests for text attributes
* Update atk_role_register() to allow extra roles to be defined UpdatePadraig O'Briain2001-12-041-1/+68
| | | | | | | | | | * atk/atkobject.c: Update atk_role_register() to allow extra roles to be defined Update atk_role_get_name() and atk_role_for_name() for newly defined roles * tests/testrelation.c: Add tests for roles
* Use ATK_TYPE_RELATION_TYPE in atk_relation_type_get_name() andPadraig O'Briain2001-12-031-11/+11
| | | | | | | | | | | | | | * atk/atkrelation.c: Use ATK_TYPE_RELATION_TYPE in atk_relation_type_get_name() and atk_relation_type_for_name() * atk/atkstate.c: Use ATK_TYPE_STATE_TYPE in atk_state_type_get_name() and atk_state_type_for_name() * tests/testrelation.c, tests/teststateset.c: Update tests as name componenets are separated by hyphen (-) rather than underline (_)
* Change atk_relation_type_from_string to atk_relation_type_for_name AddPadraig O'Briain2001-11-221-0/+101
* atk/atk.def, atk/atkrelationtype.h, docs/atk-sections.txt, docs/tmpl/atkrelation.sgml: Change atk_relation_type_from_string to atk_relation_type_for_name Add atk_relation_type_get_name * atk/atkrelationtype.c: Change atk_relation_type_from_string to atk_relation_type_for_name Add atk_relation_type_get_name Update atk_relation_type_register() to correctly register new relation types * atk/atkstate.c: Changed name of static variable type to last_type Changed name of paremeter if atk_state_type_get_name to type to match comments * docs/tmpl/*sgml Updated files * tests/README, tests/Makefile.am Add new test file testrelation.c