bump product version to 7.2.5.1
[LibreOffice.git] / vcl / osx / a11ywrapperscrollarea.mm
blobb0b963a6b40376941163e4a9b52226641b4d1283
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>
23 #include "a11ywrapperscrollarea.h"
24 #include "a11ywrapperscrollbar.h"
25 #include "a11yrolehelper.h"
27 // Wrapper for AXScrollArea role
29 @implementation AquaA11yWrapperScrollArea : AquaA11yWrapper
31 -(id)scrollBarWithOrientation:(NSString *)orientation {
32     AquaA11yWrapper * theScrollBar = nil;
33     NSAutoreleasePool * pool = [ [ NSAutoreleasePool alloc ] init ];
34     NSArray * elementChildren = [ self accessibilityAttributeValue: NSAccessibilityChildrenAttribute ];
35     if ( [ elementChildren count ] > 0 ) {
36         NSEnumerator * enumerator = [ elementChildren objectEnumerator ];
37         id child;
38         while ( ( child = [ enumerator nextObject ] ) ) {
39             AquaA11yWrapper * element = static_cast<AquaA11yWrapper *>(child);
40             if ( [ element isKindOfClass: [ AquaA11yWrapperScrollBar class ] ] ) { 
41                 AquaA11yWrapperScrollBar * scrollBar = static_cast<AquaA11yWrapperScrollBar *>(element);
42                 if ( [ [ scrollBar orientationAttribute ] isEqualToString: orientation ] ) {
43                     theScrollBar = scrollBar;
44                     break;
45                 }
46             }
47         }
48     }
49     [ pool release ];
50     return theScrollBar;
53 -(id)verticalScrollBarAttribute {
54     return [ self scrollBarWithOrientation: NSAccessibilityVerticalOrientationValue ];
57 -(id)horizontalScrollBarAttribute {
58     return [ self scrollBarWithOrientation: NSAccessibilityHorizontalOrientationValue ];
61 -(NSArray *)accessibilityAttributeNames {
62     // Default Attributes
63     NSMutableArray * attributeNames = [ NSMutableArray arrayWithArray: [ super accessibilityAttributeNames ] ];
64     // Special Attributes and removing unwanted attributes depending on role
65     [ attributeNames removeObject: NSAccessibilityEnabledAttribute ];
66     [ attributeNames addObjectsFromArray: [ NSArray arrayWithObjects:
67             NSAccessibilityContentsAttribute, 
68             NSAccessibilityVerticalScrollBarAttribute, 
69             NSAccessibilityHorizontalScrollBarAttribute, 
70             nil ]
71     ];
72     return attributeNames;
75 @end
77 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */