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