Version 5.4.3.2, tag libreoffice-5.4.3.2
[LibreOffice.git] / vcl / osx / a11ytextwrapper.mm
bloba2e500a7e5897613f08950f1329cdfdd0346e242
1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2 /*
3  * This file is part of the LibreOffice project.
4  *
5  * This Source Code Form is subject to the terms of the Mozilla Public
6  * License, v. 2.0. If a copy of the MPL was not distributed with this
7  * file, You can obtain one at http://mozilla.org/MPL/2.0/.
8  *
9  * This file incorporates work covered by the following license notice:
10  *
11  *   Licensed to the Apache Software Foundation (ASF) under one or more
12  *   contributor license agreements. See the NOTICE file distributed
13  *   with this work for additional information regarding copyright
14  *   ownership. The ASF licenses this file to you under the Apache
15  *   License, Version 2.0 (the "License"); you may not use this file
16  *   except in compliance with the License. You may obtain a copy of
17  *   the License at http://www.apache.org/licenses/LICENSE-2.0 .
18  */
21 #include "osx/salinst.h"
22 #include "quartz/utils.h"
23 #include "a11ytextwrapper.h"
24 #include "a11ytextattributeswrapper.h"
25 #include "a11yutil.h"
27 #include <com/sun/star/accessibility/AccessibleTextType.hpp>
28 #include <com/sun/star/awt/Rectangle.hpp>
29 #include <com/sun/star/lang/IllegalArgumentException.hpp>
30 #include <com/sun/star/lang/IndexOutOfBoundsException.hpp>
32 using namespace ::com::sun::star::accessibility;
33 using namespace ::com::sun::star::awt;
34 using namespace ::com::sun::star::lang;
35 using namespace ::com::sun::star::uno;
37 // Wrapper for XAccessibleText, XAccessibleEditableText and XAccessibleMultiLineText
39 @implementation AquaA11yTextWrapper : NSObject
41 +(id)valueAttributeForElement:(AquaA11yWrapper *)wrapper {
42     return CreateNSString ( [ wrapper accessibleText ] -> getText() );
45 +(void)setValueAttributeForElement:(AquaA11yWrapper *)wrapper to:(id)value
47     // TODO
48     (void)wrapper;
49     (void)value;
52 +(id)numberOfCharactersAttributeForElement:(AquaA11yWrapper *)wrapper {
53     return [ NSNumber numberWithLong: [ wrapper accessibleText ] -> getCharacterCount() ];
56 +(id)selectedTextAttributeForElement:(AquaA11yWrapper *)wrapper {
57     return CreateNSString ( [ wrapper accessibleText ] -> getSelectedText() );
60 +(void)setSelectedTextAttributeForElement:(AquaA11yWrapper *)wrapper to:(id)value {
61     if ( [ wrapper accessibleEditableText ] ) {
62         NSAutoreleasePool * pool = [ [ NSAutoreleasePool alloc ] init ];
63         OUString newText = GetOUString ( (NSString *) value );
64         NSRange selectedTextRange = [ [ AquaA11yTextWrapper selectedTextRangeAttributeForElement: wrapper ] rangeValue ];
65         try {
66             [ wrapper accessibleEditableText ] -> replaceText ( selectedTextRange.location, selectedTextRange.location + selectedTextRange.length, newText );
67         } catch ( const Exception & e ) {
68             // empty
69         }
70         [ pool release ];
71     }
74 +(id)selectedTextRangeAttributeForElement:(AquaA11yWrapper *)wrapper {
75     sal_Int32 start = [ wrapper accessibleText ] -> getSelectionStart();
76     sal_Int32 end = [ wrapper accessibleText ] -> getSelectionEnd();
77     if ( start != end ) {
78         return [ NSValue valueWithRange: NSMakeRange ( start, end - start ) ]; // true selection
79     } else {
80         long caretPos = [ wrapper accessibleText ] -> getCaretPosition();
81         if ( caretPos < 0 || caretPos > [ wrapper accessibleText ] -> getCharacterCount() ) {
82             return nil;
83         }
84         return [ NSValue valueWithRange: NSMakeRange ( caretPos, 0 ) ]; // insertion point
85     }
88 +(void)setSelectedTextRangeAttributeForElement:(AquaA11yWrapper *)wrapper to:(id)value {
89     NSRange range = [ value rangeValue ];
90     try {
91         [ wrapper accessibleText ] -> setSelection ( range.location, range.location + range.length );
92     } catch ( const Exception & e ) {
93         // empty
94     }
97 +(id)visibleCharacterRangeAttributeForElement:(AquaA11yWrapper *)wrapper {
98     // the OOo a11y API returns only the visible portion...
99     return [ NSValue valueWithRange: NSMakeRange ( 0, [ wrapper accessibleText ] -> getCharacterCount() ) ];
102 +(void)setVisibleCharacterRangeAttributeForElement:(AquaA11yWrapper *)wrapper to:(id)value
104     // do nothing
105     (void)wrapper;
106     (void)value;
109 +(id)sharedTextUIElementsAttributeForElement:(AquaA11yWrapper *)wrapper
111     (void)wrapper;
112     return [NSArray arrayWithObject:wrapper];
115 +(id)sharedCharacterRangeAttributeForElement:(AquaA11yWrapper *)wrapper
117     (void)wrapper;
118     return [ NSValue valueWithRange: NSMakeRange ( 0, [wrapper accessibleText]->getCharacterCount() ) ];
121 +(void)addAttributeNamesTo:(NSMutableArray *)attributeNames {
122     [ attributeNames addObjectsFromArray: [ AquaA11yTextWrapper specialAttributeNames ] ];
125 +(NSArray *)specialAttributeNames {
126     return [ NSArray arrayWithObjects: 
127             NSAccessibilityValueAttribute, 
128             NSAccessibilityNumberOfCharactersAttribute, 
129             NSAccessibilitySelectedTextAttribute, 
130             NSAccessibilitySelectedTextRangeAttribute, 
131             NSAccessibilityVisibleCharacterRangeAttribute, 
132             NSAccessibilitySharedTextUIElementsAttribute, 
133             NSAccessibilitySharedCharacterRangeAttribute, 
134             nil ];
137 +(void)addParameterizedAttributeNamesTo:(NSMutableArray *)attributeNames {
138     [ attributeNames addObjectsFromArray: [ AquaA11yTextWrapper specialParameterizedAttributeNames ] ];
141 +(NSArray *)specialParameterizedAttributeNames {
142     return [ NSArray arrayWithObjects: 
143             NSAccessibilityStringForRangeParameterizedAttribute, 
144             NSAccessibilityAttributedStringForRangeParameterizedAttribute, 
145             NSAccessibilityRangeForIndexParameterizedAttribute, 
146             NSAccessibilityRangeForPositionParameterizedAttribute, 
147             NSAccessibilityBoundsForRangeParameterizedAttribute, 
148             NSAccessibilityStyleRangeForIndexParameterizedAttribute, 
149             NSAccessibilityRTFForRangeParameterizedAttribute, 
150             NSAccessibilityLineForIndexParameterizedAttribute, 
151             NSAccessibilityRangeForLineParameterizedAttribute, 
152             nil ];
155 +(id)lineForIndexAttributeForElement:(AquaA11yWrapper *)wrapper forParameter:(id)index {
156     NSNumber * lineNumber = nil;
157     try {
158         sal_Int32 line = [ wrapper accessibleMultiLineText ] -> getLineNumberAtIndex ( (sal_Int32) [ index intValue ] );
159         lineNumber = [ NSNumber numberWithInt: line ];
160     } catch ( IndexOutOfBoundsException & e ) {
161         // empty
162     }
163     return lineNumber;
166 +(id)rangeForLineAttributeForElement:(AquaA11yWrapper *)wrapper forParameter:(id)line {
167     NSValue * range = nil;
168     try {
169         TextSegment textSegment = [ wrapper accessibleMultiLineText ] -> getTextAtLineNumber ( [ line intValue ] );
170         range = [ NSValue valueWithRange: NSMakeRange ( textSegment.SegmentStart, textSegment.SegmentEnd - textSegment.SegmentStart ) ];
171     } catch ( IndexOutOfBoundsException & e ) {
172         // empty
173     }
174     return range;
177 +(id)stringForRangeAttributeForElement:(AquaA11yWrapper *)wrapper forParameter:(id)range {
178     int loc = [ range rangeValue ].location;
179     int len = [ range rangeValue ].length;
180     NSMutableString * textRange = [ [ NSMutableString alloc ] init ];
181     try {
182         [ textRange appendString: CreateNSString ( [ wrapper accessibleText ] -> getTextRange ( loc, loc + len ) ) ];
183     } catch ( IndexOutOfBoundsException & e ) {
184         // empty
185     }
186     return textRange;
189 +(id)attributedStringForRangeAttributeForElement:(AquaA11yWrapper *)wrapper forParameter:(id)range {
190     return [ AquaA11yTextAttributesWrapper createAttributedStringForElement: wrapper inOrigRange: range ];
193 +(id)rangeForIndexAttributeForElement:(AquaA11yWrapper *)wrapper forParameter:(id)index {
194     NSValue * range = nil;
195     try {
196         TextSegment textSegment = [ wrapper accessibleText ] -> getTextBeforeIndex ( [ index intValue ], AccessibleTextType::GLYPH );
197         range = [ NSValue valueWithRange: NSMakeRange ( textSegment.SegmentStart, textSegment.SegmentEnd - textSegment.SegmentStart ) ];
198     } catch ( IndexOutOfBoundsException & e ) {
199         // empty
200     } catch ( IllegalArgumentException & e ) {
201         // empty
202     }
203     return range;
206 +(id)rangeForPositionAttributeForElement:(AquaA11yWrapper *)wrapper forParameter:(id)point {
207     NSValue * value = nil;
208     Point aPoint( [ AquaA11yUtil nsPointToVclPoint: point ]);
209     const Point screenPos = [ wrapper accessibleComponent ] -> getLocationOnScreen();
210     aPoint.X -= screenPos.X;
211     aPoint.Y -= screenPos.Y;
212     sal_Int32 index = [ wrapper accessibleText ] -> getIndexAtPoint( aPoint );
213     if ( index > -1 ) {
214         value = [ AquaA11yTextWrapper rangeForIndexAttributeForElement: wrapper forParameter: [ NSNumber numberWithLong: index ] ];
215     }
216     return value;
219 +(id)boundsForRangeAttributeForElement:(AquaA11yWrapper *)wrapper forParameter:(id)range {
220     NSValue * rect = nil;
221     try {
222         // TODO: this is ugly!!!
223         // the UNP-API can only return the bounds for a single character, not for a range
224         int loc = [ range rangeValue ].location;
225         int len = [ range rangeValue ].length;
226         int minx = 0x7fffffff, miny = 0x7fffffff, maxx = 0, maxy = 0;
227         for ( int i = 0; i < len; i++ ) {
228             Rectangle vclRect = [ wrapper accessibleText ] -> getCharacterBounds ( loc + i );
229             if ( vclRect.X < minx ) {
230                 minx = vclRect.X;
231             }
232             if ( vclRect.Y < miny ) {
233                 miny = vclRect.Y;
234             }
235             if ( vclRect.Width + vclRect.X > maxx ) {
236                 maxx = vclRect.Width + vclRect.X;
237             }
238             if ( vclRect.Height + vclRect.Y > maxy ) {
239                 maxy = vclRect.Height + vclRect.Y;
240             }
241         }
242         if ( [ wrapper accessibleComponent ] ) {
243             // get location on screen (must be added since get CharacterBounds returns values relative to parent)
244             Point screenPos = [ wrapper accessibleComponent ] -> getLocationOnScreen();
245             Point pos ( minx + screenPos.X, miny + screenPos.Y );
246             Point size ( maxx - minx, maxy - miny );
247             NSValue * nsPos = [ AquaA11yUtil vclPointToNSPoint: pos ];
248             rect = [ NSValue valueWithRect: NSMakeRect ( [ nsPos pointValue ].x, [ nsPos pointValue ].y - size.Y, size.X, size.Y ) ];
249             //printf("Range: %s --- Rect: %s\n", [ NSStringFromRange ( [ range rangeValue ] ) UTF8String ], [ NSStringFromRect ( [ rect rectValue ] ) UTF8String ]);
250         }
251     } catch ( IndexOutOfBoundsException & e ) {
252         // empty
253     }
254     return rect;
257 +(id)styleRangeForIndexAttributeForElement:(AquaA11yWrapper *)wrapper forParameter:(id)index {
258     NSValue * range = nil;
259     try {
260         TextSegment textSegment = [ wrapper accessibleText ] -> getTextAtIndex ( [ index intValue ], AccessibleTextType::ATTRIBUTE_RUN );
261         range = [ NSValue valueWithRange: NSMakeRange ( textSegment.SegmentStart, textSegment.SegmentEnd - textSegment.SegmentStart ) ];
262     } catch ( IndexOutOfBoundsException & e ) {
263         // empty
264     } catch ( IllegalArgumentException & e ) {
265         // empty
266     }
267     return range;
270 +(id)rTFForRangeAttributeForElement:(AquaA11yWrapper *)wrapper forParameter:(id)range {
271     NSData * rtfData = nil;
272     NSAttributedString * attrString = (NSAttributedString *) [ AquaA11yTextWrapper attributedStringForRangeAttributeForElement: wrapper forParameter: range ];
273     if ( attrString != nil ) {
274         @try {
275             rtfData = [ attrString RTFFromRange: [ range rangeValue ] documentAttributes: @{NSDocumentTypeDocumentAttribute : NSRTFTextDocumentType} ];
276         } @catch ( NSException * e) {
277             // empty
278         }
279     }
280     return rtfData;
283 +(BOOL)isAttributeSettable:(NSString *)attribute forElement:(AquaA11yWrapper *)wrapper {
284     BOOL isSettable = NO;
285     if ( [ attribute isEqualToString: NSAccessibilityValueAttribute ]
286       || [ attribute isEqualToString: NSAccessibilitySelectedTextAttribute ]
287       || [ attribute isEqualToString: NSAccessibilitySelectedTextRangeAttribute ]
288       || [ attribute isEqualToString: NSAccessibilityVisibleCharacterRangeAttribute ] ) {
289         if ( ! [ [ wrapper accessibilityAttributeValue: NSAccessibilityRoleAttribute ] isEqualToString: NSAccessibilityStaticTextRole ] ) {
290             isSettable = YES;
291         }
292     }
293     return isSettable;
296 @end
298 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */