1 /*************************************************************************
3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
5 * Copyright 2008 by Sun Microsystems, Inc.
7 * OpenOffice.org - a multi-platform office productivity suite
9 * $RCSfile: uivwimp.cxx,v $
12 * This file is part of OpenOffice.org.
14 * OpenOffice.org is free software: you can redistribute it and/or modify
15 * it under the terms of the GNU Lesser General Public License version 3
16 * only, as published by the Free Software Foundation.
18 * OpenOffice.org is distributed in the hope that it will be useful,
19 * but WITHOUT ANY WARRANTY; without even the implied warranty of
20 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
21 * GNU Lesser General Public License version 3 for more details
22 * (a copy is included in the LICENSE file that accompanied this code).
24 * You should have received a copy of the GNU Lesser General Public License
25 * version 3 along with OpenOffice.org. If not, see
26 * <http://www.openoffice.org/license.html>
27 * for a copy of the LGPLv3 License.
29 ************************************************************************/
31 // MARKER(update_precomp.py): autogen include statement, do not remove
32 #include "precompiled_sw.hxx"
36 #include "globals.hrc"
38 #include <tools/shl.hxx>
39 #include <com/sun/star/scanner/XScannerManager.hpp>
40 #include <com/sun/star/datatransfer/clipboard/XClipboardNotifier.hpp>
41 #include <com/sun/star/datatransfer/clipboard/XClipboard.hpp>
42 #include <com/sun/star/lang/XMultiServiceFactory.hpp>
43 #include <comphelper/processfactory.hxx>
44 #include <vos/mutex.hxx>
45 #include <vcl/svapp.hxx>
46 #include <vcl/wrkwin.hxx>
47 #include <vcl/msgbox.hxx>
48 #include <sfx2/viewfrm.hxx>
49 #include <sfx2/bindings.hxx>
51 #include <sfx2/docinsert.hxx>
52 #include <sfx2/request.hxx>
53 #include <uivwimp.hxx>
55 #include <unotxvw.hxx>
56 #include <unodispatch.hxx>
57 #include <swmodule.hxx>
58 #include <swdtflvr.hxx>
60 #include <mmconfigitem.hxx>
65 using namespace ::com::sun::star
;
66 using namespace ::com::sun::star::uno
;
67 using namespace ::com::sun::star::scanner
;
68 using namespace ::com::sun::star::lang
;
69 using namespace ::com::sun::star::datatransfer::clipboard
;
71 /* -----------------02.06.98 15:31-------------------
73 * --------------------------------------------------*/
74 SwView_Impl::SwView_Impl(SwView
* pShell
) :
75 pxXTextView(new uno::Reference
<view::XSelectionSupplier
>),
77 eShellMode(SHELL_MODE_TEXT
),
79 nMailMergeRestartPage(0),
80 bMailMergeSourceView(sal_True
),
83 m_bSelectObject(false),
84 m_bEditingPositionSet(false)
86 *pxXTextView
= new SwXTextView(pView
);
87 xDisProvInterceptor
= new SwXDispatchProviderInterceptor(*pView
);
90 /*-----------------13.12.97 09:51-------------------
92 --------------------------------------------------*/
93 SwView_Impl::~SwView_Impl()
95 Reference
<XUnoTunnel
> xDispTunnel(xDisProvInterceptor
, UNO_QUERY
);
96 SwXDispatchProviderInterceptor
* pInterceptor
= 0;
97 if(xDispTunnel
.is() &&
98 0 != (pInterceptor
= reinterpret_cast< SwXDispatchProviderInterceptor
* >(
99 sal::static_int_cast
< sal_IntPtr
>(
100 xDispTunnel
->getSomething(SwXDispatchProviderInterceptor::getUnoTunnelId())))))
102 pInterceptor
->Invalidate();
104 view::XSelectionSupplier
* pTextView
= pxXTextView
->get();
105 ((SwXTextView
*)pTextView
)->Invalidate();
107 if( xScanEvtLstnr
.is() )
108 pScanEvtLstnr
->ViewDestroyed();
109 if( xClipEvtLstnr
.is() )
111 pClipEvtLstnr
->AddRemoveListener( FALSE
);
112 pClipEvtLstnr
->ViewDestroyed();
116 delete m_pDocInserter
;
120 /*-----------------13.12.97 09:54-------------------
122 --------------------------------------------------*/
123 void SwView_Impl::SetShellMode(ShellModes eSet
)
127 /*-----------------13.12.97 09:59-------------------
129 --------------------------------------------------*/
130 view::XSelectionSupplier
* SwView_Impl::GetUNOObject()
132 return pxXTextView
->get();
134 /* -----------------02.06.98 15:29-------------------
136 * --------------------------------------------------*/
137 SwXTextView
* SwView_Impl::GetUNOObject_Impl()
139 view::XSelectionSupplier
* pTextView
= pxXTextView
->get();
140 return ((SwXTextView
*)pTextView
);
142 /* -----------------------------29.05.00 09:04--------------------------------
144 ---------------------------------------------------------------------------*/
145 void SwView_Impl::ExecuteScan( SfxRequest
& rReq
)
147 USHORT nSlot
= rReq
.GetSlot();
150 case SID_TWAIN_SELECT
:
153 Reference
< XScannerManager
> xScanMgr
= SW_MOD()->GetScannerManager();
159 const Sequence
< ScannerContext
>
160 aContexts( xScanMgr
->getAvailableScanners() );
162 if( aContexts
.getLength() )
164 ScannerContext
aContext( aContexts
.getConstArray()[ 0 ] );
165 bDone
= xScanMgr
->configureScanner( aContext
);
179 // InfoBox( 0, SW_RES(MSG_SCAN_NOSOURCE) ).Execute();
184 case SID_TWAIN_TRANSFER
:
188 Reference
< XScannerManager
> xScanMgr
= SW_MOD()->GetScannerManager();
191 SwScannerEventListener
& rListener
= GetScannerEventListener();
194 const Sequence
< scanner::ScannerContext
>aContexts( xScanMgr
->getAvailableScanners() );
195 if( aContexts
.getLength() )
197 Reference
< XEventListener
> xLstner
= &rListener
;
198 xScanMgr
->startScan( aContexts
.getConstArray()[ 0 ], xLstner
);
209 InfoBox( 0, SW_RES(MSG_SCAN_NOSOURCE
) ).Execute();
215 SfxBindings
& rBind
= pView
->GetViewFrame()->GetBindings();
216 rBind
.Invalidate( SID_TWAIN_SELECT
);
217 rBind
.Invalidate( SID_TWAIN_TRANSFER
);
224 /* -----------------------------29.05.00 08:26--------------------------------
226 ---------------------------------------------------------------------------*/
227 SwScannerEventListener
& SwView_Impl::GetScannerEventListener()
229 if(!xScanEvtLstnr
.is())
230 xScanEvtLstnr
= pScanEvtLstnr
= new SwScannerEventListener(*pView
);
231 return *pScanEvtLstnr
;
235 void SwView_Impl::AddClipboardListener()
237 if(!xClipEvtLstnr
.is())
239 xClipEvtLstnr
= pClipEvtLstnr
= new SwClipboardChangeListener( *pView
);
240 pClipEvtLstnr
->AddRemoveListener( TRUE
);
243 /* -----------------3/31/2003 11:42AM----------------
245 --------------------------------------------------*/
246 void SwView_Impl::Invalidate()
248 GetUNOObject_Impl()->Invalidate();
249 Reference
< XUnoTunnel
> xTunnel(xTransferable
.get(), UNO_QUERY
);
253 SwTransferable
* pTransferable
= reinterpret_cast< SwTransferable
* >(
254 sal::static_int_cast
< sal_IntPtr
>(
255 xTunnel
->getSomething(SwTransferable::getUnoTunnelId())));
257 pTransferable
->Invalidate();
260 /* -----------------3/31/2003 12:40PM----------------
262 --------------------------------------------------*/
263 void SwView_Impl::AddTransferable(SwTransferable
& rTransferable
)
265 //prevent removing of the non-referenced SwTransferable
266 rTransferable
.m_refCount
++;;
268 xTransferable
= Reference
<XUnoTunnel
> (&rTransferable
);
270 rTransferable
.m_refCount
--;
273 void SwView_Impl::StartDocumentInserter( const String
& rFactory
, const Link
& rEndDialogHdl
)
275 delete m_pDocInserter
;
276 m_pDocInserter
= new ::sfx2::DocumentInserter( 0, rFactory
);
277 m_pDocInserter
->StartExecuteModal( rEndDialogHdl
);
280 SfxMedium
* SwView_Impl::CreateMedium()
282 return m_pDocInserter
->CreateMedium();
285 void SwView_Impl::InitRequest( const SfxRequest
& rRequest
)
288 m_pRequest
= new SfxRequest( rRequest
);
291 // ------------------------- SwScannerEventListener ---------------------
293 SwScannerEventListener::~SwScannerEventListener()
297 void SAL_CALL
SwScannerEventListener::disposing( const EventObject
& rEventObject
) throw(uno::RuntimeException
)
299 vos::OGuard
aGuard(Application::GetSolarMutex());
300 #if defined WIN || defined WNT || defined UNX
302 pView
->ScannerEventHdl( rEventObject
);
306 // ------------------------- SwClipboardChangeListener ---------------------
308 SwClipboardChangeListener::~SwClipboardChangeListener()
312 void SAL_CALL
SwClipboardChangeListener::disposing( const EventObject
& /*rEventObject*/ )
313 throw ( RuntimeException
)
317 void SAL_CALL
SwClipboardChangeListener::changedContents( const CLIP_NMSPC::ClipboardEvent
& rEventObject
)
318 throw ( RuntimeException
)
321 const ::vos::OGuard
aGuard( Application::GetSolarMutex() );
325 TransferableDataHelper
aDataHelper( rEventObject
.Contents
);
326 SwWrtShell
& rSh
= pView
->GetWrtShell();
328 pView
->nLastPasteDestination
= SwTransferable::GetSotDestination( rSh
);
329 pView
->bPasteState
= aDataHelper
.GetXTransferable().is() &&
330 SwTransferable::IsPaste( rSh
, aDataHelper
);
332 pView
->bPasteSpecialState
= aDataHelper
.GetXTransferable().is() &&
333 SwTransferable::IsPasteSpecial( rSh
, aDataHelper
);
336 SfxBindings
& rBind
= pView
->GetViewFrame()->GetBindings();
337 rBind
.Invalidate( SID_PASTE
);
338 rBind
.Invalidate( SID_PASTE_SPECIAL
);
339 rBind
.Invalidate( SID_CLIPBOARD_FORMAT_ITEMS
);
343 void SwClipboardChangeListener::AddRemoveListener( BOOL bAdd
)
345 pView
->AddRemoveClipboardListener( Reference
< XClipboardListener
>( this ), bAdd
);