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 .
20 #ifndef __com_sun_star_awt_AccessibleComboBox_idl__
21 #define __com_sun_star_awt_AccessibleComboBox_idl__
23 #include
<com
/sun
/star
/accessibility
/AccessibleContext.idl
>
25 module com
{ module sun
{ module star
{ module accessibility
{
27 interface XAccessibleText
;
28 interface XAccessibleExtendedComponent
;
29 interface XAccessibleComponent
;
33 module com
{ module sun
{ module star
{ module awt
{
35 /** specifies accessibility support for a combo box.
37 @see com::sun::star::accessibility::AccessibleContext
38 @see com::sun::star::accessibility::XAccessibleComponent
39 @see com::sun::star::accessibility::XAccessibleExtendedComponent
42 service AccessibleComboBox
44 /** This interface gives access to the structural information of a combo box:
47 <li>Role: The role of a combo box is
48 com::sun::star::accessibility::AccessibleRole::COMBO_BOX.</li>
49 <li>Name: The name of a combo box is its localized label.</li>
50 <li>Description: The description of a combo box is its localized
52 <li>Children: There exists two children.
53 The first is a com::sun::star::awt::AccessibleTextField
54 and the 2nd is a com::sun::star::awt::AccessibleList. </li>
55 <li>Parent: The parent is the window that contains the combo box.</li>
56 <li>Relations: There are no relations.</li>
57 <li>States: The states supported by this service are
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
64 <li>com::sun::star::accessibility::AccessibleStateType::ENABLED
65 is set if the object is enabled.</li>
66 <li>com::sun::star::accessibility::AccessibleStateType::FOCUSABLE
68 <li>com::sun::star::accessibility::AccessibleStateType::FOCUSED
69 is set if the object currently has the keyboard focus.</li>
70 <li>com::sun::star::accessibility::AccessibleStateType::ACTIVE
71 is set if a child has currently the focus.</li>
72 <li>com::sun::star::accessibility::AccessibleStateType::RESIZABLE
73 is set if the object can be resized.</li>
74 <li>com::sun::star::accessibility::AccessibleStateType::SHOWING
75 is set if the object is displayed on the screen.</li>
76 <li>com::sun::star::accessibility::AccessibleStateType::VISIBLE
83 service com
::sun
::star
::accessibility
::AccessibleContext
;
85 interface com
::sun
::star
::accessibility
::XAccessibleComponent
;
86 interface com
::sun
::star
::accessibility
::XAccessibleExtendedComponent
;
93 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */