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