Line data Source code
1 : /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2 : /*
3 : * This file is part of the LibreOffice project.
4 : *
5 : * This Source Code Form is subject to the terms of the Mozilla Public
6 : * License, v. 2.0. If a copy of the MPL was not distributed with this
7 : * file, You can obtain one at http://mozilla.org/MPL/2.0/.
8 : *
9 : * This file incorporates work covered by the following license notice:
10 : *
11 : * Licensed to the Apache Software Foundation (ASF) under one or more
12 : * contributor license agreements. See the NOTICE file distributed
13 : * with this work for additional information regarding copyright
14 : * ownership. The ASF licenses this file to you under the Apache
15 : * License, Version 2.0 (the "License"); you may not use this file
16 : * except in compliance with the License. You may obtain a copy of
17 : * the License at http://www.apache.org/licenses/LICENSE-2.0 .
18 : */
19 :
20 : #include "View.hxx"
21 : #include <unotools/localfilehelper.hxx>
22 : #include <sfx2/request.hxx>
23 : #include <sfx2/docfilt.hxx>
24 : #include <sfx2/fcontnr.hxx>
25 : #include <sfx2/docfile.hxx>
26 : #include <vcl/msgbox.hxx>
27 : #include <svl/urlbmk.hxx>
28 : #include <svx/svdpagv.hxx>
29 : #include <svx/xfillit.hxx>
30 : #include <svx/svdundo.hxx>
31 : #include <svx/xoutbmp.hxx>
32 : #include <svx/svdograf.hxx>
33 : #include <svx/svdomedia.hxx>
34 : #include <svx/svdoole2.hxx>
35 : #include <sot/storage.hxx>
36 : #include <sfx2/app.hxx>
37 : #include <avmedia/mediawindow.hxx>
38 : #include <svtools/ehdl.hxx>
39 : #include <svtools/sfxecode.hxx>
40 : #include <svtools/filter.hxx>
41 : #include "app.hrc"
42 : #include "Window.hxx"
43 : #include "DrawDocShell.hxx"
44 : #include "DrawViewShell.hxx"
45 : #include "fuinsfil.hxx"
46 : #include "drawdoc.hxx"
47 : #include "sdresid.hxx"
48 : #include "strings.hrc"
49 : #include "imapinfo.hxx"
50 : #include "sdpage.hxx"
51 : #include "view/SlideSorterView.hxx"
52 : #include "undo/undoobjects.hxx"
53 :
54 : #include <comphelper/processfactory.hxx>
55 : #include <com/sun/star/embed/ElementModes.hpp>
56 : #include <com/sun/star/embed/XEmbedPersist.hpp>
57 : #include <com/sun/star/embed/Aspects.hpp>
58 : #include <com/sun/star/embed/NoVisualAreaSizeException.hpp>
59 : #include <svtools/soerr.hxx>
60 :
61 : #include <sfx2/ipclient.hxx>
62 :
63 : using namespace com::sun::star;
64 :
65 : namespace sd {
66 :
67 : #ifdef _MSC_VER
68 : #pragma optimize ( "", off )
69 : #endif
70 :
71 : /*************************************************************************
72 : |*
73 : |* Graphik einfuegen
74 : |* Wird ein leeres Graphikobjekt uebergeben, so wird dieses gefuellt.
75 : |* Andernfalls wird ein an der gegebenen Position vorhandenes Objekt
76 : |* gefuellt. Ist an der Position kein Objekt vorhanden, so wird ein neues
77 : |* Objekt erzeugt und ein Pointer auf dieses Objekt zurueckgegeben.
78 : |*
79 : \************************************************************************/
80 :
81 0 : SdrGrafObj* View::InsertGraphic( const Graphic& rGraphic, sal_Int8& rAction,
82 : const Point& rPos, SdrObject* pObj, ImageMap* pImageMap )
83 : {
84 0 : SdrEndTextEdit();
85 0 : mnAction = rAction;
86 :
87 : // Liegt ein Objekt an der Position rPos?
88 0 : SdrGrafObj* pNewGrafObj = NULL;
89 0 : SdrPageView* pPV = GetSdrPageView();
90 0 : SdrObject* pPickObj = pObj;
91 0 : const bool bOnMaster = pPV && pPV->GetPage() && pPV->GetPage()->IsMasterPage();
92 :
93 0 : if(pPV && this->ISA(::sd::slidesorter::view::SlideSorterView))
94 : {
95 0 : if(!pPV->GetPageRect().IsInside(rPos))
96 0 : pPV = 0L;
97 : }
98 :
99 0 : if( !pPickObj && pPV )
100 : {
101 0 : SdrPageView* pPageView = pPV;
102 0 : PickObj(rPos, getHitTolLog(), pPickObj, pPageView);
103 : }
104 :
105 0 : if( mnAction == DND_ACTION_LINK && pPickObj && pPV )
106 : {
107 0 : const bool bIsGraphic = pPickObj->ISA( SdrGrafObj );
108 0 : if( bIsGraphic || (pObj && pObj->IsEmptyPresObj() && !bOnMaster) )
109 : {
110 0 : if( IsUndoEnabled() )
111 0 : BegUndo(String(SdResId(STR_INSERTGRAPHIC)));
112 :
113 0 : SdPage* pPage = (SdPage*) pPickObj->GetPage();
114 :
115 0 : if( bIsGraphic )
116 : {
117 : // Das Objekt wird mit der Bitmap gefuellt
118 0 : pNewGrafObj = (SdrGrafObj*) pPickObj->Clone();
119 0 : pNewGrafObj->SetGraphic(rGraphic);
120 : }
121 : else
122 : {
123 0 : pNewGrafObj = new SdrGrafObj( rGraphic, pPickObj->GetSnapRect() );
124 0 : pNewGrafObj->SetEmptyPresObj(sal_True);
125 : }
126 :
127 0 : if ( pNewGrafObj->IsEmptyPresObj() )
128 : {
129 0 : Rectangle aRect( pNewGrafObj->GetLogicRect() );
130 0 : pNewGrafObj->AdjustToMaxRect( aRect, sal_False );
131 0 : pNewGrafObj->SetOutlinerParaObject(NULL);
132 0 : pNewGrafObj->SetEmptyPresObj(sal_False);
133 : }
134 :
135 0 : if (pPage && pPage->IsPresObj(pPickObj))
136 : {
137 : // Neues PresObj in die Liste eintragen
138 0 : pPage->InsertPresObj( pNewGrafObj, PRESOBJ_GRAPHIC );
139 0 : pNewGrafObj->SetUserCall(pPickObj->GetUserCall());
140 : }
141 :
142 0 : if (pImageMap)
143 0 : pNewGrafObj->AppendUserData(new SdIMapInfo(*pImageMap));
144 :
145 0 : ReplaceObjectAtView(pPickObj, *pPV, pNewGrafObj); // maybe ReplaceObjectAtView
146 :
147 0 : if( IsUndoEnabled() )
148 0 : EndUndo();
149 : }
150 0 : else if (pPickObj->IsClosedObj() && !pPickObj->ISA(SdrOle2Obj))
151 : {
152 : /******************************************************************
153 : * Das Objekt wird mit der Graphik gefuellt
154 : ******************************************************************/
155 0 : if( IsUndoEnabled() )
156 : {
157 0 : BegUndo(String(SdResId(STR_UNDO_DRAGDROP)));
158 0 : AddUndo(GetModel()->GetSdrUndoFactory().CreateUndoAttrObject(*pPickObj));
159 0 : EndUndo();
160 : }
161 :
162 0 : XOBitmap aXOBitmap( rGraphic.GetBitmap() );
163 0 : SfxItemSet aSet(mpDocSh->GetPool(), XATTR_FILLSTYLE, XATTR_FILLBITMAP);
164 0 : aSet.Put(XFillStyleItem(XFILL_BITMAP));
165 0 : aSet.Put(XFillBitmapItem(&mpDocSh->GetPool(), aXOBitmap));
166 0 : pPickObj->SetMergedItemSetAndBroadcast(aSet);
167 0 : }
168 : }
169 0 : else if ( pPV )
170 : {
171 : // create new object
172 0 : Size aSize;
173 :
174 0 : if ( rGraphic.GetPrefMapMode().GetMapUnit() == MAP_PIXEL )
175 : {
176 0 : ::OutputDevice* pOutDev = 0;
177 0 : if( mpViewSh )
178 0 : pOutDev = mpViewSh->GetActiveWindow();
179 :
180 0 : if( !pOutDev )
181 0 : pOutDev = Application::GetDefaultDevice();
182 :
183 0 : if( pOutDev )
184 0 : aSize = pOutDev->PixelToLogic( rGraphic.GetPrefSize(), MAP_100TH_MM );
185 : }
186 : else
187 : {
188 : aSize = OutputDevice::LogicToLogic( rGraphic.GetPrefSize(),
189 : rGraphic.GetPrefMapMode(),
190 0 : MapMode( MAP_100TH_MM ) );
191 : }
192 :
193 0 : pNewGrafObj = new SdrGrafObj( rGraphic, Rectangle( rPos, aSize ) );
194 0 : SdrPage* pPage = pPV->GetPage();
195 0 : Size aPageSize( pPage->GetSize() );
196 0 : aPageSize.Width() -= pPage->GetLftBorder() + pPage->GetRgtBorder();
197 0 : aPageSize.Height() -= pPage->GetUppBorder() + pPage->GetLwrBorder();
198 0 : pNewGrafObj->AdjustToMaxRect( Rectangle( Point(), aPageSize ), sal_True );
199 :
200 0 : sal_uLong nOptions = SDRINSERT_SETDEFLAYER;
201 0 : sal_Bool bIsPresTarget = sal_False;
202 :
203 0 : if ((mpViewSh
204 0 : && mpViewSh->GetViewShell()!=NULL
205 0 : && mpViewSh->GetViewShell()->GetIPClient()
206 0 : && mpViewSh->GetViewShell()->GetIPClient()->IsObjectInPlaceActive())
207 0 : || this->ISA(::sd::slidesorter::view::SlideSorterView))
208 0 : nOptions |= SDRINSERT_DONTMARK;
209 :
210 0 : if( ( mnAction & DND_ACTION_MOVE ) && pPickObj && (pPickObj->IsEmptyPresObj() || pPickObj->GetUserCall()) )
211 : {
212 0 : SdPage* pP = static_cast< SdPage* >( pPickObj->GetPage() );
213 :
214 0 : if ( pP && pP->IsMasterPage() )
215 0 : bIsPresTarget = pP->IsPresObj(pPickObj);
216 : }
217 :
218 0 : if( ( mnAction & DND_ACTION_MOVE ) && pPickObj && !bIsPresTarget )
219 : {
220 : // replace object
221 0 : if (pImageMap)
222 0 : pNewGrafObj->AppendUserData(new SdIMapInfo(*pImageMap));
223 :
224 0 : Rectangle aPickObjRect(pPickObj->GetCurrentBoundRect());
225 0 : Size aPickObjSize(aPickObjRect.GetSize());
226 0 : Rectangle aObjRect(pNewGrafObj->GetCurrentBoundRect());
227 0 : Size aObjSize(aObjRect.GetSize());
228 :
229 0 : Fraction aScaleWidth(aPickObjSize.Width(), aObjSize.Width());
230 0 : Fraction aScaleHeight(aPickObjSize.Height(), aObjSize.Height());
231 0 : pNewGrafObj->NbcResize(aObjRect.TopLeft(), aScaleWidth, aScaleHeight);
232 :
233 0 : Point aVec = aPickObjRect.TopLeft() - aObjRect.TopLeft();
234 0 : pNewGrafObj->NbcMove(Size(aVec.X(), aVec.Y()));
235 :
236 0 : const bool bUndo = IsUndoEnabled();
237 :
238 0 : if( bUndo )
239 0 : BegUndo(String(SdResId(STR_UNDO_DRAGDROP)));
240 0 : pNewGrafObj->NbcSetLayer(pPickObj->GetLayer());
241 0 : SdrPage* pP = pPV->GetPage();
242 0 : pP->InsertObject(pNewGrafObj);
243 0 : if( bUndo )
244 : {
245 0 : AddUndo(mrDoc.GetSdrUndoFactory().CreateUndoNewObject(*pNewGrafObj));
246 0 : AddUndo(mrDoc.GetSdrUndoFactory().CreateUndoDeleteObject(*pPickObj));
247 : }
248 0 : pP->RemoveObject(pPickObj->GetOrdNum());
249 :
250 0 : if( bUndo )
251 : {
252 0 : EndUndo();
253 : }
254 : else
255 : {
256 0 : SdrObject::Free(pPickObj);
257 : }
258 0 : mnAction = DND_ACTION_COPY;
259 : }
260 : else
261 : {
262 0 : InsertObjectAtView(pNewGrafObj, *pPV, nOptions);
263 :
264 0 : if( pImageMap )
265 0 : pNewGrafObj->AppendUserData(new SdIMapInfo(*pImageMap));
266 : }
267 : }
268 :
269 0 : rAction = mnAction;
270 :
271 0 : return pNewGrafObj;
272 : }
273 :
274 : // -----------------------------------------------------------------------------
275 :
276 0 : SdrMediaObj* View::InsertMediaURL( const rtl::OUString& rMediaURL, sal_Int8& rAction,
277 : const Point& rPos, const Size& rSize,
278 : bool const bLink )
279 : {
280 0 : ::rtl::OUString realURL;
281 0 : if (bLink)
282 : {
283 0 : realURL = rMediaURL;
284 : }
285 : else
286 : {
287 : uno::Reference<frame::XModel> const xModel(
288 0 : GetDoc().GetObjectShell()->GetModel());
289 0 : bool const bRet = ::avmedia::EmbedMedia(xModel, rMediaURL, realURL);
290 0 : if (!bRet) { return 0; }
291 : }
292 :
293 0 : SdrEndTextEdit();
294 0 : mnAction = rAction;
295 :
296 0 : SdrMediaObj* pNewMediaObj = NULL;
297 0 : SdrPageView* pPV = GetSdrPageView();
298 0 : SdrObject* pPickObj = GetEmptyPresentationObject( PRESOBJ_MEDIA );
299 :
300 0 : if(pPV && this->ISA(::sd::slidesorter::view::SlideSorterView ))
301 : {
302 0 : if(!pPV->GetPageRect().IsInside(rPos))
303 0 : pPV = 0L;
304 : }
305 :
306 0 : if( !pPickObj && pPV )
307 : {
308 0 : SdrPageView* pPageView = pPV;
309 0 : PickObj(rPos, getHitTolLog(), pPickObj, pPageView);
310 : }
311 :
312 0 : if( mnAction == DND_ACTION_LINK && pPickObj && pPV && pPickObj->ISA( SdrMediaObj ) )
313 : {
314 0 : pNewMediaObj = static_cast< SdrMediaObj* >( pPickObj->Clone() );
315 0 : pNewMediaObj->setURL( realURL );
316 :
317 0 : BegUndo(String(SdResId(STR_UNDO_DRAGDROP)));
318 0 : ReplaceObjectAtView(pPickObj, *pPV, pNewMediaObj);
319 0 : EndUndo();
320 : }
321 0 : else if( pPV )
322 : {
323 0 : Rectangle aRect( rPos, rSize );
324 0 : if( pPickObj )
325 0 : aRect = pPickObj->GetLogicRect();
326 :
327 :
328 0 : pNewMediaObj = new SdrMediaObj( aRect );
329 :
330 0 : bool bIsPres = false;
331 0 : if( pPickObj )
332 : {
333 0 : SdPage* pPage = static_cast< SdPage* >(pPickObj->GetPage());
334 0 : bIsPres = pPage && pPage->IsPresObj(pPickObj);
335 0 : if( bIsPres )
336 : {
337 0 : pPage->InsertPresObj( pNewMediaObj, PRESOBJ_MEDIA );
338 : }
339 : }
340 :
341 0 : if( pPickObj )
342 0 : ReplaceObjectAtView(pPickObj, *pPV, pNewMediaObj);
343 : else
344 0 : InsertObjectAtView( pNewMediaObj, *pPV, SDRINSERT_SETDEFLAYER );
345 :
346 0 : pNewMediaObj->setURL( realURL );
347 :
348 0 : if( pPickObj )
349 : {
350 0 : pNewMediaObj->AdjustToMaxRect( pPickObj->GetLogicRect() );
351 0 : if( bIsPres )
352 0 : pNewMediaObj->SetUserCall(pPickObj->GetUserCall());
353 : }
354 : }
355 :
356 0 : rAction = mnAction;
357 :
358 0 : return pNewMediaObj;
359 : }
360 :
361 : /*************************************************************************
362 : |*
363 : |* Timer-Handler fuer InsertFile beim Drop()
364 : |*
365 : \************************************************************************/
366 :
367 0 : IMPL_LINK_NOARG(View, DropInsertFileHdl)
368 : {
369 : DBG_ASSERT( mpViewSh, "sd::View::DropInsertFileHdl(), I need a view shell to work!" );
370 0 : if( !mpViewSh )
371 0 : return 0;
372 :
373 0 : SfxErrorContext aEc( ERRCTX_ERROR, mpViewSh->GetActiveWindow(), RID_SO_ERRCTX );
374 0 : ErrCode nError = 0;
375 :
376 0 : ::std::vector< String >::const_iterator aIter( maDropFileVector.begin() );
377 :
378 0 : while( (aIter != maDropFileVector.end()) && !nError )
379 : {
380 0 : String aCurrentDropFile( *aIter );
381 0 : INetURLObject aURL( aCurrentDropFile );
382 0 : sal_Bool bOK = sal_False;
383 :
384 0 : if( aURL.GetProtocol() == INET_PROT_NOT_VALID )
385 : {
386 0 : rtl::OUString aURLStr;
387 0 : ::utl::LocalFileHelper::ConvertPhysicalNameToURL( aCurrentDropFile, aURLStr );
388 0 : aURL = INetURLObject( aURLStr );
389 : }
390 :
391 0 : GraphicFilter& rGraphicFilter = GraphicFilter::GetGraphicFilter();
392 0 : Graphic aGraphic;
393 :
394 0 : aCurrentDropFile = aURL.GetMainURL( INetURLObject::NO_DECODE );
395 :
396 0 : if( !::avmedia::MediaWindow::isMediaURL( aCurrentDropFile ) )
397 : {
398 0 : if( !rGraphicFilter.ImportGraphic( aGraphic, aURL ) )
399 : {
400 0 : sal_Int8 nTempAction = ( aIter == maDropFileVector.begin() ) ? mnAction : 0;
401 0 : const bool bLink = ( ( nTempAction & DND_ACTION_LINK ) != 0 );
402 0 : SdrGrafObj* pGrafObj = InsertGraphic( aGraphic, nTempAction, maDropPos, NULL, NULL );
403 0 : if(pGrafObj && bLink)
404 : {
405 0 : pGrafObj->SetGraphicLink( aCurrentDropFile, String() );
406 : }
407 :
408 : // return action from first inserted graphic
409 0 : if( aIter == maDropFileVector.begin() )
410 0 : mnAction = nTempAction;
411 :
412 0 : bOK = sal_True;
413 : }
414 0 : if( !bOK )
415 : {
416 0 : const SfxFilter* pFoundFilter = NULL;
417 0 : SfxMedium aSfxMedium( aCurrentDropFile, STREAM_READ | STREAM_SHARE_DENYNONE );
418 0 : ErrCode nErr = SFX_APP()->GetFilterMatcher().GuessFilter( aSfxMedium, &pFoundFilter, SFX_FILTER_IMPORT, SFX_FILTER_NOTINSTALLED | SFX_FILTER_EXECUTABLE );
419 :
420 0 : if( pFoundFilter && !nErr )
421 : {
422 0 : ::std::vector< ::rtl::OUString > aFilterVector;
423 0 : const String aFilterName( pFoundFilter->GetFilterName() );
424 0 : String aLowerAsciiFileName( aCurrentDropFile );
425 0 : aLowerAsciiFileName.ToLowerAscii();
426 :
427 0 : FuInsertFile::GetSupportedFilterVector( aFilterVector );
428 :
429 0 : if( ( ::std::find( aFilterVector.begin(), aFilterVector.end(), pFoundFilter->GetMimeType() ) != aFilterVector.end() ) ||
430 0 : aFilterName.SearchAscii( "Text" ) != STRING_NOTFOUND ||
431 0 : aFilterName.SearchAscii( "Rich" ) != STRING_NOTFOUND ||
432 0 : aFilterName.SearchAscii( "RTF" ) != STRING_NOTFOUND ||
433 0 : aFilterName.SearchAscii( "HTML" ) != STRING_NOTFOUND ||
434 0 : aLowerAsciiFileName.SearchAscii(".sdd") != STRING_NOTFOUND ||
435 0 : aLowerAsciiFileName.SearchAscii(".sda") != STRING_NOTFOUND ||
436 0 : aLowerAsciiFileName.SearchAscii(".sxd") != STRING_NOTFOUND ||
437 0 : aLowerAsciiFileName.SearchAscii(".sxi") != STRING_NOTFOUND ||
438 0 : aLowerAsciiFileName.SearchAscii(".std") != STRING_NOTFOUND ||
439 0 : aLowerAsciiFileName.SearchAscii(".sti") != STRING_NOTFOUND )
440 : {
441 0 : ::sd::Window* pWin = mpViewSh->GetActiveWindow();
442 0 : SfxRequest aReq(SID_INSERTFILE, 0, mrDoc.GetItemPool());
443 0 : SfxStringItem aItem1( ID_VAL_DUMMY0, aCurrentDropFile ), aItem2( ID_VAL_DUMMY1, pFoundFilter->GetFilterName() );
444 :
445 0 : aReq.AppendItem( aItem1 );
446 0 : aReq.AppendItem( aItem2 );
447 0 : FuInsertFile::Create( mpViewSh, pWin, this, &mrDoc, aReq );
448 0 : bOK = sal_True;
449 0 : }
450 0 : }
451 : }
452 : }
453 :
454 0 : if( !bOK )
455 : {
456 0 : Size aPrefSize;
457 :
458 0 : if( ::avmedia::MediaWindow::isMediaURL( aCurrentDropFile ) &&
459 0 : ::avmedia::MediaWindow::isMediaURL( aCurrentDropFile, true, &aPrefSize ) )
460 : {
461 0 : if( aPrefSize.Width() && aPrefSize.Height() )
462 : {
463 0 : ::sd::Window* pWin = mpViewSh->GetActiveWindow();
464 :
465 0 : if( pWin )
466 0 : aPrefSize = pWin->PixelToLogic( aPrefSize, MAP_100TH_MM );
467 : else
468 0 : aPrefSize = Application::GetDefaultDevice()->PixelToLogic( aPrefSize, MAP_100TH_MM );
469 : }
470 : else
471 0 : aPrefSize = Size( 5000, 5000 );
472 :
473 0 : InsertMediaURL( aCurrentDropFile, mnAction, maDropPos, aPrefSize, true ) ;
474 : }
475 0 : else if( mnAction & DND_ACTION_LINK )
476 0 : static_cast< DrawViewShell* >( mpViewSh )->InsertURLButton( aCurrentDropFile, aCurrentDropFile, String(), &maDropPos );
477 : else
478 : {
479 0 : if( mpViewSh )
480 : {
481 : try
482 : {
483 : //TODO/MBA: testing
484 0 : ::rtl::OUString aName;
485 0 : uno::Sequence < beans::PropertyValue > aMedium(1);
486 0 : aMedium[0].Name = "URL" ;
487 0 : aMedium[0].Value <<= ::rtl::OUString(aCurrentDropFile) ;
488 :
489 0 : uno::Reference < embed::XEmbeddedObject > xObj = mpDocSh->GetEmbeddedObjectContainer().
490 0 : InsertEmbeddedObject( aMedium, aName );
491 :
492 0 : uno::Reference < embed::XEmbedPersist > xPersist( xObj, uno::UNO_QUERY );
493 0 : if ( xPersist.is())
494 : {
495 : // TODO/LEAN: VisualArea access can switch the object to running state
496 0 : sal_Int64 nAspect = embed::Aspects::MSOLE_CONTENT;
497 :
498 0 : xPersist->storeOwn();
499 :
500 0 : awt::Size aSz;
501 : try
502 : {
503 0 : aSz = xObj->getVisualAreaSize( nAspect );
504 : }
505 0 : catch( embed::NoVisualAreaSizeException& )
506 : {
507 : // the default size will be set later
508 : }
509 :
510 0 : Size aSize( aSz.Width, aSz.Height );
511 0 : Rectangle aRect;
512 :
513 0 : if (!aSize.Width() || !aSize.Height())
514 : {
515 0 : aSize.Width() = 1410;
516 0 : aSize.Height() = 1000;
517 : }
518 :
519 0 : aRect = Rectangle( maDropPos, aSize );
520 :
521 0 : SdrOle2Obj* pOleObj = new SdrOle2Obj( svt::EmbeddedObjectRef( xObj, nAspect ), aName, aRect );
522 0 : sal_uLong nOptions = SDRINSERT_SETDEFLAYER;
523 :
524 0 : if (mpViewSh != NULL)
525 : {
526 : OSL_ASSERT (mpViewSh->GetViewShell()!=NULL);
527 : SfxInPlaceClient* pIpClient =
528 0 : mpViewSh->GetViewShell()->GetIPClient();
529 0 : if (pIpClient!=NULL && pIpClient->IsObjectInPlaceActive())
530 0 : nOptions |= SDRINSERT_DONTMARK;
531 : }
532 :
533 0 : InsertObjectAtView( pOleObj, *GetSdrPageView(), nOptions );
534 0 : pOleObj->SetLogicRect( aRect );
535 0 : aSz.Width = aRect.GetWidth();
536 0 : aSz.Height = aRect.GetHeight();
537 0 : xObj->setVisualAreaSize( nAspect,aSz );
538 0 : }
539 : }
540 0 : catch( uno::Exception& )
541 : {
542 0 : nError = ERRCODE_IO_GENERAL;
543 : // TODO/LATER: better error handling
544 : }
545 : }
546 : }
547 : }
548 :
549 0 : ++aIter;
550 0 : }
551 :
552 0 : if( nError )
553 0 : ErrorHandler::HandleError( nError );
554 :
555 0 : return nError;
556 : }
557 :
558 : /*************************************************************************
559 : |*
560 : |* Timer-Handler fuer Errorhandling beim Drop()
561 : |*
562 : \************************************************************************/
563 :
564 0 : IMPL_LINK_NOARG(View, DropErrorHdl)
565 : {
566 0 : InfoBox( mpViewSh ? mpViewSh->GetActiveWindow() : 0, String(SdResId(STR_ACTION_NOTPOSSIBLE) ) ).Execute();
567 0 : return 0;
568 : }
569 :
570 : #ifdef _MSC_VER
571 : #pragma optimize ( "", on )
572 : #endif
573 :
574 :
575 : /*************************************************************************
576 : |*
577 : |* StyleSheet aus der Sleketion besorgen
578 : |*
579 : \************************************************************************/
580 :
581 0 : SfxStyleSheet* View::GetStyleSheet() const
582 : {
583 0 : return SdrView::GetStyleSheet();
584 : }
585 :
586 : } // end of namespace sd
587 :
588 : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|