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_AccessibleFixedText_idl__
25#define __com_sun_star_awt_AccessibleFixedText_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#ifndef __com_sun_star_accessibility_XAccessibleText_idl__
40#include <com/sun/star/accessibility/XAccessibleText.idl>
41#endif
42
43module com { module sun { module star { module awt {
44
45/** specifies accessibility support for a fixed text.
46
47    @since OpenOffice 1.1.2
48 */
49published service AccessibleFixedText
50{
51    /** This interface gives access to the structural information of a
52        fixed text:
53
54        <ul>
55        <li>Role: The role of a fixed text is <const
56            scope="com::sun::star::accessibility"
57            >AccessibleRole::LABEL</const>.</li>
58        <li>Name: The name of a fixed text is its localized label.</li>
59        <li>Description: The description of a fixed text is its localized
60            help text.</li>
61        <li>Children: There are no children.</li>
62        <li>Parent: The parent is the window that contains the fixed text.</li>
63        <li>Relations: The relations supported by this service are
64            <ul>
65            <li><const scope="com::sun::star::accessibility"
66                >AccessibleRelationType::LABEL_FOR</const> is set
67                if the object is a label for one or more target
68                objects.</li>
69            </ul>
70            </li>
71        <li>States: The states supported by this service are
72            <ul>
73            <li><const scope="com::sun::star::accessibility"
74                >AccessibleStateType::DEFUNC</const>
75                is set if the object has already been disposed
76                and subsequent calls to this object result in
77                <type scope="com::sun::star::lang">DisposedException</type>
78                exceptions.</li>
79            <li><const scope="com::sun::star::accessibility"
80                >AccessibleStateType::ENABLED</const> is set
81                if the object is enabled.</li>
82            <li><const scope="com::sun::star::accessibility"
83                >AccessibleStateType::MULTI_LINE</const> is set
84                if the object contains multiple lines of text.</li>
85            <li><const scope="com::sun::star::accessibility"
86                >AccessibleStateType::SHOWING</const> is set
87                if the object is displayed on the screen.</li>
88            <li><const scope="com::sun::star::accessibility"
89                >AccessibleStateType::VISIBLE</const> is always set.</li>
90            </ul>
91            </li>
92        </ul>
93     */
94    interface ::com::sun::star::accessibility::XAccessibleContext;
95
96    interface ::com::sun::star::accessibility::XAccessibleEventBroadcaster;
97
98    interface ::com::sun::star::accessibility::XAccessibleComponent;
99
100    interface ::com::sun::star::accessibility::XAccessibleExtendedComponent;
101
102    /** This interface gives read-only access to the text representation
103        of a fixed text.
104     */
105    interface ::com::sun::star::accessibility::XAccessibleText;
106};
107
108}; }; }; };
109
110#endif
111