summaryrefslogtreecommitdiff
path: root/atspi/atspi-text.h
Commit message (Collapse)AuthorAgeFilesLines
* Use const attribute name input in atspi_*_get*_attribute_value()Colomban Wendling2023-04-251-2/+2
| | | | | There is no point in having them mutable, and makes the API look more awkward and harder to use than it actually is.
* Reformat all the *.[ch] files with clang-formatFederico Mena Quintero2022-12-061-23/+22
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | I ran this on each directory with C files: clang-format -i *.[ch] "-i" is the in-place option. I also adjusted the order of #includes for some files which failed to build after that: Clang-format reorders blocks of #include directives alphabetically, but they can be grouped and separated by blank lines. If there is a blank line between blocks, like #include "zork.h" #include "bar.h" #include "foo.h" then it will not put zork.h after the other two. The last two header files will be sorted alphabetically. We can adjust the formatting of chunks of code by hand with comments like these: /* clang-format off */ this code { is, formatted, by, hand; } /* clang-format on */ See https://clang.llvm.org/docs/ClangFormat.html for the general manual and https://clang.llvm.org/docs/ClangFormatStyleOptions.html for the style options and the comments described above.
* Relicense as LGPL 2.1Mike Gorse2019-08-281-4/+4
| | | | Fixes https://gitlab.gnome.org/GNOME/at-spi2-core/issues/2
* Fix outdated FSF addressMike Gorse2019-08-271-2/+2
|
* Refactor the API for the screen reader to notify listeners of its statusMike Gorse2019-07-181-2/+0
| | | | | | | Remove atspi_text_notify_reading_position, and instead add a region_changed signal. Also make the dbus API more like the API used for other events. Per discussion at https://gitlab.gnome.org/GNOME/orca/issues/36
* atspi_text_notify_reading_position: let caller specify end offsetSamuel Thibault2019-05-101-1/+1
| | | | since the screen reader may not be speaking until the end of the text.
* More updates related to reading position notificationsMike Gorse2019-05-051-1/+1
| | | | | | | | | Allow a client to receive notifications through AtspiEventListeners. This involves special casing, since the event is generated by the screen reader, not the GUI, and is, thus, handled by a different DBus interface, but, from the client's perspective, it looks like a normal AT-SPI event. Also renamed atspi_text_notify_read_position to atspi_text_notify_reading_position and fixed a few warnings.
* Add atspi_text_notify_read_positionMike Gorse2019-05-051-0/+1
| | | | https://gitlab.gnome.org/GNOME/at-spi2-core/issues/10
* Add ScrollSubstringTo and ScrollSubstringToPoint text interfacesSamuel Thibault2019-01-151-0/+4
|
* Deprecate atspi_text_get_text_{before,at,after}_offset()Mario Sanchez Prada2015-01-211-4/+4
| | | | https://bugzilla.gnome.org/show_bug.cgi?id=697969
* Add atspi_text_get_string_at_offsetMike Gorse2013-08-191-0/+4
|
* Rename various functions to avoid name collisionsMike Gorse2013-05-151-0/+8
| | | | | | | | | Having functions with common suffixes (ie, atspi_text_get_attributes and atspi_document_get_attributes) results in problems for language bindings. Deprecating these functions in favor of functions with new names to avoid these collisions. https://bugzilla.gnome.org/show_bug.cgi?id=700243
* Add G_BEGIN_DECLS and G_END_DECLS macros for prototypes to fix c++ linkageMike Gorse2012-05-211-0/+5
|
* Update copyright and add some missing license infoMike Gorse2011-01-311-0/+1
|
* Some attribute-related fixesMike Gorse2010-12-091-19/+2
|
* Rename text to content in AtspiTextRange to match original IDLMike Gorse2010-12-091-1/+1
|
* Fix atspi_text_get_default_attributesMike Gorse2010-12-091-1/+1
|
* Add Hypertext and Hyperlink and some refactoring to support themMike Gorse2010-11-201-0/+3
| | | | | | AtspiAccessible is now derived from a base class called AtspiObject which defines the object's application and object path, since this is common with AtspiHyperlink.
* Add Action, Document, EditableText, Image, and Value interfacesMike Gorse2010-11-191-1/+1
|
* Add first pass at text interfaceMike Gorse2010-11-191-0/+138