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 module com
{ module sun
{ module star
{ module awt
{
22 /** specifies accessibility support for a button.
26 service AccessibleButton
28 /** This interface gives access to the structural information of a button:
31 <li>Role: The role of a button is
32 com::sun::star::accessibility::AccessibleRole::PUSH_BUTTON.</li>
33 <li>Name: The name of a button is its localized label.</li>
34 <li>Description: The description of a button is its localized
36 <li>Children: There are no children.</li>
37 <li>Parent: The parent is the window that contains the button.</li>
38 <li>Relations: There are no relations.</li>
39 <li>States: The states supported by this service are
41 <li>com::sun::star::accessibility::AccessibleStateType::CHECKABLE
42 is set if the object is checkable, i.e. can be checked.</li>
43 <li>com::sun::star::accessibility::AccessibleStateType::CHECKED
44 is set if the object is currently checked.</li>
45 <li>com::sun::star::accessibility::AccessibleStateType::DEFUNC
46 is set if the object has already been disposed
47 and subsequent calls to this object result in
48 com::sun::star::lang::DisposedException
50 <li>com::sun::star::accessibility::AccessibleStateType::ENABLED
51 is set if the object is enabled.</li>
52 <li>com::sun::star::accessibility::AccessibleStateType::FOCUSABLE
54 <li>com::sun::star::accessibility::AccessibleStateType::FOCUSED
55 is set if the object currently has the keyboard focus.</li>
56 <li>com::sun::star::accessibility::AccessibleStateType::PRESSED
57 is set if the object is currently pressed.</li>
58 <li>com::sun::star::accessibility::AccessibleStateType::SHOWING
59 is set if the object is displayed on the screen.</li>
60 <li>com::sun::star::accessibility::AccessibleStateType::VISIBLE
66 interface ::com
::sun
::star
::accessibility
::XAccessibleContext
;
68 interface ::com
::sun
::star
::accessibility
::XAccessibleEventBroadcaster
;
70 interface ::com
::sun
::star
::accessibility
::XAccessibleComponent
;
72 interface ::com
::sun
::star
::accessibility
::XAccessibleExtendedComponent
;
74 /** This interface gives read-only access to the text representation
77 interface ::com
::sun
::star
::accessibility
::XAccessibleText
;
79 /** This interface gives access to the actions that can be executed for
80 a button. The supported actions for a button are:
85 interface ::com
::sun
::star
::accessibility
::XAccessibleAction
;
87 /** This interface gives access to the numerical value of a button,
88 which is related to the button's
89 com::sun::star::accessibility::AccessibleStateType::PRESSED state.
91 interface ::com
::sun
::star
::accessibility
::XAccessibleValue
;
97 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */