tdf#130857 qt weld: Implement QtInstanceWidget::get_text_height
[LibreOffice.git] / offapi / com / sun / star / awt / AccessibleIconChoiceControl.idl
blob38bb1552e4fedb9a0b95f1270be3322898ceeca6
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 XAccessibleSelection;
24 interface XAccessibleComponent;
26 }; }; }; };
28 module com { module sun { module star { module awt {
30 /** specifies accessibility support for an icon choice control.
32 @see com::sun::star::accessibility::AccessibleContext
33 @see com::sun::star::accessibility::XAccessibleComponent
35 @since OOo 1.1.2
37 service AccessibleIconChoiceControl
39 /** This interface gives access to the structural information of an icon choice control:
41 <ul>
42 <li>Role: The role of an icon choice control is
43 com::sun::star::accessibility::AccessibleRole::TREE.</li>
44 <li>Name: The name of an icon choice control is IconChoiceControl.</li>
45 <li>Description: The description of an icon choice control is its localized
46 help text.</li>
47 <li>Children: There exists children of type com::sun::star::awt::AccessibleIconChoiceControlEntry.
48 </li>
49 <li>Parent: The parent is the window that contains the icon choice control.</li>
50 <li>Relations: There are no relations.</li>
51 <li>States: The states supported by this service are
52 <ul>
53 <li>com::sun::star::accessibility::AccessibleStateType::DEFUNC
54 is set if the object has already been disposed
55 and subsequent calls to this object result in
56 com::sun::star::lang::DisposedException
57 exceptions.</li>
58 <li><com::sun::star::accessibility::AccessibleStateType::ENABLED
59 is set if the object is enabled.</li>
60 <li>com::sun::star::accessibility::AccessibleStateType::FOCUSABLE
61 is always set.</li>
62 <li>com::sun::star::accessibility::AccessibleStateType::FOCUSED
63 is set if the object currently has the keyboard focus.</li>
64 <li>com::sun::star::accessibility::AccessibleStateType::ACTIVE
65 is set if a child has currently the focus.</li>
66 <li>com::sun::star::accessibility::AccessibleStateType::RESIZABLE
67 is set if the object can be resized.</li>
68 <li>com::sun::star::accessibility::AccessibleStateType::SHOWING
69 is set if the object is displayed on the screen.</li>
70 <li>com::sun::star::accessibility::AccessibleStateType::VISIBLE
71 is always set.</li>
72 <li>com::sun::star::accessibility::AccessibleStateType::MANAGES_DESCENDANTS
73 is always set. Children are transient.</li>
74 <li>com::sun::star::accessibility::AccessibleStateType::MULTI_SELECTABLE
75 is set when multi selection is enabled.</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 access to the selectable children of a
85 icon choice control.
87 interface com::sun::star::accessibility::XAccessibleSelection;
90 }; }; }; };
92 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */