1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
3 * This file is part of the LibreOffice project.
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/.
9 * This file incorporates work covered by the following license notice:
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 .
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 ];
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;
53 -(id)verticalScrollBarAttribute {
54 return [ self scrollBarWithOrientation: NSAccessibilityVerticalOrientationValue ];
57 -(id)horizontalScrollBarAttribute {
58 return [ self scrollBarWithOrientation: NSAccessibilityHorizontalOrientationValue ];
61 -(NSArray *)accessibilityAttributeNames {
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,
72 return attributeNames;
77 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */