Sophie

Sophie

distrib > Mageia > 7 > armv7hl > media > core-release > by-pkgid > 687d50c87f9bc8229a053a1550f2a166 > files > 11

libqaccessibilityclient-qt5-0.4.1-1.mga7.armv7hl.rpm

QAccessibilityClient
====================

This library is used when writing accessibility clients such as screen readers.
It comes with some examples demonstrating the API. These small helpers may be useful when testing accessibility.
One of them writes all accessibiliy interfaces an application provides as text output.
The other, more advanced application shows a tree of objects and allows some interaction and exploration.

Coding style: <http://techbase.kde.org/Policies/Kdelibs_Coding_Style>
Generally this library follows <http://techbase.kde.org/Policies/Library_Code_Policy>

Be aware that it is in an early stage of development right now so no compatibility is guaranteered.

All public API is in:
src/qaccessibilityclient

The abstraction of DBus and related at-spi tools should go into
src/atspi
but not exported.

You can generate documentation (see docs folder README).

Using CMake with QAccessibilityClient
-------------------------------------

Do NOT write a Find*.cmake file! It just works the way it is (TM).

Use:

`find_package(QAccessibilityClient)`

or, if you use feature logging:

```cmake
macro_optional_find_package(QAccessibilityClient)
macro_log_feature(QAccessibilityClient_FOUND "qaccessibilityclient"
    "KDE client-side accessibility library"
    "https://projects.kde.org/libkdeaccessibilityclient"
    FALSE "" "Required to enable accessibility features.")

include_directories(${QACCESSIBILITYCLIENT_INCLUDE_DIR})
target_link_libraries(targetname ${QACCESSIBILITYCLIENT_LIBRARY})
```

In your code `#include <qaccessibilityclient/accessibleobject.h>` etc.

Creating releases
-----------------

There are no translations for QAccessibilityClient since the library does not contain any strings that should be shown to users.
The examples are not translated, that could potentially be considered.
Follow <https://community.kde.org/ReleasingSoftware>, skip the translation parts.

* Set the project version in the top-level CMakeLists.txt, push.
* `./tarme.rb --version 0.3.0 --origin stable libqaccessibilityclient`
* tarme.rb has nice output that gives instructions.
* `./tagme.rb --version 0.3.0 libqaccessibilityclient`
* upload as directed
* file sysadmin ticket
* `./logme.rb` to create changelog
* `./tagme --version 0.3.0` to push tag
* blog/send mail