1 /*************************************************************************
3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
5 * Copyright 2008 by Sun Microsystems, Inc.
7 * OpenOffice.org - a multi-platform office productivity suite
9 * $RCSfile: AccessibleRadioButton.idl,v $
12 * This file is part of OpenOffice.org.
14 * OpenOffice.org is free software: you can redistribute it and/or modify
15 * it under the terms of the GNU Lesser General Public License version 3
16 * only, as published by the Free Software Foundation.
18 * OpenOffice.org is distributed in the hope that it will be useful,
19 * but WITHOUT ANY WARRANTY; without even the implied warranty of
20 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
21 * GNU Lesser General Public License version 3 for more details
22 * (a copy is included in the LICENSE file that accompanied this code).
24 * You should have received a copy of the GNU Lesser General Public License
25 * version 3 along with OpenOffice.org. If not, see
26 * <http://www.openoffice.org/license.html>
27 * for a copy of the LGPLv3 License.
29 ************************************************************************/
31 #ifndef __com_sun_star_awt_AccessibleRadioButton_idl__
32 #define __com_sun_star_awt_AccessibleRadioButton_idl__
34 #ifndef __com_sun_star_accessibility_XAccessibleContext_idl__
35 #include
<com
/sun
/star
/accessibility
/XAccessibleContext.idl
>
37 #ifndef __com_sun_star_accessibility_XAccessibleEventBroadcaster_idl__
38 #include
<com
/sun
/star
/accessibility
/XAccessibleEventBroadcaster.idl
>
40 #ifndef __com_sun_star_accessibility_XAccessibleComponent_idl__
41 #include
<com
/sun
/star
/accessibility
/XAccessibleComponent.idl
>
43 #ifndef __com_sun_star_accessibility_XAccessibleExtendedComponent_idl__
44 #include
<com
/sun
/star
/accessibility
/XAccessibleExtendedComponent.idl
>
46 #ifndef __com_sun_star_accessibility_XAccessibleText_idl__
47 #include
<com
/sun
/star
/accessibility
/XAccessibleText.idl
>
49 #ifndef __com_sun_star_accessibility_XAccessibleAction_idl__
50 #include
<com
/sun
/star
/accessibility
/XAccessibleAction.idl
>
52 #ifndef __com_sun_star_accessibility_XAccessibleValue_idl__
53 #include
<com
/sun
/star
/accessibility
/XAccessibleValue.idl
>
56 module com
{ module sun
{ module star
{ module awt
{
58 /** specifies accessibility support for a radio button.
62 published service AccessibleRadioButton
64 /** This interface gives access to the structural information of a
68 <li>Role: The role of a radio button is <const
69 scope="com::sun::star::accessibility"
70 >AccessibleRole::RADIO_BUTTON</const>.</li>
71 <li>Name: The name of a radio button is its localized label.</li>
72 <li>Description: The description of a radio button is its localized
74 <li>Children: There are no children.</li>
75 <li>Parent: The parent is the window that contains the radio button.</li>
76 <li>Relations: The relations supported by this service are
78 <li><const scope="com::sun::star::accessibility"
79 >AccessibleRelationType::MEMBER_OF</const> is set
80 if the object is a member of a group of one or more
84 <li>States: The states supported by this service are
86 <li><const scope="com::sun::star::accessibility"
87 >AccessibleStateType::CHECKED</const> is set
88 if the object is currently checked.</li>
89 <li><const scope="com::sun::star::accessibility"
90 >AccessibleStateType::DEFUNC</const>
91 is set if the object has already been disposed
92 and subsequent calls to this object result in
93 <type scope="com::sun::star::lang">DisposedException</type>
95 <li><const scope="com::sun::star::accessibility"
96 >AccessibleStateType::ENABLED</const> is set
97 if the object is enabled.</li>
98 <li><const scope="com::sun::star::accessibility"
99 >AccessibleStateType::FOCUSABLE</const> is always set.</li>
100 <li><const scope="com::sun::star::accessibility"
101 >AccessibleStateType::FOCUSED</const> is set
102 if the object currently has the keyboard focus.</li>
103 <li><const scope="com::sun::star::accessibility"
104 >AccessibleStateType::SHOWING</const> is set
105 if the object is displayed on the screen.</li>
106 <li><const scope="com::sun::star::accessibility"
107 >AccessibleStateType::VISIBLE</const> is always set.</li>
112 interface ::com
::sun
::star
::accessibility
::XAccessibleContext
;
114 interface ::com
::sun
::star
::accessibility
::XAccessibleEventBroadcaster
;
116 interface ::com
::sun
::star
::accessibility
::XAccessibleComponent
;
118 interface ::com
::sun
::star
::accessibility
::XAccessibleExtendedComponent
;
120 /** This interface gives read-only access to the text representation
123 interface ::com
::sun
::star
::accessibility
::XAccessibleText
;
125 /** This interface gives access to the actions that can be executed for
126 a radio button. The supported actions for a radio button are:
131 interface ::com
::sun
::star
::accessibility
::XAccessibleAction
;
133 /** This interface gives access to the numerical value of a
134 radio button, which is related to the radio button's
135 <const scope="com::sun::star::accessibility"
136 >AccessibleStateType::CHECKED</const> state.
138 interface ::com
::sun
::star
::accessibility
::XAccessibleValue
;