1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
3 * This file is part of the LibreOffice project.
5 * This Source Code Form is subject to the terms of the Mozilla Public
6 * License, v. 2.0. If a copy of the MPL was not distributed with this
7 * file, You can obtain one at http://mozilla.org/MPL/2.0/.
9 * This file incorporates work covered by the following license notice:
11 * Licensed to the Apache Software Foundation (ASF) under one or more
12 * contributor license agreements. See the NOTICE file distributed
13 * with this work for additional information regarding copyright
14 * ownership. The ASF licenses this file to you under the Apache
15 * License, Version 2.0 (the "License"); you may not use this file
16 * except in compliance with the License. You may obtain a copy of
17 * the License at http://www.apache.org/licenses/LICENSE-2.0 .
20 module com
{ module sun
{ module star
{ module awt
{
22 /** specifies accessibility support for a fixed text.
26 service AccessibleFixedText
28 /** This interface gives access to the structural information of a
32 <li>Role: The role of a fixed text is
33 com::sun::star::accessibility::AccessibleRole::LABEL.</li>
34 <li>Name: The name of a fixed text is its localized label.</li>
35 <li>Description: The description of a fixed text is its localized
37 <li>Children: There are no children.</li>
38 <li>Parent: The parent is the window that contains the fixed text.</li>
39 <li>Relations: The relations supported by this service are
41 <li>com::sun::star::accessibility::AccessibleRelationType::LABEL_FOR
42 is set if the object is a label for one or more target
46 <li>States: The states supported by this service are
48 <li>com::sun::star::accessibility::AccessibleStateType::DEFUNC
49 is set if the object has already been disposed
50 and subsequent calls to this object result in
51 com::sun::star::lang::DisposedException
53 <li>com::sun::star::accessibility::AccessibleStateType::ENABLED
54 is set if the object is enabled.</li>
55 <li>com::sun::star::accessibility::AccessibleStateType::MULTI_LINE
56 is set if the object contains multiple lines of text.</li>
57 <li>com::sun::star::accessibility::AccessibleStateType::SHOWING
58 is set if the object is displayed on the screen.</li>
59 <li>com::sun::star::accessibility::AccessibleStateType::VISIBLE
65 interface ::com
::sun
::star
::accessibility
::XAccessibleContext
;
67 interface ::com
::sun
::star
::accessibility
::XAccessibleEventBroadcaster
;
69 interface ::com
::sun
::star
::accessibility
::XAccessibleComponent
;
71 interface ::com
::sun
::star
::accessibility
::XAccessibleExtendedComponent
;
73 /** This interface gives read-only access to the text representation
76 interface ::com
::sun
::star
::accessibility
::XAccessibleText
;
81 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */