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_AccessibleWindow_idl__
25#define __com_sun_star_awt_AccessibleWindow_idl__
26
27#ifndef __com_sun_star_accessibility_XAccessibleContext_idl__
28#include <com/sun/star/accessibility/XAccessibleContext.idl>
29#endif
30#ifndef __com_sun_star_accessibility_XAccessibleEventBroadcaster_idl__
31#include <com/sun/star/accessibility/XAccessibleEventBroadcaster.idl>
32#endif
33#ifndef __com_sun_star_accessibility_XAccessibleComponent_idl__
34#include <com/sun/star/accessibility/XAccessibleComponent.idl>
35#endif
36#ifndef __com_sun_star_accessibility_XAccessibleExtendedComponent_idl__
37#include <com/sun/star/accessibility/XAccessibleExtendedComponent.idl>
38#endif
39
40module com { module sun { module star { module awt {
41
42/** specifies accessibility support for a window.
43
44    @since OpenOffice 1.1.2
45 */
46published service AccessibleWindow
47{
48    /** This interface gives access to the structural information of a window:
49
50        <ul>
51        <li>Role: The role of a window is not fixed. A window may have
52            one of the following roles:
53            <ul>
54            <li><const scope="com::sun::star::accessibility"
55                >AccessibleRole::DIALOG</const></li>
56            <li><const scope="com::sun::star::accessibility"
57                >AccessibleRole::FRAME</const></li>
58            <li><const scope="com::sun::star::accessibility"
59                >AccessibleRole::LAYERED_PANE</const></li>
60            <li><const scope="com::sun::star::accessibility"
61                >AccessibleRole::PANEL</const></li>
62            <li><const scope="com::sun::star::accessibility"
63                >AccessibleRole::ROOT_PANE</const></li>
64            <li><const scope="com::sun::star::accessibility"
65                >AccessibleRole::SCROLL_PANE</const></li>
66            <li><const scope="com::sun::star::accessibility"
67                >AccessibleRole::SPLIT_PANE</const></li>
68            <li><const scope="com::sun::star::accessibility"
69                >AccessibleRole::WINDOW</const></li>
70            <li>...</li>
71            </ul>
72            </li>
73        <li>Name: The name of a window is its localized title.</li>
74        <li>Description: The description of a window is its localized
75            help text.</li>
76        <li>Children: The children of a window are the child windows.</li>
77        <li>Parent: The parent of a window is the parent window.</li>
78        <li>Relations: There are no relations.</li>
79        <li>States: The states supported by this service are
80            <ul>
81            <li><const scope="com::sun::star::accessibility"
82                >AccessibleStateType::ACTIVE</const> is set
83                if the object is currently the active object.</li>
84            <li><const scope="com::sun::star::accessibility"
85                >AccessibleStateType::DEFUNC</const>
86                is set if the object has already been disposed
87                and subsequent calls to this object result in
88                <type scope="com::sun::star::lang">DisposedException</type>
89                exceptions.</li>
90            <li><const scope="com::sun::star::accessibility"
91                >AccessibleStateType::ENABLED</const> is set
92                if the object is enabled.</li>
93            <li><const scope="com::sun::star::accessibility"
94                >AccessibleStateType::FOCUSABLE</const> is always set.</li>
95            <li><const scope="com::sun::star::accessibility"
96                >AccessibleStateType::FOCUSED</const> is set
97                if the object currently has the keyboard focus.</li>
98            <li><const scope="com::sun::star::accessibility"
99                >AccessibleStateType::MODAL</const> is set
100                if the object is modal.</li>
101            <li><const scope="com::sun::star::accessibility"
102                >AccessibleStateType::RESIZABLE</const> is set
103                if the size of the object is not fixed.</li>
104            <li><const scope="com::sun::star::accessibility"
105                >AccessibleStateType::SHOWING</const> is set
106                if the object is displayed on the screen.</li>
107            <li><const scope="com::sun::star::accessibility"
108                >AccessibleStateType::VISIBLE</const> is always set.</li>
109            </ul>
110            </li>
111        </ul>
112     */
113    interface ::com::sun::star::accessibility::XAccessibleContext;
114    interface ::com::sun::star::accessibility::XAccessibleEventBroadcaster;
115    interface ::com::sun::star::accessibility::XAccessibleComponent;
116    interface ::com::sun::star::accessibility::XAccessibleExtendedComponent;
117};
118
119}; }; }; };
120
121#endif
122