blob: 3f171ada8cacb0d7989fc9891b618eb61eee5413 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
|
/* clang-format off */
/* -*- Mode: Objective-C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
/* clang-format on */
/* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
#include "RootAccessibleWrap.h"
#import "mozRootAccessible.h"
#import "mozView.h"
#include "gfxPlatform.h"
// This must be included last:
#include "nsObjCExceptions.h"
using namespace mozilla::a11y;
static id<mozAccessible, mozView> getNativeViewFromRootAccessible(
LocalAccessible* aAccessible) {
RootAccessibleWrap* root =
static_cast<RootAccessibleWrap*>(aAccessible->AsRoot());
id<mozAccessible, mozView> nativeView = nil;
root->GetNativeWidget((void**)&nativeView);
return nativeView;
}
#pragma mark -
@implementation mozRootAccessible
- (id)initWithAccessible:(mozilla::a11y::Accessible*)aAcc {
NS_OBJC_BEGIN_TRY_BLOCK_RETURN;
MOZ_ASSERT(!aAcc->IsRemote(), "mozRootAccessible is never a proxy");
mParallelView = getNativeViewFromRootAccessible(aAcc->AsLocal());
return [super initWithAccessible:aAcc];
NS_OBJC_END_TRY_BLOCK_RETURN(nil);
}
- (NSNumber*)moxMain {
return @([[self moxWindow] isMainWindow]);
}
- (NSNumber*)moxMinimized {
return @([[self moxWindow] isMiniaturized]);
}
// return the AXParent that our parallell NSView tells us about.
- (id)moxUnignoredParent {
NS_OBJC_BEGIN_TRY_BLOCK_RETURN;
// If there is no represented view (eg. headless), this will return nil.
return [[self representedView]
accessibilityAttributeValue:NSAccessibilityParentAttribute];
NS_OBJC_END_TRY_BLOCK_RETURN(nil);
}
- (BOOL)hasRepresentedView {
return YES;
}
// this will return our parallell NSView. see mozDocAccessible.h
- (id)representedView {
NS_OBJC_BEGIN_TRY_BLOCK_RETURN;
MOZ_ASSERT(mParallelView || gfxPlatform::IsHeadless(),
"root accessible does not have a native parallel view.");
return mParallelView;
NS_OBJC_END_TRY_BLOCK_RETURN(nil);
}
- (BOOL)isRoot {
return YES;
}
@end
|