1 /* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*-
2 /* ***** BEGIN LICENSE BLOCK *****
3 * Version: MPL 1.1/GPL 2.0/LGPL 2.1
5 * The contents of this file are subject to the Mozilla Public License Version
6 * 1.1 (the "License"); you may not use this file except in compliance with
7 * the License. You may obtain a copy of the License at
8 * http://www.mozilla.org/MPL/
10 * Software distributed under the License is distributed on an "AS IS" basis,
11 * WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
12 * for the specific language governing rights and limitations under the
15 * The Original Code is mozilla.org code.
17 * The Initial Developer of the Original Code is
18 * Netscape Communications Corporation.
19 * Portions created by the Initial Developer are Copyright (C) 2003
20 * the Initial Developer. All Rights Reserved.
23 * Marc Mulcahy (marc.mulcahy@sun.com)
24 * Paul Sandoz (paul.sandoz@sun.com)
25 * Bill Haneman (bill.haneman@sun.com)
26 * Kyle Yuan (kyle.yuan@sun.com)
27 * Aaron Leventhal (aaronl@netscape.com)
29 * Alternatively, the contents of this file may be used under the terms of
30 * either of the GNU General Public License Version 2 or later (the "GPL"),
31 * or the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
32 * in which case the provisions of the GPL or the LGPL are applicable instead
33 * of those above. If you wish to allow use of your version of this file only
34 * under the terms of either the GPL or the LGPL, and not to allow others to
35 * use your version of this file under the terms of the MPL, indicate your
36 * decision by deleting the provisions above and replace them with the notice
37 * and other provisions required by the GPL or the LGPL. If you do not delete
38 * the provisions above, a recipient may use your version of this file under
39 * the terms of any one of the MPL, the GPL or the LGPL.
41 * ***** END LICENSE BLOCK ***** */
42 #include
"nsISupports.idl"
43 #include
"nsIAccessible.idl"
44 #include
"nsIArray.idl"
47 * An interface for the accessibility module and in-process accessibility clients
48 * for dealing with getting and changing the selection of accessible nodes.
50 * @status UNDER_REVIEW
52 [scriptable
, uuid(34d268d6
-1dd2
-11b2
-9d63
-83a5e0ada290
)]
53 interface nsIAccessibleSelectable
: nsISupports
55 const unsigned long eSelection_Add
= 0;
56 const unsigned long eSelection_Remove
= 1;
57 const unsigned long eSelection_GetState
= 2;
60 * Return an nsIArray of selected nsIAccessible children
62 nsIArray GetSelectedChildren
();
65 * Returns the number of accessible children currently selected.
67 readonly attribute
long selectionCount
;
70 * Adds the specified accessible child of the object to the
72 * If the specified object is already selected, then it does nothing.
73 * @throws NS_ERROR_FAILURE if the specified object is not selectable.
75 void addChildToSelection
(in long index
);
78 * Removes the specified child of the object from the object's selection.
79 * If the specified object was not selected, then it does nothing.
80 * @throws NS_ERROR_FAILURE if the specified object is not selectable.
82 void removeChildFromSelection
(in long index
);
85 * Clears the selection in the object so that no children in the object
88 void clearSelection
();
91 * Returns a reference to the accessible object representing the specified
92 * selected child of the object.
93 * @param index Zero-based selected accessible child index
94 * @return The nth selected accessible child
96 nsIAccessible refSelection
(in long index
);
99 * Determines if the current child of this object is selected
100 * @param The zero-based accessible child index
101 * @return Returns true if the child is selected, false if not.
103 boolean isChildSelected
(in long index
);
106 * Select all children
107 * @return If the object does not accept multiple selection, return false.
108 * Otherwise, returns true.
110 boolean selectAllSelection
();