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 .
21 module com
{ module sun
{ module star
{ module accessibility
{
23 interface XAccessibleText
;
24 interface XAccessibleComponent
;
28 module com
{ module sun
{ module star
{ module awt
{
30 /** specifies accessibility support for a list item.
32 @see com::sun::star::accessibility::AccessibleContext
33 @see com::sun::star::accessibility::XAccessibleComponent
34 @see com::sun::star::accessibility::XAccessibleText
38 service AccessibleListItem
40 /** This interface gives access to the structural information of a list item:
43 <li>Role: The role of a list item is
44 com::sun::star::accessibility::AccessibleRole::LIST_ITEM.</li>
45 <li>Name: The name of a list item is the text of the item.</li>
46 <li>Description: The description of a list item is empty.</li>
47 <li>Children: There exists no children.</li>
48 <li>Parent: The parent is of type com::sun::star::awt::AccessibleList.</li>
49 <li>Relations: There are no relations.</li>
50 <li>States: The states supported by this service are
52 <li>com::sun::star::accessibility::AccessibleStateType::DEFUNC
53 is set if the object has already been disposed
54 and subsequent calls to this object result in
55 com::sun::star::lang::DisposedException
57 <li>com::sun::star::accessibility::AccessibleStateType::ENABLED
59 <li>com::sun::star::accessibility::AccessibleStateType::SHOWING
60 is set if the object is displayed on the screen.</li>
61 <li>com::sun::star::accessibility::AccessibleStateType::VISIBLE
63 <li>com::sun::star::accessibility::AccessibleStateType::TRANSIENT
65 <li>com::sun::star::accessibility::AccessibleStateType::SELECTABLE
67 <li>com::sun::star::accessibility::AccessibleStateType::SELECTED
68 is set when the item is selected.</li>
73 service com
::sun
::star
::accessibility
::AccessibleContext
;
75 interface com
::sun
::star
::accessibility
::XAccessibleComponent
;
77 /** This interface gives read-only access to the text representation
80 interface com
::sun
::star
::accessibility
::XAccessibleText
;
85 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */