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_AccessibleToolBoxItem_idl__
21 #define __com_sun_star_awt_AccessibleToolBoxItem_idl__
23 #include
<com
/sun
/star
/accessibility
/AccessibleContext.idl
>
26 module com
{ module sun
{ module star
{ module accessibility
{
28 interface XAccessibleAction
;
29 interface XAccessibleText
;
30 interface XAccessibleValue
;
31 interface XAccessibleExtendedComponent
;
32 interface XAccessibleComponent
;
36 module com
{ module sun
{ module star
{ module awt
{
38 /** specifies accessibility support for a tool box item.
40 @see com::sun::star::accessibility::AccessibleContext
42 @see com::sun::star::accessibility::XAccessibleComponent
43 @see com::sun::star::accessibility::XAccessibleExtendedComponent
45 @see com::sun::star::accessibility::XAccessibleAction
46 @see com::sun::star::accessibility::XAccessibleText
47 @see com::sun::star::accessibility::XAccessibleValue
51 service AccessibleToolBoxItem
53 /** This interface gives access to the structural information of a tool box item:
56 <li>Role: The role of a tool box item is
57 com::sun::star::accessibility::AccessibleRole::PUSH_BUTTON when the item is a push button, or
58 com::sun::star::accessibility::AccessibleRole::TOGGLE_BUTTON when the item is a button and checkable, or
59 com::sun::star::accessibility::AccessibleRole::PANEL when the item is a window, or
60 com::sun::star::accessibility::AccessibleRole::FILLER when the item is a fill item, or
61 com::sun::star::accessibility::AccessibleRole::SEPARATOR when the item is a separator.</li>
62 <li>Name: The name of a tool box item is the name set.</li>
63 <li>Description: The description of a tool box item is its localized
65 <li>Children: There can exist one child.
66 This can be any kind of accessible object.</li>
67 <li>Parent: The parent is the tool box that contains the tool box item.</li>
68 <li>Relations: There are no relations.</li>
69 <li>States: The states supported by this service are
71 <li>com::sun::star::accessibility::AccessibleStateType::DEFUNC
72 is set if the object has already been disposed
73 and subsequent calls to this object result in
74 com::sun::star::lang::DisposedException
76 <li>com::sun::star::accessibility::AccessibleStateType::ENABLED
77 is set if the object is enabled.</li>
78 <li>com::sun::star::accessibility::AccessibleStateType::FOCUSABLE
80 <li>com::sun::star::accessibility::AccessibleStateType::FOCUSED
81 is set if the object currently has the keyboard focus.</li>
82 <li>com::sun::star::accessibility::AccessibleStateType::SHOWING
83 is set if the object is displayed on the screen.</li>
84 <li>com::sun::star::accessibility::AccessibleStateType::VISIBLE
86 <li>com::sun::star::accessibility::AccessibleStateType::CHECKED
87 is set if the tool box item is checked.</li>
92 service com
::sun
::star
::accessibility
::AccessibleContext
;
94 interface com
::sun
::star
::accessibility
::XAccessibleComponent
;
95 interface com
::sun
::star
::accessibility
::XAccessibleExtendedComponent
;
97 /** This interface gives access to the actions that can be executed for
98 a menu. The supported actions for a tool box item are:
103 interface com
::sun
::star
::accessibility
::XAccessibleAction
;
105 /** This interface gives read-only access to the text representation
108 interface com
::sun
::star
::accessibility
::XAccessibleText
;
109 /** This interface gives access to the numerical value of a
110 tool box item, which is related to the tool box item's
111 com::sun::star::accessibility::AccessibleStateType::CHECKED state.
113 interface com
::sun
::star
::accessibility
::XAccessibleValue
;
120 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */