summaryrefslogtreecommitdiff
path: root/sc/inc/editsrc.hxx
diff options
context:
space:
mode:
authorNiklas Nebel <nn@openoffice.org>2001-06-07 18:06:48 +0000
committerNiklas Nebel <nn@openoffice.org>2001-06-07 18:06:48 +0000
commit20fd76c5712bfa2a4ae1ffe490788a2b63163267 (patch)
tree700e4bc3f85e0b5cebd952049f5f8bb227f44b47 /sc/inc/editsrc.hxx
parent140e603582b56e1543e019fc51e419ad1cafbf73 (diff)
#79771# share EditEngine between child objects of cell text
Diffstat (limited to 'sc/inc/editsrc.hxx')
-rw-r--r--sc/inc/editsrc.hxx42
1 files changed, 25 insertions, 17 deletions
diff --git a/sc/inc/editsrc.hxx b/sc/inc/editsrc.hxx
index d11125861371..c558b6df1852 100644
--- a/sc/inc/editsrc.hxx
+++ b/sc/inc/editsrc.hxx
@@ -2,9 +2,9 @@
*
* $RCSfile: editsrc.hxx,v $
*
- * $Revision: 1.3 $
+ * $Revision: 1.4 $
*
- * last change: $Author: nn $ $Date: 2001-02-15 18:05:39 $
+ * last change: $Author: nn $ $Date: 2001-06-07 19:05:35 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -75,12 +75,11 @@
#endif
class ScEditEngineDefaulter;
-class SfxBroadcaster;
-class SfxHint;
class SvxEditEngineForwarder;
class ScDocShell;
class ScHeaderFooterContentObj;
+class ScCellTextData;
class ScHeaderFooterChangedHint : public SfxHint
@@ -122,28 +121,37 @@ public:
};
-class ScCellEditSource : public SvxEditSource, public SfxListener
+// Data (incl. EditEngine) for cell EditSource is now shared in ScCellTextData
+
+class ScSharedCellEditSource : public SvxEditSource
{
private:
- ScDocShell* pDocShell;
- ScAddress aCellPos;
- ScEditEngineDefaulter* pEditEngine;
- SvxEditEngineForwarder* pForwarder;
- BOOL bDataValid;
- BOOL bInUpdate;
+ ScCellTextData* pCellTextData;
+
+protected:
+ ScCellTextData* GetCellTextData() const { return pCellTextData; } // for ScCellEditSource
public:
- ScCellEditSource(ScDocShell* pDocSh, const ScAddress& rP);
- virtual ~ScCellEditSource();
+ ScSharedCellEditSource( ScCellTextData* pData );
+ virtual ~ScSharedCellEditSource();
- //! GetEditEngine nur als Uebergang, bis die Feld-Funktionen am Forwarder sind !!!
- ScEditEngineDefaulter* GetEditEngine() { GetTextForwarder(); return pEditEngine; }
+ // GetEditEngine is needed because the forwarder doesn't have field functions
+ ScEditEngineDefaulter* GetEditEngine();
- virtual SvxEditSource* Clone() const ;
+ virtual SvxEditSource* Clone() const;
virtual SvxTextForwarder* GetTextForwarder();
virtual void UpdateData();
+};
- virtual void Notify( SfxBroadcaster& rBC, const SfxHint& rHint );
+// ScCellEditSource with local copy of ScCellTextData is used by ScCellFieldsObj, ScCellFieldObj
+
+class ScCellEditSource : public ScSharedCellEditSource
+{
+public:
+ ScCellEditSource( ScDocShell* pDocSh, const ScAddress& rP );
+ virtual ~ScCellEditSource();
+
+ virtual SvxEditSource* Clone() const;
};