gecko-dev/accessible/mac/mozActionElements.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

81 lines
1.6 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/. */
#import <Cocoa/Cocoa.h>
#import "mozAccessible.h"
/* Simple subclasses for things like checkboxes, buttons, etc. */
@interface mozButtonAccessible : mozAccessible
// override
- (NSNumber*)moxHasPopup;
// override
- (NSString*)moxPopupValue;
@end
@interface mozPopupButtonAccessible : mozButtonAccessible
// override
- (NSString*)moxTitle;
// override
- (BOOL)moxBlockSelector:(SEL)selector;
// override
- (NSArray*)moxChildren;
// override
- (void)stateChanged:(uint64_t)state isEnabled:(BOOL)enabled;
// override
- (BOOL)moxIgnoreWithParent:(mozAccessible*)parent;
@end
@interface mozCheckboxAccessible : mozButtonAccessible
// override
- (id)moxValue;
@end
// Accessible for a radio button
@interface mozRadioButtonAccessible : mozCheckboxAccessible
- (id)accessibilityAttributeValue:(NSString*)attribute;
@end
/**
* Accessible for a PANE
*/
@interface mozPaneAccessible : mozAccessible
// override
- (NSArray*)moxChildren;
@end
/**
* Base accessible for an incrementable
*/
@interface mozIncrementableAccessible : mozAccessible
// override
- (void)moxPerformIncrement;
// override
- (void)moxPerformDecrement;
// override
- (void)handleAccessibleEvent:(uint32_t)eventType;
- (void)changeValueBySteps:(int)factor;
@end