summaryrefslogtreecommitdiff
path: root/sc/inc
diff options
context:
space:
mode:
authorNiklas Nebel <nn@openoffice.org>2001-10-02 17:32:43 +0000
committerNiklas Nebel <nn@openoffice.org>2001-10-02 17:32:43 +0000
commit434e4832d4a899b7524b3e06e713bc39fa5efe5c (patch)
treeb146ee944cafc565962a5579cb7384dcf8105ebc /sc/inc
parent53e8d8dfc727fc5e919ef9867f8806a925632949 (diff)
#91679# support for X selection
Diffstat (limited to 'sc/inc')
-rw-r--r--sc/inc/scmod.hxx10
1 files changed, 8 insertions, 2 deletions
diff --git a/sc/inc/scmod.hxx b/sc/inc/scmod.hxx
index 76af5ad22d6d..470f6f0ca0a0 100644
--- a/sc/inc/scmod.hxx
+++ b/sc/inc/scmod.hxx
@@ -2,9 +2,9 @@
*
* $RCSfile: scmod.hxx,v $
*
- * $Revision: 1.7 $
+ * $Revision: 1.8 $
*
- * last change: $Author: nn $ $Date: 2001-05-29 19:31:58 $
+ * last change: $Author: nn $ $Date: 2001-10-02 18:26:53 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -118,6 +118,7 @@ class ScNavipiCfg;
class ScFormEditData;
class ScTransferObj;
class ScDrawTransferObj;
+class ScSelectionTransferObj;
//==================================================================
@@ -154,6 +155,7 @@ class ScModule: public ScModuleDummy, public SfxListener
Timer aSpellTimer;
ScDragData aDragData;
ScClipData aClipData;
+ ScSelectionTransferObj* pSelTransfer;
ScMessagePool* pMessagePool;
// globalen InputHandler gibt's nicht mehr, jede View hat einen
ScInputHandler* pRefInputHandler;
@@ -210,6 +212,10 @@ public:
ScDocument* GetClipDoc(); // called from document - should be removed later
+ // X selection:
+ ScSelectionTransferObj* GetSelectionTransfer() const { return pSelTransfer; }
+ void SetSelectionTransfer( ScSelectionTransferObj* pNew );
+
void SetWaterCan( BOOL bNew ) { bIsWaterCan = bNew; }
BOOL GetIsWaterCan() const { return bIsWaterCan; }