Version 5.2.6.1, tag libreoffice-5.2.6.1
[LibreOffice.git] / offapi / com / sun / star / awt / AccessibleIconChoiceControlEntry.idl
blobaa20ed1704b760bd2c133f36c9f9d48d4acfcdc8
1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2 /*
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 #ifndef __com_sun_star_awt_AccessibleIconChoiceControlEntry_idl__
21 #define __com_sun_star_awt_AccessibleIconChoiceControlEntry_idl__
23 #include <com/sun/star/accessibility/AccessibleContext.idl>
26 module com { module sun { module star { module accessibility {
28 interface XAccessibleText;
29 interface XAccessibleComponent;
31 }; }; }; };
33 module com { module sun { module star { module awt {
35 /** specifies accessibility support for an icon choice control entry.
37 @see com::sun::star::accessibility::AccessibleContext
39 @see com::sun::star::accessibility::XAccessibleComponent
40 @see com::sun::star::accessibility::XAccessibleText
42 @since OOo 1.1.2
44 service AccessibleIconChoiceControlEntry
46 /** This interface gives access to the structural information of an icon choice control entry:
48 <ul>
49 <li>Role: The role of an icon choice control entry is
50 com::sun::star::accessibility::AccessibleRole::LABEL.</li>
51 <li>Name: The name of an icon choice control entry is it's text.</li>
52 <li>Description: The description of an icon choice control entry is empty.</li>
53 <li>Children: There exist no children.
54 </li>
55 <li>Parent: The parent is either the com::sun::star::awt::AccessibleIconChoiceControl.</li>
56 <li>Relations: There are no relations.</li>
57 <li>States: The states supported by this service are
58 <ul>
59 <li>com::sun::star::accessibility::AccessibleStateType::DEFUNC
60 is set if the object has already been disposed
61 and subsequent calls to this object result in
62 com::sun::star::lang::DisposedException
63 exceptions.</li>
64 <li>com::sun::star::accessibility::AccessibleStateType::ENABLED
65 is set if the object is enabled.</li>
66 <li>com::sun::star::accessibility::AccessibleStateType::SHOWING
67 is set if the object is displayed on the screen.</li>
68 <li>com::sun::star::accessibility::AccessibleStateType::VISIBLE
69 is always set.</li>
70 <li>com::sun::star::accessibility::AccessibleStateType::TRANSIENT
71 is always set.</li>
72 <li>com::sun::star::accessibility::AccessibleStateType::SELECTABLE
73 is always set.</li>
74 <li>com::sun::star::accessibility::AccessibleStateType::SELECTED
75 is set when it is selected.</li>
76 </ul>
77 </li>
78 </ul>
80 service com::sun::star::accessibility::AccessibleContext;
82 interface com::sun::star::accessibility::XAccessibleComponent;
84 /** This interface gives read-only access to the text representation
85 of an icon choice control entry.
87 interface com::sun::star::accessibility::XAccessibleText;
90 }; }; }; };
92 #endif
94 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */