From e9f0fb287cb58d7139bc39e0df89a2b521816aab Mon Sep 17 00:00:00 2001 From: Jacobo Aragunde Pérez Date: Tue, 4 Feb 2014 15:07:51 +0100 Subject: fdo#35105: notify role change through a new UNO a11y event MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit A new UNO accessibility event called ROLE_CHANGED has been created. It should be triggered when an accessible object changes its role and every accessibility toolkit should use its own methods to make that change effective. Code to support the event in ATK has been added. Change-Id: I132e303bdb148967231334458c3cfa369c36ec8f Reviewed-on: https://gerrit.libreoffice.org/7853 Tested-by: Caolán McNamara Reviewed-by: Caolán McNamara --- offapi/com/sun/star/accessibility/AccessibleEventId.idl | 7 +++++++ 1 file changed, 7 insertions(+) (limited to 'offapi') diff --git a/offapi/com/sun/star/accessibility/AccessibleEventId.idl b/offapi/com/sun/star/accessibility/AccessibleEventId.idl index 7e31996da099..20d0d0553e58 100644 --- a/offapi/com/sun/star/accessibility/AccessibleEventId.idl +++ b/offapi/com/sun/star/accessibility/AccessibleEventId.idl @@ -380,6 +380,13 @@ constants AccessibleEventId const short PAGE_CHANGED =38; const short SECTION_CHANGED =39; const short COLUMN_CHANGED =40; + + /** Constant used to indicate that the role of an accessible object has + changed. + + @since LibreOffice 4.3 + */ + const short ROLE_CHANGED =41; }; }; }; }; }; -- cgit