Wed, 31 Dec 2014 07:16:47 +0100
Revert simplistic fix pending revisit of Mozilla integration attempt.
michael@0 | 1 | /* -*- Mode: Objective-C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */ |
michael@0 | 2 | /* This Source Code Form is subject to the terms of the Mozilla Public |
michael@0 | 3 | * License, v. 2.0. If a copy of the MPL was not distributed with this |
michael@0 | 4 | * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ |
michael@0 | 5 | |
michael@0 | 6 | #import <Cocoa/Cocoa.h> |
michael@0 | 7 | #import "mozAccessible.h" |
michael@0 | 8 | |
michael@0 | 9 | /* Simple subclasses for things like checkboxes, buttons, etc. */ |
michael@0 | 10 | |
michael@0 | 11 | @interface mozButtonAccessible : mozAccessible |
michael@0 | 12 | - (void)click; |
michael@0 | 13 | - (BOOL)isTab; |
michael@0 | 14 | @end |
michael@0 | 15 | |
michael@0 | 16 | @interface mozCheckboxAccessible : mozButtonAccessible |
michael@0 | 17 | // returns one of the constants defined in CheckboxValue |
michael@0 | 18 | - (int)isChecked; |
michael@0 | 19 | @end |
michael@0 | 20 | |
michael@0 | 21 | /* Used for buttons that may pop up a menu. */ |
michael@0 | 22 | @interface mozPopupButtonAccessible : mozButtonAccessible |
michael@0 | 23 | @end |
michael@0 | 24 | |
michael@0 | 25 | /* Class for tabs - not individual tabs */ |
michael@0 | 26 | @interface mozTabsAccessible : mozAccessible |
michael@0 | 27 | { |
michael@0 | 28 | NSMutableArray* mTabs; |
michael@0 | 29 | } |
michael@0 | 30 | -(id)tabs; |
michael@0 | 31 | @end |
michael@0 | 32 | |
michael@0 | 33 | /** |
michael@0 | 34 | * Accessible for a PANE |
michael@0 | 35 | */ |
michael@0 | 36 | @interface mozPaneAccessible : mozAccessible |
michael@0 | 37 | |
michael@0 | 38 | @end |