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_AccessibleComboBox_idl__
25#define __com_sun_star_awt_AccessibleComboBox_idl__
26
27#ifndef __com_sun_star_accessibility_AccessibleContext_idl__
28#include <com/sun/star/accessibility/AccessibleContext.idl>
29#endif
30
31module com { module sun { module star { module accessibility {
32
33 published interface XAccessibleText;
34 published interface XAccessibleExtendedComponent;
35 published interface XAccessibleComponent;
36
37}; }; }; };
38
39module com { module sun { module star { module awt {
40
41/** specifies accessibility support for a combo box.
42
43    @see com::sun::star::accessibility::AccessibleContext
44	@see com::sun::star::accessibility::XAccessibleComponent
45	@see com::sun::star::accessibility::XAccessibleExtendedComponent
46	@since OpenOffice 1.1.2
47*/
48published service AccessibleComboBox
49{
50	/** This interface gives access to the structural information of a combo box:
51
52       <ul>
53       <li>Role: The role of a combo box is <const
54           scope="com::sun::star::accessibility"
55           >AccessibleRole::COMBO_BOX</const>.</li>
56       <li>Name: The name of a combo box is its localized label.</li>
57       <li>Description: The description of a combo box is its localized
58           help text.</li>
59       <li>Children: There exists two children.
60			The first is a <type scope="com::sun::star::awt">AccessibleTextField</type>
61			and the 2nd is a <type scope="com::sun::star::awt">AccessibleList</type>. </li>
62       <li>Parent: The parent is the window that contains the combo box.</li>
63       <li>Relations: There are no relations.</li>
64       <li>States: The states supported by this service are
65           <ul>
66           <li><const scope="com::sun::star::accessibility"
67               >AccessibleStateType::DEFUNC</const>
68               is set if the object has already been disposed
69               and subsequent calls to this object result in
70               <type scope="com::sun::star::lang">DisposedException</type>
71               exceptions.</li>
72           <li><const scope="com::sun::star::accessibility"
73               >AccessibleStateType::ENABLED</const> is set
74               if the object is enabled.</li>
75           <li><const scope="com::sun::star::accessibility"
76               >AccessibleStateType::FOCUSABLE</const> is always set.</li>
77           <li><const scope="com::sun::star::accessibility"
78               >AccessibleStateType::FOCUSED</const> is set
79               if the object currently has the keyboard focus.</li>
80           <li><const scope="com::sun::star::accessibility"
81               >AccessibleStateType::ACTIVE</const> is set
82               if a child has currently the focus.</li>
83		   <li><const scope="com::sun::star::accessibility"
84               >AccessibleStateType::RESIZABLE</const> is set
85               if the object can be resized.</li>
86           <li><const scope="com::sun::star::accessibility"
87               >AccessibleStateType::SHOWING</const> is set
88               if the object is displayed on the screen.</li>
89           <li><const scope="com::sun::star::accessibility"
90               >AccessibleStateType::VISIBLE</const> is always set.</li>
91           </ul>
92           </li>
93       </ul>
94    */
95
96    service   com::sun::star::accessibility::AccessibleContext;
97
98	interface com::sun::star::accessibility::XAccessibleComponent;
99	interface com::sun::star::accessibility::XAccessibleExtendedComponent;
100};
101
102}; }; }; };
103
104#endif
105