summaryrefslogtreecommitdiff
path: root/sc/source/ui/inc/AccessibleText.hxx
diff options
context:
space:
mode:
authorSascha Ballach <sab@openoffice.org>2002-03-04 13:09:38 +0000
committerSascha Ballach <sab@openoffice.org>2002-03-04 13:09:38 +0000
commit78aa8cf267ab2209aaaf0a299a6831545ff41d6b (patch)
treeb571381d258ab51c8a9b4964a6e49e5d8d92c689 /sc/source/ui/inc/AccessibleText.hxx
parent642361e5c3cf7b259944b6a1bc87c8bef45f6ed9 (diff)
#95584#; add EditViewForwarder support
Diffstat (limited to 'sc/source/ui/inc/AccessibleText.hxx')
-rw-r--r--sc/source/ui/inc/AccessibleText.hxx11
1 files changed, 9 insertions, 2 deletions
diff --git a/sc/source/ui/inc/AccessibleText.hxx b/sc/source/ui/inc/AccessibleText.hxx
index cacb7b33c770..38f76a8c5120 100644
--- a/sc/source/ui/inc/AccessibleText.hxx
+++ b/sc/source/ui/inc/AccessibleText.hxx
@@ -2,9 +2,9 @@
*
* $RCSfile: AccessibleText.hxx,v $
*
- * $Revision: 1.2 $
+ * $Revision: 1.3 $
*
- * last change: $Author: sab $ $Date: 2002-03-01 15:09:15 $
+ * last change: $Author: sab $ $Date: 2002-03-04 14:07:49 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -75,6 +75,7 @@
class ScCellTextData;
class ScDocShell;
class ScViewForwarder;
+class ScEditViewForwarder;
// ScAccessibleCellTextData: shared data between sub objects of a accessible cell text object
@@ -92,10 +93,16 @@ public:
virtual SvxTextForwarder* GetTextForwarder();
virtual SvxViewForwarder* GetViewForwarder();
virtual SvxEditViewForwarder* GetEditViewForwarder( sal_Bool bCreate );
+ virtual SfxBroadcaster& GetBroadcaster();
+
+ DECL_LINK( NotifyHdl, EENotify* );
private:
+ SfxBroadcaster maBroadcaster;
ScViewForwarder* mpViewForwarder;
+ ScEditViewForwarder* mpEditViewForwarder;
ScTabViewShell* mpViewShell;
ScSplitPos meSplitPos;
+ sal_Bool mbViewEditEngine;
// prevent the using of this method of the base class
ScSharedCellEditSource* GetOriginalSource() { return NULL; }