summaryrefslogtreecommitdiff
path: root/sw/source/ui/inc
diff options
context:
space:
mode:
authorThomas Lange <tl@openoffice.org>2002-11-11 11:58:19 +0000
committerThomas Lange <tl@openoffice.org>2002-11-11 11:58:19 +0000
commitca8a7b972f8d884beb63eff5757237ef11b970c2 (patch)
tree2a8c0b5f33f143dd691a76280f9780fbac824dd0 /sw/source/ui/inc
parent522abf73e7c63cd197a85c3c90038bee6771dd2a (diff)
#103868# PDF export for (multi-)selection
Diffstat (limited to 'sw/source/ui/inc')
-rw-r--r--sw/source/ui/inc/uivwimp.hxx14
1 files changed, 12 insertions, 2 deletions
diff --git a/sw/source/ui/inc/uivwimp.hxx b/sw/source/ui/inc/uivwimp.hxx
index dd49f001d061..bea97f48f641 100644
--- a/sw/source/ui/inc/uivwimp.hxx
+++ b/sw/source/ui/inc/uivwimp.hxx
@@ -2,9 +2,9 @@
*
* $RCSfile: uivwimp.hxx,v $
*
- * $Revision: 1.6 $
+ * $Revision: 1.7 $
*
- * last change: $Author: mba $ $Date: 2002-07-03 16:55:32 $
+ * last change: $Author: tl $ $Date: 2002-11-11 12:58:19 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -65,6 +65,8 @@
#include <view.hxx>
#endif
+#include <sfx2/objsh.hxx>
+
#ifndef _COM_SUN_STAR_VIEW_XSELECTIONSUPPLIER_HPP_
#include <com/sun/star/view/XSelectionSupplier.hpp>
#endif
@@ -142,6 +144,11 @@ class SwView_Impl
STAR_REFERENCE( frame::XDispatchProviderInterceptor ) xDisProvInterceptor;
STAR_REFERENCE( view::XSelectionSupplier ) *pxXTextView; // UNO object
+ // temporary document for printing text of selection / multi selection
+ // in PDF export.
+ SfxObjectShellRef xTmpSelDocSh;
+ SvEmbeddedObjectRef aEmbeddedObjRef;
+
SwView* pView;
SwScannerEventListener* pScanEvtLstnr;
SwClipboardChangeListener* pClipEvtLstnr;
@@ -162,6 +169,9 @@ public:
SwScannerEventListener& GetScannerEventListener();
void AddClipboardListener();
+
+ SfxObjectShellRef & GetTmpSelectionDoc() { return xTmpSelDocSh; }
+ SvEmbeddedObjectRef & GetEmbeddedObjRef() { return (SvEmbeddedObjectRef&)(long&)aEmbeddedObjRef; }
};
#endif