summaryrefslogtreecommitdiff
path: root/offapi/com/sun/star/accessibility
diff options
context:
space:
mode:
authorOliver Bolte <obo@openoffice.org>2008-07-25 07:57:27 +0000
committerOliver Bolte <obo@openoffice.org>2008-07-25 07:57:27 +0000
commit524a00965c6c77fb568d4e45be24d4a2d4bb68fc (patch)
tree070fe80f1f697de1001e55ecb9e4d89aad16c228 /offapi/com/sun/star/accessibility
parente49916791ab175ab846cf08be9fb27b8f2d012bd (diff)
INTEGRATION: CWS aqua11y02 (1.7.66); FILE MERGED
2008/05/30 12:50:49 obr 1.7.66.3: #i88047# added EDIT_BAR role 2008/05/30 07:11:35 obr 1.7.66.2: #i88047# added since tags 2008/05/29 09:06:01 obr 1.7.66.1: #i88047# added a bunch of new roles
Diffstat (limited to 'offapi/com/sun/star/accessibility')
-rw-r--r--offapi/com/sun/star/accessibility/AccessibleRole.idl122
1 files changed, 120 insertions, 2 deletions
diff --git a/offapi/com/sun/star/accessibility/AccessibleRole.idl b/offapi/com/sun/star/accessibility/AccessibleRole.idl
index b80414a3bc18..951894316df5 100644
--- a/offapi/com/sun/star/accessibility/AccessibleRole.idl
+++ b/offapi/com/sun/star/accessibility/AccessibleRole.idl
@@ -7,7 +7,7 @@
* OpenOffice.org - a multi-platform office productivity suite
*
* $RCSfile: AccessibleRole.idl,v $
- * $Revision: 1.7 $
+ * $Revision: 1.8 $
*
* This file is part of OpenOffice.org.
*
@@ -391,7 +391,8 @@ published constants AccessibleRole
something.</p>
<p>See also <const>CHECK_BOX</const>, <const>TOGGLE_BUTTON</const>,
- and <const>RADIO_BUTTON</const>.</p>
+ <const>RADIO_BUTTON</const>, <const>BUTTON_MENU</const> and
+ <const>BUTTON_DROPDOWN</const>.</p>
*/
const short PUSH_BUTTON = 44;
@@ -571,6 +572,123 @@ published constants AccessibleRole
<p>See also <const>FRAME</const> and <const>DIALOG</const>.</p>
*/
const short WINDOW = 67;
+
+ /** Button dropdown role
+
+ <p>The object represents a button that drops down a list of items.</p>
+
+ <p>See also <const>PUSH_BUTTON</const> and <const>BUTTON_MENU</const>.</p>
+
+ @since OOo 3.0
+ */
+ const short BUTTON_DROPDOWN = 68;
+
+ /** Button menu role
+
+ <p>The object represents a button that drops down a menu.</p>
+
+ <p>See also <const>PUSH_BUTTON</const> and <const>BUTTON_DROPDOWN</const>.</p>
+
+ @since OOo 3.0
+ */
+ const short BUTTON_MENU = 69;
+
+ /** Caption role
+
+ <p>The object contains descriptive information, usually textual, about
+ another user interface element such as a table, chart, or image.</p>.
+
+ @since OOo 3.0
+ */
+ const short CAPTION = 70;
+
+ /** Chart role
+
+ <p>The object is a graphical depiction of quantitative data. It may contain multiple
+ subelements whose attributes and/or description may be queried to obtain both
+ the quantitative data and information about how the data is being presented.</p>
+
+ @since OOo 3.0
+ */
+ const short CHART = 71;
+
+ /** Edit bar role
+
+ <p>A role indicating the object acts as a formula for calculating a value.</p>
+
+ @since OOo 3.0
+ */
+ const short EDIT_BAR = 72;
+
+ /** Form role
+
+ <p>The object is a container for form controls, for instance as part of a web form
+ or user-input form within a document.</p>
+
+ @since OOo 3.0
+ */
+ const short FORM = 73;
+
+ /** Image map role
+
+ <p>Usually a graphic with multiple hotspots, where each hotspot can be activated
+ resulting in the loading of another document or section of a document.</p>
+
+ @since OOo 3.0
+ */
+ const short IMAGE_MAP = 74;
+
+ /** Note role
+
+ <p>An embedded note which is not visible until activated.</p>
+
+ @since OOo 3.0
+ */
+ const short NOTE = 75;
+
+ /** Page role
+
+ <p>An object representing a page of document content. It is used in documents
+ which are accessed by the user on a page by page basis.</p>
+
+ @since OOo 3.0
+ */
+ const short PAGE = 76;
+
+ /** Ruler role
+
+ <p>An object which describes margins and tab stops, etc. for text objects which it controls.</p>
+
+ @since OOo 3.0
+ */
+ const short RULER = 77;
+
+ /** Section role
+
+ <p>The object is a containing instance of document content which constitutes a particular
+ 'logical' section of the document.</p>
+
+ @since OOo 3.0
+ */
+ const short SECTION = 78;
+
+ /** Tree item role
+
+ <p>An object that presents an element in a tree</p>
+
+ </p>See also <const>TREE</const> and <const>TREE_TABLE</const>.</p>
+
+ @since OOo 3.0
+ */
+ const short TREE_ITEM = 79;
+
+ /** Tree table role
+
+ <p>An object which represents both hierarchical and tabular information.</p>
+
+ @since OOo 3.0
+ */
+ const short TREE_TABLE = 80;
};
}; }; }; };