Thu, 22 Jan 2015 13:21:57 +0100
Incorporate requested changes from Mozilla in review:
https://bugzilla.mozilla.org/show_bug.cgi?id=1123480#c6
michael@0 | 1 | /* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */ |
michael@0 | 2 | /* vim: set ts=2 et sw=2 tw=80: */ |
michael@0 | 3 | /* This Source Code Form is subject to the terms of the Mozilla Public |
michael@0 | 4 | * License, v. 2.0. If a copy of the MPL was not distributed with this file, |
michael@0 | 5 | * You can obtain one at http://mozilla.org/MPL/2.0/. */ |
michael@0 | 6 | |
michael@0 | 7 | #ifndef mozilla_a11y_xpcAccessibleSelectable_h_ |
michael@0 | 8 | #define mozilla_a11y_xpcAccessibleSelectable_h_ |
michael@0 | 9 | |
michael@0 | 10 | #include "nsIAccessibleSelectable.h" |
michael@0 | 11 | |
michael@0 | 12 | class nsIAccessible; |
michael@0 | 13 | class nsIArray; |
michael@0 | 14 | |
michael@0 | 15 | namespace mozilla { |
michael@0 | 16 | namespace a11y { |
michael@0 | 17 | |
michael@0 | 18 | class xpcAccessibleSelectable : public nsIAccessibleSelectable |
michael@0 | 19 | { |
michael@0 | 20 | public: |
michael@0 | 21 | NS_IMETHOD GetSelectedItems(nsIArray** aSelectedItems) MOZ_FINAL; |
michael@0 | 22 | NS_IMETHOD GetSelectedItemCount(uint32_t* aSelectedItemCount) MOZ_FINAL; |
michael@0 | 23 | NS_IMETHOD GetSelectedItemAt(uint32_t aIndex, nsIAccessible** aItem) MOZ_FINAL; |
michael@0 | 24 | NS_IMETHOD ScriptableIsItemSelected(uint32_t aIndex, bool* aIsSelected) MOZ_FINAL; |
michael@0 | 25 | NS_IMETHOD ScriptableAddItemToSelection(uint32_t aIndex) MOZ_FINAL; |
michael@0 | 26 | NS_IMETHOD ScriptableRemoveItemFromSelection(uint32_t aIndex) MOZ_FINAL; |
michael@0 | 27 | NS_IMETHOD ScriptableSelectAll(bool* aIsMultiSelect) MOZ_FINAL; |
michael@0 | 28 | NS_IMETHOD ScriptableUnselectAll() MOZ_FINAL; |
michael@0 | 29 | |
michael@0 | 30 | private: |
michael@0 | 31 | xpcAccessibleSelectable() { } |
michael@0 | 32 | friend class Accessible; |
michael@0 | 33 | |
michael@0 | 34 | xpcAccessibleSelectable(const xpcAccessibleSelectable&) MOZ_DELETE; |
michael@0 | 35 | xpcAccessibleSelectable& operator =(const xpcAccessibleSelectable&) MOZ_DELETE; |
michael@0 | 36 | }; |
michael@0 | 37 | |
michael@0 | 38 | } // namespace a11y |
michael@0 | 39 | } // namespace mozilla |
michael@0 | 40 | |
michael@0 | 41 | #endif |