1/**************************************************************
2 *
3 * Licensed to the Apache Software Foundation (ASF) under one
4 * or more contributor license agreements.  See the NOTICE file
5 * distributed with this work for additional information
6 * regarding copyright ownership.  The ASF licenses this file
7 * to you under the Apache License, Version 2.0 (the
8 * "License"); you may not use this file except in compliance
9 * with the License.  You may obtain a copy of the License at
10 *
11 *   http://www.apache.org/licenses/LICENSE-2.0
12 *
13 * Unless required by applicable law or agreed to in writing,
14 * software distributed under the License is distributed on an
15 * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
16 * KIND, either express or implied.  See the License for the
17 * specific language governing permissions and limitations
18 * under the License.
19 *
20 *************************************************************/
21
22
23
24#ifndef __com_sun_star_awt_AccessibleListItem_idl__
25#define __com_sun_star_awt_AccessibleListItem_idl__
26
27#ifndef __com_sun_star_accessibility_AccessibleContext_idl__
28#include <com/sun/star/accessibility/AccessibleContext.idl>
29#endif
30
31
32module com { module sun { module star { module accessibility {
33
34 published interface XAccessibleText;
35 published interface XAccessibleComponent;
36
37}; }; }; };
38
39module com { module sun { module star { module awt {
40
41/** specifies accessibility support for a list item.
42
43    @see com::sun::star::accessibility::AccessibleContext
44	@see com::sun::star::accessibility::XAccessibleComponent
45    @see com::sun::star::accessibility::XAccessibleText
46
47	@since OpenOffice 1.1.2
48*/
49published service AccessibleListItem
50{
51	/** This interface gives access to the structural information of a list item:
52
53       <ul>
54       <li>Role: The role of a list item is <const
55           scope="com::sun::star::accessibility"
56           >AccessibleRole::LIST_ITEM</const>.</li>
57       <li>Name: The name of a list item is the text of the item.</li>
58       <li>Description: The description of a list item is empty.</li>
59       <li>Children: There exists no children.</li>
60       <li>Parent: The parent is of type <type scope="com::sun::star::awt">AccessibleList</type>.</li>
61       <li>Relations: There are no relations.</li>
62       <li>States: The states supported by this service are
63           <ul>
64           <li><const scope="com::sun::star::accessibility"
65               >AccessibleStateType::DEFUNC</const>
66               is set if the object has already been disposed
67               and subsequent calls to this object result in
68               <type scope="com::sun::star::lang">DisposedException</type>
69               exceptions.</li>
70           <li><const scope="com::sun::star::accessibility"
71               >AccessibleStateType::ENABLED</const> is always set.</li>
72           <li><const scope="com::sun::star::accessibility"
73               >AccessibleStateType::SHOWING</const> is set
74               if the object is displayed on the screen.</li>
75           <li><const scope="com::sun::star::accessibility"
76               >AccessibleStateType::VISIBLE</const> is always set.</li>
77		   <li><const scope="com::sun::star::accessibility"
78               >AccessibleStateType::TRANSIENT</const> is always set.</li>
79		   <li><const scope="com::sun::star::accessibility"
80               >AccessibleStateType::SELECTABLE</const> is always set.</li>
81		   <li><const scope="com::sun::star::accessibility"
82               >AccessibleStateType::SELECTED</const> is set
83			   when the item is selected.</li>
84           </ul>
85           </li>
86       </ul>
87    */
88    service   com::sun::star::accessibility::AccessibleContext;
89
90	interface com::sun::star::accessibility::XAccessibleComponent;
91
92    /** This interface gives read-only access to the text representation
93        of a list item.
94     */
95    interface com::sun::star::accessibility::XAccessibleText;
96};
97
98}; }; }; };
99
100#endif
101