Kaydet (Commit) 0057e38f authored tarafından Vladimir Glazounov's avatar Vladimir Glazounov

INTEGRATION: CWS uno4 (1.2.4); FILE MERGED

2003/05/05 15:49:54 tbe 1.2.4.1: #109171# Document accessibility service descriptions in ::com::sun::star::awt
üst daea8d6e
......@@ -2,9 +2,9 @@
*
* $RCSfile: AccessibleTabBar.idl,v $
*
* $Revision: 1.2 $
* $Revision: 1.3 $
*
* last change: $Author: vg $ $Date: 2003-04-24 17:40:05 $
* last change: $Author: vg $ $Date: 2003-05-22 09:29:56 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
......@@ -78,13 +78,64 @@
module com { module sun { module star { module awt {
/** specifies accessibility support for a tabbar.
@since #108645#
*/
service AccessibleTabBar
{
/** This interface gives access to the structural information of a
tabbar:
<ul>
<li>Role: The role of a tabbar is <const
scope="com::sun::star::accessibility"
>AccessibleRole::PANEL</const>.</li>
<li>Name: There is no name.</li>
<li>Description: The description of a tabbar is its localized
help text.</li>
<li>Children: The children of a tabbar are tabbar buttons,
the tabbar sizer and the tabbar page list,
whose accessible context supports the service
<type>AccessibleTabBarPageList</type>.</li>
<li>Parent: The parent is the window that contains the
tabbar.</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::RESIZABLE</const> is set
if the size of the object is not fixed.</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;
};
}; }; }; };
......
......@@ -2,9 +2,9 @@
*
* $RCSfile: AccessibleTabBarPage.idl,v $
*
* $Revision: 1.2 $
* $Revision: 1.3 $
*
* last change: $Author: vg $ $Date: 2003-04-24 17:40:16 $
* last change: $Author: vg $ $Date: 2003-05-22 09:30:18 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
......@@ -78,13 +78,60 @@
module com { module sun { module star { module awt {
/** specifies accessibility support for a tabbar page.
@since #108645#
*/
service AccessibleTabBarPage
{
/** This interface gives access to the structural information of a
tabbar page:
<ul>
<li>Role: The role of a tabbar page is <const
scope="com::sun::star::accessibility"
>AccessibleRole::PAGE_TAB</const>.</li>
<li>Name: The name of a tabbar page is the localized
tabbar page text.</li>
<li>Description: The description of a tabbar page is its localized
help text.</li>
<li>Children: There are no children.</li>
<li>Parent: The parent of a tabbar page is the tabbar page list,
whose accessible context supports the service
<type>AccessibleTabBarPageList</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::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::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;
};
}; }; }; };
......
......@@ -2,9 +2,9 @@
*
* $RCSfile: AccessibleTabBarPageList.idl,v $
*
* $Revision: 1.2 $
* $Revision: 1.3 $
*
* last change: $Author: vg $ $Date: 2003-04-24 17:40:27 $
* last change: $Author: vg $ $Date: 2003-05-22 09:30:41 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
......@@ -81,14 +81,60 @@
module com { module sun { module star { module awt {
/** specifies accessibility support for a tabbar page list.
@since #108645#
*/
service AccessibleTabBarPageList
{
/** This interface gives access to the structural information of a
tabbar page list:
<ul>
<li>Role: The role of a tabbar page list is <const
scope="com::sun::star::accessibility"
>AccessibleRole::PAGE_TAB_LIST</const>.</li>
<li>Name: There is no name.</li>
<li>Description: There is no description.</li>
<li>Children: The children of a tabbar page list are tabbar pages,
whose accessible context supports the service
<type>AccessibleTabBarPage</type>.</li>
<li>Parent: The parent of a tabbar page list is the tabbar,
whose accessible context supports the service
<type>AccessibleTabBar</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::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::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
tabbar page list.
*/
interface ::com::sun::star::accessibility::XAccessibleSelection;
};
}; }; }; };
......
......@@ -2,9 +2,9 @@
*
* $RCSfile: AccessibleTabControl.idl,v $
*
* $Revision: 1.2 $
* $Revision: 1.3 $
*
* last change: $Author: vg $ $Date: 2003-04-24 17:40:37 $
* last change: $Author: vg $ $Date: 2003-05-22 09:31:03 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
......@@ -81,14 +81,65 @@
module com { module sun { module star { module awt {
/** specifies accessibility support for a tab control.
@since #108645#
*/
service AccessibleTabControl
{
/** This interface gives access to the structural information of a
tab control:
<ul>
<li>Role: The role of a tab control is <const
scope="com::sun::star::accessibility"
>AccessibleRole::PAGE_TAB_LIST</const>.</li>
<li>Name: There is no name.</li>
<li>Description: The description of a tab control is its localized
help text.</li>
<li>Children: The children of a tab control are tab pages,
whose accessible context supports the service
<type>AccessibleTabPage</type>.</li>
<li>Parent: The parent is the window that contains the
tab control.</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::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
tab control.
*/
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