gecko-dev/accessible/mac/mozAccessible.h
Eitan Isaacson 2a6f71babd Bug 1660906 - Introduce .clang-format file for Objective C rules. r=morgan
I also altered the mode line in all the file headers so that editors use the correct syntax features.

Differential Revision: https://phabricator.services.mozilla.com/D88081
2020-08-25 21:40:32 +00:00

220 lines
4.8 KiB
Objective-C

/* 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 "AccessibleWrap.h"
#include "ProxyAccessible.h"
#include "AccessibleOrProxy.h"
#import <Cocoa/Cocoa.h>
#import "MOXAccessibleBase.h"
@class mozRootAccessible;
/**
* All mozAccessibles are either abstract objects (that correspond to XUL
* widgets, HTML frames, etc) or are attached to a certain view; for example
* a document view. When we hand an object off to an AT, we always want
* to give it the represented view, in the latter case.
*/
namespace mozilla {
namespace a11y {
inline mozAccessible* GetNativeFromGeckoAccessible(
mozilla::a11y::AccessibleOrProxy aAccOrProxy) {
MOZ_ASSERT(!aAccOrProxy.IsNull(), "Cannot get native from null accessible");
if (Accessible* acc = aAccOrProxy.AsAccessible()) {
mozAccessible* native = nil;
acc->GetNativeInterface((void**)&native);
return native;
}
ProxyAccessible* proxy = aAccOrProxy.AsProxy();
return reinterpret_cast<mozAccessible*>(proxy->GetWrapper());
}
} // a11y
} // mozilla
@interface mozAccessible : MOXAccessibleBase {
/**
* Reference to the accessible we were created with;
* either a proxy accessible or an accessible wrap.
*/
mozilla::a11y::AccessibleOrProxy mGeckoAccessible;
/**
* The role of our gecko accessible.
*/
mozilla::a11y::role mRole;
/**
* A cache of a subset of our states.
*/
uint64_t mCachedState;
}
// inits with the given wrap or proxy accessible
- (id)initWithAccessible:(mozilla::a11y::AccessibleOrProxy)aAccOrProxy;
// allows for gecko accessible access outside of the class
- (mozilla::a11y::AccessibleOrProxy)geckoAccessible;
- (mozilla::a11y::AccessibleOrProxy)geckoDocument;
// override
- (void)dealloc;
// should a child be disabled
- (BOOL)disableChild:(mozAccessible*)child;
// Given a gecko accessibility event type, post the relevant
// system accessibility notification.
// Note: when overriding or adding new events, make sure your events aren't
// filtered out in Platform::ProxyEvent or AccessibleWrap::HandleAccEvent!
- (void)handleAccessibleEvent:(uint32_t)eventType;
- (void)handleAccessibleTextChangeEvent:(NSString*)change
inserted:(BOOL)isInserted
inContainer:
(const mozilla::a11y::AccessibleOrProxy&)
container
at:(int32_t)start;
// internal method to retrieve a child at a given index.
- (id)childAt:(uint32_t)i;
// Get gecko accessible's state.
- (uint64_t)state;
// Get gecko accessible's state filtered through given mask.
- (uint64_t)stateWithMask:(uint64_t)mask;
// Notify of a state change, so the cache can be altered.
- (void)stateChanged:(uint64_t)state isEnabled:(BOOL)enabled;
// Invalidate cached state.
- (void)invalidateState;
#pragma mark - mozAccessible protocol / widget
// override
- (BOOL)hasRepresentedView;
// override
- (id)representedView;
// override
- (BOOL)isRoot;
#pragma mark - MOXAccessible protocol
// override
- (BOOL)moxBlockSelector:(SEL)selector;
// override
- (id)moxHitTest:(NSPoint)point;
// override
- (id)moxFocusedUIElement;
- (id<MOXTextMarkerSupport>)moxTextMarkerDelegate;
// Attribute getters
// override
- (id<mozAccessible>)moxParent;
// override
- (NSArray*)moxChildren;
// override
- (NSValue*)moxSize;
// override
- (NSValue*)moxPosition;
// override
- (NSString*)moxRole;
// override
- (NSString*)moxSubrole;
// override
- (NSString*)moxRoleDescription;
// override
- (NSWindow*)moxWindow;
// override
- (id)moxValue;
// override
- (NSString*)moxTitle;
// override
- (NSString*)moxLabel;
// override
- (NSString*)moxHelp;
// override
- (NSNumber*)moxEnabled;
// override
- (NSNumber*)moxFocused;
// override
- (NSNumber*)moxSelected;
// override
- (NSString*)moxARIACurrent;
// override
- (id)moxTitleUIElement;
// override
- (NSString*)moxDOMIdentifier;
// override
- (NSNumber*)moxRequired;
// override
- (void)moxSetFocused:(NSNumber*)focused;
// override
- (void)moxPerformScrollToVisible;
// override
- (void)moxPerformShowMenu;
// override
- (void)moxPerformPress;
// override
- (BOOL)moxIgnoreWithParent:(mozAccessible*)parent;
// override
- (BOOL)moxIgnoreChild:(mozAccessible*)child;
#pragma mark -
// makes ourselves "expired". after this point, we might be around if someone
// has retained us (e.g., a third-party), but we really contain no information.
// override
- (void)expire;
// override
- (BOOL)isExpired;
// ---- NSAccessibility methods ---- //
// override
- (NSString*)description;
@end