summaryrefslogtreecommitdiffstats
path: root/sw/inc/accmap.hxx
diff options
context:
space:
mode:
authorMichael Brauer <mib@openoffice.org>2002-05-27 11:37:59 +0000
committerMichael Brauer <mib@openoffice.org>2002-05-27 11:37:59 +0000
commit5b285f36d6f816a88de9e58564324f2227d612b3 (patch)
tree901e04c8383a7976e2bb2c54614c8c9fd94caa08 /sw/inc/accmap.hxx
parent#98399# AutoHeight changed to AutoSize (diff)
downloadcore-5b285f36d6f816a88de9e58564324f2227d612b3.tar.gz
core-5b285f36d6f816a88de9e58564324f2227d612b3.zip
#95586#: Several changes regarding shapes
Diffstat (limited to 'sw/inc/accmap.hxx')
-rw-r--r--sw/inc/accmap.hxx16
1 files changed, 13 insertions, 3 deletions
diff --git a/sw/inc/accmap.hxx b/sw/inc/accmap.hxx
index 4352c661a718..0a3392b35900 100644
--- a/sw/inc/accmap.hxx
+++ b/sw/inc/accmap.hxx
@@ -2,9 +2,9 @@
*
* $RCSfile: accmap.hxx,v $
*
- * $Revision: 1.16 $
+ * $Revision: 1.17 $
*
- * last change: $Author: dvo $ $Date: 2002-05-22 11:33:44 $
+ * last change: $Author: mib $ $Date: 2002-05-27 12:37:59 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -80,6 +80,9 @@
#ifndef _SVX_ACCESSIBILITY_IACCESSIBLE_VIEW_FORWARDER_HXX
#include <svx/IAccessibleViewForwarder.hxx>
#endif
+#ifndef _SVX_ACCESSIBILITY_IACCESSIBLE_PARENT_HXX
+#include <svx/IAccessibleParent.hxx>
+#endif
#ifndef _VIEWSH_HXX
#include "viewsh.hxx"
#endif
@@ -123,7 +126,8 @@ class SwAccPreviewData;
#define ACC_STATE_MASK 0x1F
-class SwAccessibleMap : public accessibility::IAccessibleViewForwarder
+class SwAccessibleMap : public accessibility::IAccessibleViewForwarder,
+ public accessibility::IAccessibleParent
{
::vos::OMutex maMutex;
::vos::OMutex maEventMutex;
@@ -240,6 +244,12 @@ public:
virtual Point PixelToLogic (const Point& rPoint) const;
virtual Size PixelToLogic (const Size& rSize) const;
+ // IAccessibleParent
+ virtual sal_Bool ReplaceChild (
+ ::accessibility::AccessibleShape* pCurrentChild,
+ ::accessibility::AccessibleShape* pReplacement)
+ throw (::com::sun::star::uno::RuntimeException);
+
// additional Core/Pixel conversions for internal use; also works
// for preview
Point CoreToPixel (const Point& rPoint) const;