summaryrefslogtreecommitdiff
path: root/toolkit/inc/toolkit/awt/vclxwindow.hxx
diff options
context:
space:
mode:
authorMalte Timmermann <mt@openoffice.org>2002-01-29 11:54:56 +0000
committerMalte Timmermann <mt@openoffice.org>2002-01-29 11:54:56 +0000
commiteb0e9af6874f7313dfe44e671d38f7d514f1eac8 (patch)
tree5be47101e7789af812f9c3fb010475690cbe05bd /toolkit/inc/toolkit/awt/vclxwindow.hxx
parent2933930ae9a54a0186850c22d4c7e4e31c41d76a (diff)
#97032# Start with UAA implementation
Diffstat (limited to 'toolkit/inc/toolkit/awt/vclxwindow.hxx')
-rw-r--r--toolkit/inc/toolkit/awt/vclxwindow.hxx22
1 files changed, 20 insertions, 2 deletions
diff --git a/toolkit/inc/toolkit/awt/vclxwindow.hxx b/toolkit/inc/toolkit/awt/vclxwindow.hxx
index aee01b2e284d..6086def62a2d 100644
--- a/toolkit/inc/toolkit/awt/vclxwindow.hxx
+++ b/toolkit/inc/toolkit/awt/vclxwindow.hxx
@@ -2,9 +2,9 @@
*
* $RCSfile: vclxwindow.hxx,v $
*
- * $Revision: 1.6 $
+ * $Revision: 1.7 $
*
- * last change: $Author: mt $ $Date: 2002-01-15 16:19:29 $
+ * last change: $Author: mt $ $Date: 2002-01-29 12:54:56 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -278,6 +278,24 @@ public:
::com::sun::star::uno::Any SAL_CALL getAccessibleKeyBinding( ) throw (::com::sun::star::uno::RuntimeException);
};
+/* ----------------------------------------------------------
+ Accessibility only for the Window hierarchy!
+ Maybe derived classes must overwrite these Accessibility interfaces:
+
+ // XAccessibleContext:
+ sal_Int16 getAccessibleRole()
+ OUString getAccessibleDescription()
+ OUString getAccessibleName() // Default is Window::GetText()
+ Reference< XAccessibleRelationSet > getAccessibleRelationSet()
+ Reference< XAccessibleStateSet > getAccessibleStateSet()
+ void addPropertyChangeListener( Reference< XPropertyChangeListener > )
+ void removePropertyChangeListener( Reference< XPropertyChangeListener > )
+
+// ::drafts::com::sun::star::accessibility::XAccessibleComponent
+ sal_Bool isFocusTraversable()
+ Any getAccessibleKeyBinding()
+
+ ---------------------------------------------------------- */