tdf#154285 Check upper bound of arguments in SbRtl_Minute function
[LibreOffice.git] / offapi / com / sun / star / awt / AccessibleIconChoiceControlEntry.idl
blob4fcd24e2a0164ea11593aaae7a24ce3007a04c4d
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 .
21 module com { module sun { module star { module accessibility {
23 interface XAccessibleText;
24 interface XAccessibleComponent;
26 }; }; }; };
28 module com { module sun { module star { module awt {
30 /** specifies accessibility support for an icon choice control entry.
32 @see com::sun::star::accessibility::AccessibleContext
34 @see com::sun::star::accessibility::XAccessibleComponent
35 @see com::sun::star::accessibility::XAccessibleText
37 @since OOo 1.1.2
39 service AccessibleIconChoiceControlEntry
41 /** This interface gives access to the structural information of an icon choice control entry:
43 <ul>
44 <li>Role: The role of an icon choice control entry is
45 com::sun::star::accessibility::AccessibleRole::LABEL.</li>
46 <li>Name: The name of an icon choice control entry is it's text.</li>
47 <li>Description: The description of an icon choice control entry is empty.</li>
48 <li>Children: There exist no children.
49 </li>
50 <li>Parent: The parent is either the com::sun::star::awt::AccessibleIconChoiceControl.</li>
51 <li>Relations: There are no relations.</li>
52 <li>States: The states supported by this service are
53 <ul>
54 <li>com::sun::star::accessibility::AccessibleStateType::DEFUNC
55 is set if the object has already been disposed
56 and subsequent calls to this object result in
57 com::sun::star::lang::DisposedException
58 exceptions.</li>
59 <li>com::sun::star::accessibility::AccessibleStateType::ENABLED
60 is set if the object is enabled.</li>
61 <li>com::sun::star::accessibility::AccessibleStateType::SHOWING
62 is set if the object is displayed on the screen.</li>
63 <li>com::sun::star::accessibility::AccessibleStateType::VISIBLE
64 is always set.</li>
65 <li>com::sun::star::accessibility::AccessibleStateType::TRANSIENT
66 is always set.</li>
67 <li>com::sun::star::accessibility::AccessibleStateType::SELECTABLE
68 is always set.</li>
69 <li>com::sun::star::accessibility::AccessibleStateType::SELECTED
70 is set when it is selected.</li>
71 </ul>
72 </li>
73 </ul>
75 service com::sun::star::accessibility::AccessibleContext;
77 interface com::sun::star::accessibility::XAccessibleComponent;
79 /** This interface gives read-only access to the text representation
80 of an icon choice control entry.
82 interface com::sun::star::accessibility::XAccessibleText;
85 }; }; }; };
87 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */