michael@0: /* -*- Mode: Objective-C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */ michael@0: /* This Source Code Form is subject to the terms of the Mozilla Public michael@0: * License, v. 2.0. If a copy of the MPL was not distributed with this michael@0: * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ michael@0: michael@0: #import michael@0: #import "mozAccessible.h" michael@0: michael@0: /* Simple subclasses for things like checkboxes, buttons, etc. */ michael@0: michael@0: @interface mozButtonAccessible : mozAccessible michael@0: - (void)click; michael@0: - (BOOL)isTab; michael@0: @end michael@0: michael@0: @interface mozCheckboxAccessible : mozButtonAccessible michael@0: // returns one of the constants defined in CheckboxValue michael@0: - (int)isChecked; michael@0: @end michael@0: michael@0: /* Used for buttons that may pop up a menu. */ michael@0: @interface mozPopupButtonAccessible : mozButtonAccessible michael@0: @end michael@0: michael@0: /* Class for tabs - not individual tabs */ michael@0: @interface mozTabsAccessible : mozAccessible michael@0: { michael@0: NSMutableArray* mTabs; michael@0: } michael@0: -(id)tabs; michael@0: @end michael@0: michael@0: /** michael@0: * Accessible for a PANE michael@0: */ michael@0: @interface mozPaneAccessible : mozAccessible michael@0: michael@0: @end