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 .
23 module com
{ module sun
{ module star
{ module text
{
26 /** The accessible view of an inactive embedded object. If an embedded
27 object gets active, the active document gets an accessible object
28 tree of its own. This tree is not a subtree of the object that supports
29 this service but of the document service itself. The tree exist only
30 until the object is deactivated.
34 service AccessibleTextEmbeddedObject
36 /** This interface comprises the basic accessibility of embedded objects.
39 <li>The parent returned by
40 ::com::sun::star::accessibility::XAccessibleContext::getAccessibleParent()
41 is the accessible view of a paragraph if the embedded object is
42 bound as character, and the accessible view of the document
43 (or of a page in the page preview) in any other case.
44 <li>There are no children returned by
45 ::com::sun::star::accessibility::XAccessibleContext::getAccessibleChild()
48 ::com::sun::star::accessibility::AccessibleRole::EMBEDDED_OBJECT
49 <li>The name is the one assigned to the object in the text
50 document. This means that it is not internationalized.
51 <li>The description is the one assigned to the object in the text
52 document. This means that it is not internationalized. If no
53 description has been set, the description equals the name.
54 <li>There are no relations.
55 <li>The following states might be contained in the state set
57 ::com::sun::star::accessibility::XAccessibleContext::getAccessibleStateSet():
59 <li>::com::sun::star::accessibility::AccessibleStateType::DEFUNC
61 the document window has been closed or the graphic
62 is not existing any longer)
63 <li>::com::sun::star::accessibility::AccessibleStateType::EDITABLE
64 <li>::com::sun::star::accessibility::AccessibleStateType::ENABLED
66 <li>::com::sun::star::accessibility::AccessibleStateType::OPAQUE
67 <li>::com::sun::star::accessibility::AccessibleStateType::SELECTABLE
68 <li>::com::sun::star::accessibility::AccessibleStateType::SELECTED
69 <li>::com::sun::star::accessibility::AccessibleStateType::FOCUSABLE
70 <li>::com::sun::star::accessibility::AccessibleStateType::FOCUSED
71 <li>::com::sun::star::accessibility::AccessibleStateType::SHOWING
72 <li>::com::sun::star::accessibility::AccessibleStateType::VISIBLE
74 <li>The locale is the one the text document itself.
78 interface ::com
::sun
::star
::accessibility
::XAccessibleContext
;
80 /** This interface describes the graphical representation of an
83 interface ::com
::sun
::star
::accessibility
::XAccessibleComponent
;
85 /** This interface gives access to the object's size and its description.
87 interface ::com
::sun
::star
::accessibility
::XAccessibleImage
;
89 /** This is the interface for listeners
91 interface ::com
::sun
::star
::accessibility
::XAccessibleEventBroadcaster
;
97 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */