Bump for 3.6-28
[LibreOffice.git] / offapi / com / sun / star / awt / AccessibleFixedText.idl
blobe5ffcfa884bc533dcb502b3a6538f661fd4b71f9
1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2 /*************************************************************************
4 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
6 * Copyright 2000, 2010 Oracle and/or its affiliates.
8 * OpenOffice.org - a multi-platform office productivity suite
10 * This file is part of OpenOffice.org.
12 * OpenOffice.org is free software: you can redistribute it and/or modify
13 * it under the terms of the GNU Lesser General Public License version 3
14 * only, as published by the Free Software Foundation.
16 * OpenOffice.org is distributed in the hope that it will be useful,
17 * but WITHOUT ANY WARRANTY; without even the implied warranty of
18 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19 * GNU Lesser General Public License version 3 for more details
20 * (a copy is included in the LICENSE file that accompanied this code).
22 * You should have received a copy of the GNU Lesser General Public License
23 * version 3 along with OpenOffice.org. If not, see
24 * <http://www.openoffice.org/license.html>
25 * for a copy of the LGPLv3 License.
27 ************************************************************************/
29 #ifndef __com_sun_star_awt_AccessibleFixedText_idl__
30 #define __com_sun_star_awt_AccessibleFixedText_idl__
32 #include <com/sun/star/accessibility/XAccessibleContext.idl>
33 #include <com/sun/star/accessibility/XAccessibleEventBroadcaster.idl>
34 #include <com/sun/star/accessibility/XAccessibleComponent.idl>
35 #include <com/sun/star/accessibility/XAccessibleExtendedComponent.idl>
36 #include <com/sun/star/accessibility/XAccessibleText.idl>
38 module com { module sun { module star { module awt {
40 /** specifies accessibility support for a fixed text.
42 @since OOo 1.1.2
44 published service AccessibleFixedText
46 /** This interface gives access to the structural information of a
47 fixed text:
49 <ul>
50 <li>Role: The role of a fixed text is <const
51 scope="com::sun::star::accessibility"
52 >AccessibleRole::LABEL</const>.</li>
53 <li>Name: The name of a fixed text is its localized label.</li>
54 <li>Description: The description of a fixed text is its localized
55 help text.</li>
56 <li>Children: There are no children.</li>
57 <li>Parent: The parent is the window that contains the fixed text.</li>
58 <li>Relations: The relations supported by this service are
59 <ul>
60 <li><const scope="com::sun::star::accessibility"
61 >AccessibleRelationType::LABEL_FOR</const> is set
62 if the object is a label for one or more target
63 objects.</li>
64 </ul>
65 </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::MULTI_LINE</const> is set
79 if the object contains multiple lines of text.</li>
80 <li><const scope="com::sun::star::accessibility"
81 >AccessibleStateType::SHOWING</const> is set
82 if the object is displayed on the screen.</li>
83 <li><const scope="com::sun::star::accessibility"
84 >AccessibleStateType::VISIBLE</const> is always set.</li>
85 </ul>
86 </li>
87 </ul>
89 interface ::com::sun::star::accessibility::XAccessibleContext;
91 interface ::com::sun::star::accessibility::XAccessibleEventBroadcaster;
93 interface ::com::sun::star::accessibility::XAccessibleComponent;
95 interface ::com::sun::star::accessibility::XAccessibleExtendedComponent;
97 /** This interface gives read-only access to the text representation
98 of a fixed text.
100 interface ::com::sun::star::accessibility::XAccessibleText;
103 }; }; }; };
105 #endif
107 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */