summaryrefslogtreecommitdiff
path: root/sc/source/ui/inc/drwtrans.hxx
diff options
context:
space:
mode:
authorNiklas Nebel <nn@openoffice.org>2001-04-03 16:43:21 +0000
committerNiklas Nebel <nn@openoffice.org>2001-04-03 16:43:21 +0000
commitfa0a856f86568a9bf487bd28885e2e30ba7bfade (patch)
tree3f11ae3083d14d98b850af4b9d75ecf49e6d2848 /sc/source/ui/inc/drwtrans.hxx
parent3c893d1c761aacfc7eefd4b37a7fd588014816c0 (diff)
#84195# Drag & Drop from navigator
Diffstat (limited to 'sc/source/ui/inc/drwtrans.hxx')
-rw-r--r--sc/source/ui/inc/drwtrans.hxx11
1 files changed, 8 insertions, 3 deletions
diff --git a/sc/source/ui/inc/drwtrans.hxx b/sc/source/ui/inc/drwtrans.hxx
index 8ace23c4a74e..ab3979392d1f 100644
--- a/sc/source/ui/inc/drwtrans.hxx
+++ b/sc/source/ui/inc/drwtrans.hxx
@@ -2,9 +2,9 @@
*
* $RCSfile: drwtrans.hxx,v $
*
- * $Revision: 1.5 $
+ * $Revision: 1.6 $
*
- * last change: $Author: nn $ $Date: 2001-03-30 19:12:07 $
+ * last change: $Author: nn $ $Date: 2001-04-03 17:39:58 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -78,6 +78,7 @@
class SdrModel;
class ScDocShell;
class INetBookmark;
+class SdrObject;
class SdrView;
class ScDrawView;
@@ -97,6 +98,7 @@ private:
// source information for drag&drop:
// (view is needed to handle drawing obejcts)
SdrView* pDragSourceView;
+ USHORT nDragSourceFlags;
BOOL bDragWasInternal;
@@ -118,9 +120,12 @@ public:
SdrModel* GetModel() { return pModel; }
void SetDragSource( ScDrawView* pView );
+ void SetDragSourceObj( SdrObject* pObj, USHORT nTab );
+ void SetDragSourceFlags( USHORT nFlags );
void SetDragWasInternal();
- SdrView* GetDragSourceView() { return pDragSourceView; }
+ SdrView* GetDragSourceView() { return pDragSourceView; }
+ USHORT GetDragSourceFlags() const { return nDragSourceFlags; }
static ScDrawTransferObj* GetOwnClipboard();
};