/* clang-format off */
/* 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/. */

#ifndef ACCESSIBLE_MAC_MOZACTIONELEMENTS_H_
#define ACCESSIBLE_MAC_MOZACTIONELEMENTS_H_

#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;

@end

@interface mozCheckboxAccessible : mozButtonAccessible

// override
- (id)moxValue;

// override
- (void)stateChanged:(uint64_t)state isEnabled:(BOOL)enabled;

@end

// LocalAccessible for a radio button
@interface mozRadioButtonAccessible : mozCheckboxAccessible

// override
- (NSArray*)moxLinkedUIElements;

@end

/**
 * Accessible for a PANE
 */
@interface mozPaneAccessible : mozAccessible

// override
- (NSArray*)moxChildren;

@end

/**
 * Base accessible for a range, an acc with a min, max that cannot
 * be modified by the user directly.
 */

@interface mozRangeAccessible : mozAccessible

// override
- (id)moxValue;

// override
- (id)moxMinValue;

// override
- (id)moxMaxValue;

// override
- (NSString*)moxOrientation;

// override
- (void)handleAccessibleEvent:(uint32_t)eventType;

@end

@interface mozMeterAccessible : mozRangeAccessible

// override
- (NSString*)moxValueDescription;

@end

/**
 * Base accessible for an incrementable, a settable range
 */
@interface mozIncrementableAccessible : mozRangeAccessible

// override
- (NSString*)moxValueDescription;

// override
- (void)moxSetValue:(id)value;

// override
- (void)moxPerformIncrement;

// override
- (void)moxPerformDecrement;

- (void)changeValueBySteps:(int)factor;

@end

@interface mozDatePickerAccessible : mozAccessible

// override
- (NSString*)moxTitle;

@end

#endif  // ACCESSIBLE_MAC_MOZACTIONELEMENTS_H_
