Kaydet (Commit) 267c7f6a authored tarafından Vladimir Glazounov's avatar Vladimir Glazounov

INTEGRATION: CWS uno4 (1.2.4); FILE MERGED

2003/05/05 15:49:52 tbe 1.2.4.1: #109171# Document accessibility service descriptions in ::com::sun::star::awt
üst 1542b62d
......@@ -2,9 +2,9 @@
*
* $RCSfile: AccessibleEdit.idl,v $
*
* $Revision: 1.2 $
* $Revision: 1.3 $
*
* last change: $Author: vg $ $Date: 2003-04-24 17:37:25 $
* last change: $Author: vg $ $Date: 2003-05-22 09:26:12 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
......@@ -84,14 +84,83 @@
module com { module sun { module star { module awt {
/** specifies accessibility support for an edit.
@since #108645#
*/
service AccessibleEdit
{
/** This interface gives access to the structural information of an edit:
<ul>
<li>Role: The role of an edit is <const
scope="com::sun::star::accessibility"
>AccessibleRole::TEXT</const>.
If the text content of the edit is password protected
the role is <const scope="com::sun::star::accessibility"
>AccessibleRole::PASSWORD_TEXT</const>.</li>
<li>Name: If the relation of type <const
scope="com::sun::star::accessibility"
>AccessibleRelationType::LABELED_BY</const> is set,
the name of the edit is the localized label of the target
object, otherwise there is no name.</li>
<li>Description: The description of an edit is its localized
help text.</li>
<li>Children: There are no children.</li>
<li>Parent: The parent is the window that contains the edit.</li>
<li>Relations: The relations supported by this service are
<ul>
<li><const scope="com::sun::star::accessibility"
>AccessibleRelationType::LABELED_BY</const> is set
if the object is labeled by one or more target
objects.</li>
</ul>
</li>
<li>States: The states supported by this service are
<ul>
<li><const scope="com::sun::star::accessibility"
>AccessibleStateType::DEFUNC</const>
is set if the object has already been disposed
and subsequent calls to this object result in
<type scope="com::sun::star::lang">DisposedException</type>
exceptions.</li>
<li><const scope="com::sun::star::accessibility"
>AccessibleStateType::EDITABLE</const> is set
if the content of the object can be changed by the user.</li>
<li><const scope="com::sun::star::accessibility"
>AccessibleStateType::ENABLED</const> is set
if the object is enabled.</li>
<li><const scope="com::sun::star::accessibility"
>AccessibleStateType::FOCUSABLE</const> is always set.</li>
<li><const scope="com::sun::star::accessibility"
>AccessibleStateType::FOCUSED</const> is set
if the object currently has the keyboard focus.</li>
<li><const scope="com::sun::star::accessibility"
>AccessibleStateType::SHOWING</const> is set
if the object is displayed on the screen.</li>
<li><const scope="com::sun::star::accessibility"
>AccessibleStateType::VISIBLE</const> is always set.</li>
</ul>
</li>
</ul>
*/
interface ::com::sun::star::accessibility::XAccessibleContext;
interface ::com::sun::star::accessibility::XAccessibleEventBroadcaster;
interface ::com::sun::star::accessibility::XAccessibleComponent;
interface ::com::sun::star::accessibility::XAccessibleExtendedComponent;
/** This interface gives read-only access to the text representation
of an edit.
*/
interface ::com::sun::star::accessibility::XAccessibleText;
/** This interface extends the
<type scope="com::sun::star::accessibility">XAccessibleText</type>
interface and gives read and write access to the text representation
of an edit.
*/
interface ::com::sun::star::accessibility::XAccessibleEditableText;
};
......
......@@ -2,9 +2,9 @@
*
* $RCSfile: AccessibleMenu.idl,v $
*
* $Revision: 1.2 $
* $Revision: 1.3 $
*
* last change: $Author: vg $ $Date: 2003-04-24 17:38:41 $
* last change: $Author: vg $ $Date: 2003-05-22 09:26:57 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
......@@ -90,17 +90,95 @@
module com { module sun { module star { module awt {
/** specifies accessibility support for a menu.
@since #108645#
*/
service AccessibleMenu
{
/** This interface gives access to the structural information of a menu:
<ul>
<li>Role: The role of a menu is <const
scope="com::sun::star::accessibility"
>AccessibleRole::MENU</const>.</li>
<li>Name: The name of a menu is the localized item text.</li>
<li>Description: The description of a menu is its localized
help text.</li>
<li>Children: The children of a menu are menus, menu items or
menu separators, whose accessible context supports the services
<type>AccessibleMenu</type>, <type>AccessibleMenuItem</type> or
<type>AccessibleMenuSeparator</type>.</li>
<li>Parent: The parent of a menu is a menu bar, a popup menu or
a menu, whose accessible context supports the services
<type>AccessibleMenuBar</type>, <type>AccessiblePopupMenu</type>
or <type>AccessibleMenu</type>.</li>
<li>Relations: There are no relations.</li>
<li>States: The states supported by this service are
<ul>
<li><const scope="com::sun::star::accessibility"
>AccessibleStateType::ARMED</const> is set
if the object is highlighted.</li>
<li><const scope="com::sun::star::accessibility"
>AccessibleStateType::CHECKED</const> is set
if the object is currently checked.</li>
<li><const scope="com::sun::star::accessibility"
>AccessibleStateType::DEFUNC</const>
is set if the object has already been disposed
and subsequent calls to this object result in
<type scope="com::sun::star::lang">DisposedException</type>
exceptions.</li>
<li><const scope="com::sun::star::accessibility"
>AccessibleStateType::ENABLED</const> is set
if the object is enabled.</li>
<li><const scope="com::sun::star::accessibility"
>AccessibleStateType::OPAQUE</const> is always set.</li>
<li><const scope="com::sun::star::accessibility"
>AccessibleStateType::SELECTABLE</const> is always set.</li>
<li><const scope="com::sun::star::accessibility"
>AccessibleStateType::SELECTED</const> is set
if the object is selected.</li>
<li><const scope="com::sun::star::accessibility"
>AccessibleStateType::SHOWING</const> is set
if the object is displayed on the screen.</li>
<li><const scope="com::sun::star::accessibility"
>AccessibleStateType::VISIBLE</const> is always set.</li>
</ul>
</li>
</ul>
*/
interface ::com::sun::star::accessibility::XAccessibleContext;
interface ::com::sun::star::accessibility::XAccessibleEventBroadcaster;
interface ::com::sun::star::accessibility::XAccessibleComponent;
interface ::com::sun::star::accessibility::XAccessibleExtendedComponent;
/** This interface gives read-only access to the text representation
of a menu.
*/
interface ::com::sun::star::accessibility::XAccessibleText;
/** This interface gives access to the actions that can be executed for
a menu. The supported actions for a menu are:
<ul>
<li>select</li>
</ul>
*/
interface ::com::sun::star::accessibility::XAccessibleAction;
/** This interface gives access to the numerical value of a
menu, which is related to the menu's
<const scope="com::sun::star::accessibility"
>AccessibleStateType::SELECTED</const> state.
*/
interface ::com::sun::star::accessibility::XAccessibleValue;
/** This interface gives access to the selectable children of a
menu.
*/
interface ::com::sun::star::accessibility::XAccessibleSelection;
};
}; }; }; };
......
......@@ -2,9 +2,9 @@
*
* $RCSfile: AccessibleMenuBar.idl,v $
*
* $Revision: 1.2 $
* $Revision: 1.3 $
*
* last change: $Author: vg $ $Date: 2003-04-24 17:38:50 $
* last change: $Author: vg $ $Date: 2003-05-22 09:27:20 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
......@@ -81,14 +81,67 @@
module com { module sun { module star { module awt {
/** specifies accessibility support for a menu bar.
@since #108645#
*/
service AccessibleMenuBar
{
/** This interface gives access to the structural information of a
menu bar:
<ul>
<li>Role: The role of a menu bar is <const
scope="com::sun::star::accessibility"
>AccessibleRole::MENU_BAR</const>.</li>
<li>Name: There is no name.</li>
<li>Description: The description of a menu bar is its localized
help text.</li>
<li>Children: The children of a menu bar are menus, menu items or
menu separators, whose accessible context supports the services
<type>AccessibleMenu</type>, <type>AccessibleMenuItem</type> or
<type>AccessibleMenuSeparator</type>.</li>
<li>Parent: The parent is the window that contains the menu bar.</li>
<li>Relations: There are no relations.</li>
<li>States: The states supported by this service are
<ul>
<li><const scope="com::sun::star::accessibility"
>AccessibleStateType::DEFUNC</const>
is set if the object has already been disposed
and subsequent calls to this object result in
<type scope="com::sun::star::lang">DisposedException</type>
exceptions.</li>
<li><const scope="com::sun::star::accessibility"
>AccessibleStateType::ENABLED</const> is set
if the object is enabled.</li>
<li><const scope="com::sun::star::accessibility"
>AccessibleStateType::FOCUSABLE</const> is always set.</li>
<li><const scope="com::sun::star::accessibility"
>AccessibleStateType::FOCUSED</const> is set
if the object currently has the keyboard focus.</li>
<li><const scope="com::sun::star::accessibility"
>AccessibleStateType::OPAQUE</const> is always set.</li>
<li><const scope="com::sun::star::accessibility"
>AccessibleStateType::SHOWING</const> is set
if the object is displayed on the screen.</li>
<li><const scope="com::sun::star::accessibility"
>AccessibleStateType::VISIBLE</const> is always set.</li>
</ul>
</li>
</ul>
*/
interface ::com::sun::star::accessibility::XAccessibleContext;
interface ::com::sun::star::accessibility::XAccessibleEventBroadcaster;
interface ::com::sun::star::accessibility::XAccessibleComponent;
interface ::com::sun::star::accessibility::XAccessibleExtendedComponent;
/** This interface gives access to the selectable children of a
menu bar.
*/
interface ::com::sun::star::accessibility::XAccessibleSelection;
};
}; }; }; };
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment