office-gobmx/sd/source/ui/view/sdview4.cxx

638 lines
23 KiB
C++
Raw Normal View History

2000-09-18 11:07:07 -05:00
/*************************************************************************
*
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
2000-09-18 11:07:07 -05:00
*
* Copyright 2000, 2010 Oracle and/or its affiliates.
2000-09-18 11:07:07 -05:00
*
* OpenOffice.org - a multi-platform office productivity suite
2000-09-18 11:07:07 -05:00
*
* This file is part of OpenOffice.org.
2000-09-18 11:07:07 -05:00
*
* OpenOffice.org is free software: you can redistribute it and/or modify
* it under the terms of the GNU Lesser General Public License version 3
* only, as published by the Free Software Foundation.
2000-09-18 11:07:07 -05:00
*
* OpenOffice.org is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Lesser General Public License version 3 for more details
* (a copy is included in the LICENSE file that accompanied this code).
2000-09-18 11:07:07 -05:00
*
* You should have received a copy of the GNU Lesser General Public License
* version 3 along with OpenOffice.org. If not, see
* <http://www.openoffice.org/license.html>
* for a copy of the LGPLv3 License.
2000-09-18 11:07:07 -05:00
*
************************************************************************/
// MARKER(update_precomp.py): autogen include statement, do not remove
#include "precompiled_sd.hxx"
2000-09-18 11:07:07 -05:00
#include "View.hxx"
#include <unotools/localfilehelper.hxx>
2001-03-08 04:28:38 -06:00
#include <sfx2/request.hxx>
#include <sfx2/docfilt.hxx>
#include <sfx2/fcontnr.hxx>
2000-09-18 11:07:07 -05:00
#include <sfx2/docfile.hxx>
2001-03-08 04:28:38 -06:00
#include <vcl/msgbox.hxx>
#include <svl/urlbmk.hxx>
2001-03-08 04:28:38 -06:00
#include <svx/svdpagv.hxx>
#include <svx/xfillit.hxx>
#include <svx/svdundo.hxx>
#include <svx/xoutbmp.hxx>
#include <svx/svdograf.hxx>
#include <svx/svdomedia.hxx>
2001-03-08 04:28:38 -06:00
#include <svx/svdoole2.hxx>
#include <sot/storage.hxx>
2001-03-08 04:28:38 -06:00
#include <sfx2/app.hxx>
#include <avmedia/mediawindow.hxx>
#include <svtools/ehdl.hxx>
#include <svtools/sfxecode.hxx>
#include <svtools/filter.hxx>
2000-09-18 11:07:07 -05:00
#include "app.hrc"
#include "Window.hxx"
#include "DrawDocShell.hxx"
#include "DrawViewShell.hxx"
2001-03-08 04:28:38 -06:00
#include "fuinsfil.hxx"
2000-09-18 11:07:07 -05:00
#include "drawdoc.hxx"
2001-03-08 04:28:38 -06:00
#include "sdresid.hxx"
#include "strings.hrc"
#include "imapinfo.hxx"
#include "sdpage.hxx"
#include "view/SlideSorterView.hxx"
#include "undo/undoobjects.hxx"
#include <comphelper/processfactory.hxx>
#include <com/sun/star/embed/ElementModes.hpp>
#include <com/sun/star/embed/XEmbedPersist.hpp>
#include <com/sun/star/embed/Aspects.hpp>
#include <com/sun/star/embed/NoVisualAreaSizeException.hpp>
#include <svtools/soerr.hxx>
#include <sfx2/ipclient.hxx>
using namespace com::sun::star;
namespace sd {
2000-09-18 11:07:07 -05:00
#ifdef _MSC_VER
2001-03-08 04:28:38 -06:00
#pragma optimize ( "", off )
2000-09-18 11:07:07 -05:00
#endif
/*************************************************************************
|*
2001-03-08 04:28:38 -06:00
|* Graphik einfuegen
|* Wird ein leeres Graphikobjekt uebergeben, so wird dieses gefuellt.
|* Andernfalls wird ein an der gegebenen Position vorhandenes Objekt
|* gefuellt. Ist an der Position kein Objekt vorhanden, so wird ein neues
|* Objekt erzeugt und ein Pointer auf dieses Objekt zurueckgegeben.
2000-09-18 11:07:07 -05:00
|*
\************************************************************************/
SdrGrafObj* View::InsertGraphic( const Graphic& rGraphic, sal_Int8& rAction,
2001-03-08 04:28:38 -06:00
const Point& rPos, SdrObject* pObj, ImageMap* pImageMap )
2000-09-18 11:07:07 -05:00
{
SdrEndTextEdit();
mnAction = rAction;
2000-09-18 11:07:07 -05:00
2001-03-08 04:28:38 -06:00
// Liegt ein Objekt an der Position rPos?
SdrGrafObj* pNewGrafObj = NULL;
SdrPageView* pPV = GetSdrPageView();
2001-03-08 04:28:38 -06:00
SdrObject* pPickObj = pObj;
2000-09-18 11:07:07 -05:00
if(pPV && this->ISA(::sd::slidesorter::view::SlideSorterView))
{
if(!pPV->GetPageRect().IsInside(rPos))
pPV = 0L;
}
2001-03-08 04:28:38 -06:00
if( !pPickObj && pPV )
2000-09-18 11:07:07 -05:00
{
2001-03-08 04:28:38 -06:00
SdrPageView* pPageView = pPV;
CWS-TOOLING: integrate CWS aw065 2009-06-17 13:48:12 +0200 aw r273068 : #99385# corrected small error in SCs selection visualisation 2009-06-16 15:45:28 +0200 wg r273021 : i102838 2009-06-16 12:46:07 +0200 wg r273016 : i102833 2009-06-11 17:40:29 +0200 aw r272895 : #i98870# added implementation for getPageCount helper 2009-06-11 16:39:54 +0200 aw r272885 : #i102663#, #i102667#, #i98870# incluide file typo corrected 2009-06-11 16:24:07 +0200 aw r272881 : #i102663#, #i102667#, #i98870# changes to SdrText, it's usage in SdrTextPrimitive2D and to OverlayObject base implementation. Also support for PageCountField added 2009-06-11 16:23:52 +0200 aw r272880 : #i102663#, #i102667#, #i98870# changes to SdrText, it's usage in SdrTextPrimitive2D and to OverlayObject base implementation. Also support for PageCountField added 2009-06-09 13:50:29 +0200 aw r272769 : #i98917# added support for the OverlayHatchRectanglePrimitive to follow rotation with it's hatch; simplified OverlayHatchRect 2009-06-09 13:04:06 +0200 aw r272766 : #i98870# re-added PageNumber identification in SdrTextPrimitive2D::get2DDecomposition 2009-06-08 18:56:05 +0200 aw r272744 : #i99385# added some last corrections to OverlayObjects in SD (had to do some merges on resync, needed to optically check and correct) 2009-06-08 11:17:57 +0200 aw r272725 : cws aw065: corrections after resync 2009-06-08 11:02:25 +0200 aw r272723 : cws aw065: corrections after resync 2009-06-08 10:36:22 +0200 aw r272722 : cws aw065: corrections after resync 2009-06-05 18:57:06 +0200 aw r272712 : CWS-TOOLING: rebase CWS aw065 to trunk@272291 (milestone: DEV300:m49) 2009-06-05 14:56:34 +0200 aw r272690 : #i89784# stripped old stuff no longer needed due to text-to-polygon conversion using primitives 2009-06-05 14:50:07 +0200 aw r272688 : #102091# removed on-model-lock suppression for SdrObject::ActionChanged() 2009-06-05 14:47:29 +0200 aw r272687 : #102091# corrected local value buffering in ScenePrimitive2D::get2DDecomposition 2009-06-03 17:53:32 +0200 aw r272599 : #i89784# version before stripping 2009-06-03 17:52:18 +0200 aw r272598 : #i89784# version before stripping 2009-05-28 17:15:47 +0200 aw r272420 : #i101872# old stuff removed/stripped 2009-05-28 17:15:32 +0200 aw r272419 : #i101872# old stuff removed/stripped 2009-05-28 17:15:15 +0200 aw r272418 : #i101872# old stuff removed/stripped 2009-05-28 17:14:45 +0200 aw r272417 : #i101872# old stuff removed/stripped 2009-05-28 12:13:56 +0200 aw r272396 : #i101872# stable hybrid state 2009-05-28 12:13:46 +0200 aw r272395 : #i101872# stable hybrid state 2009-05-28 12:13:35 +0200 aw r272394 : #i101872# stable hybrid state 2009-05-28 12:13:20 +0200 aw r272393 : #i101872# stable hybrid state 2009-05-28 12:13:05 +0200 aw r272392 : #i101872# stable hybrid state 2009-05-28 12:12:51 +0200 aw r272391 : #i101872# stable hybrid state 2009-05-15 16:56:02 +0200 aw r271952 : #i101872# HitTest unifications 2009-05-15 16:55:22 +0200 aw r271951 : #i101872# HitTest unifications 2009-05-15 16:55:12 +0200 aw r271950 : #i101872# HitTest unifications 2009-05-15 16:55:01 +0200 aw r271949 : #i101872# HitTest unifications 2009-05-15 16:54:51 +0200 aw r271948 : #i101872# HitTest unifications 2009-05-15 16:54:35 +0200 aw r271947 : #i101872# HitTest unifications 2009-05-15 16:54:22 +0200 aw r271946 : #i101872# HitTest unifications 2009-05-12 19:08:38 +0200 aw r271834 : #i101684# corrected AutoShape's preparation of text transformation due to different definitions in TextBounds 2009-05-12 15:44:49 +0200 aw r271827 : #i89784# expanded TextLayouterDevice::getTextOutlines() to support DXArray and X-Font scaling 2009-05-11 19:40:40 +0200 aw r271790 : #i99385# extended HitTest primitive usage, removed IsHdlHit implementations; prepared further HitTest simplifications 2009-05-11 19:40:25 +0200 aw r271789 : #i99385# extended HitTest primitive usage, removed IsHdlHit implementations; prepared further HitTest simplifications 2009-05-11 19:40:12 +0200 aw r271788 : #i99385# extended HitTest primitive usage, removed IsHdlHit implementations; prepared further HitTest simplifications 2009-05-11 13:01:53 +0200 aw r271765 : #i99385# corrections and optimizations 2009-05-08 14:48:40 +0200 aw r271718 : #i1016180# added optimizations in model operations when model is locked 2009-05-08 14:11:45 +0200 aw r271716 : #i101679# added flush() calls to OverlayManager when interaction step is prepared 2009-05-07 17:44:03 +0200 aw r271689 : #i99385# last corrections/changes 2009-05-07 17:43:47 +0200 aw r271688 : #i99385# last corrections/changes 2009-05-07 13:20:09 +0200 aw r271654 : #i99385# added changes from WFH 2009-05-07 13:19:38 +0200 aw r271653 : #i99385# added changes from WFH 2009-05-07 13:19:11 +0200 aw r271652 : #i99385# added changes from WFH 2009-05-07 11:33:17 +0200 aw r271643 : #i99385# corrections after resync 2009-05-07 11:17:31 +0200 aw r271642 : #i99385# corrections after resync 2009-05-06 18:46:53 +0200 aw r271609 : CWS-TOOLING: rebase CWS aw065 to trunk@271427 (milestone: DEV300:m47) 2009-05-05 18:24:03 +0200 aw r271548 : #i101443# force new text decomposition when TextBackgroundColor has changed 2009-05-05 17:44:42 +0200 aw r271542 : #i99385# 3rd round, simplifications and corrections done 2009-05-05 17:44:32 +0200 aw r271541 : #i99385# 3rd round, simplifications and corrections done 2009-05-05 17:44:20 +0200 aw r271540 : #i99385# 3rd round, simplifications and corrections done 2009-05-05 17:44:09 +0200 aw r271539 : #i99385# 3rd round, simplifications and corrections done 2009-05-05 15:48:38 +0200 aw r271527 : #i99385# 2nd round, usages checked and corrected 2009-05-05 15:48:15 +0200 aw r271526 : #i99385# 2nd round, usages checked and corrected 2009-05-05 15:48:03 +0200 aw r271525 : #i99385# 2nd round, usages checked and corrected 2009-05-05 15:47:51 +0200 aw r271524 : #i99385# 2nd round, usages checked and corrected 2009-04-27 18:33:10 +0200 aw r271300 : #i99385# state commit after all implementations are done 2009-04-27 15:36:53 +0200 aw r271283 : #i99385# state commit after all implementations are done 2009-04-27 15:27:49 +0200 aw r271280 : #i99385# state commit after all implementations are done 2009-04-27 15:27:33 +0200 aw r271279 : #i99385# state commit after all implementations are done 2009-04-27 15:27:00 +0200 aw r271278 : #i99385# state commit after all implementations are done 2009-04-27 15:26:15 +0200 aw r271277 : #i99385# state commit after all implementations are done 2009-04-27 15:25:40 +0200 aw r271275 : #i99385# state commit after all implementations are done 2009-04-27 15:25:19 +0200 aw r271274 : #i99385# state commit after all implementations are done 2009-04-27 15:24:00 +0200 aw r271272 : #i99385# state commit after all implementations are done 2009-03-19 17:12:00 +0100 aw r269757 : #i100360# corrected bitmap's PefSize calculation for bitmap filled objects when Bitmap is Pixel-based on it's mapping 2009-02-19 17:09:47 +0100 aw r268298 : #i98917# corrected attributes 2009-02-19 17:09:30 +0100 aw r268297 : #i98917# corrected attributes 2009-02-19 17:08:22 +0100 aw r268296 : #i98917# corrected attributes 2009-02-19 11:56:25 +0100 aw r268268 : #i98870# added extra code to react on PageNumber change 2009-02-18 16:57:24 +0100 aw r268243 : #i98917# in OverlayHatchRect::getGeometry the rotation was not applied to the TopLeft of the centered rectangle, but to the already extended one, thus the visualisation was rotating around the wrong edge
2009-07-02 09:28:15 -05:00
PickObj(rPos, getHitTolLog(), pPickObj, pPageView);
2001-03-08 04:28:38 -06:00
}
2000-09-18 11:07:07 -05:00
if( mnAction == DND_ACTION_LINK && pPickObj && pPV )
2001-03-08 04:28:38 -06:00
{
const bool bIsGraphic = pPickObj->ISA( SdrGrafObj );
if( bIsGraphic || pObj->IsEmptyPresObj() )
2000-09-18 11:07:07 -05:00
{
if( IsUndoEnabled() )
BegUndo(String(SdResId(STR_INSERTGRAPHIC)));
2010-02-02 09:46:05 -06:00
SdPage* pPage = (SdPage*) pPickObj->GetPage();
if( bIsGraphic )
{
// Das Objekt wird mit der Bitmap gefuellt
pNewGrafObj = (SdrGrafObj*) pPickObj->Clone();
pNewGrafObj->SetGraphic(rGraphic);
}
else
{
pNewGrafObj = new SdrGrafObj( rGraphic, pPickObj->GetLogicRect() );
pNewGrafObj->SetEmptyPresObj(TRUE);
}
2000-09-18 11:07:07 -05:00
2001-03-08 04:28:38 -06:00
if ( pNewGrafObj->IsEmptyPresObj() )
2000-09-18 11:07:07 -05:00
{
2001-03-08 04:28:38 -06:00
Rectangle aRect( pNewGrafObj->GetLogicRect() );
pNewGrafObj->AdjustToMaxRect( aRect, FALSE );
pNewGrafObj->SetOutlinerParaObject(NULL);
pNewGrafObj->SetEmptyPresObj(FALSE);
2000-09-18 11:07:07 -05:00
}
2010-02-02 09:46:05 -06:00
if (pPage && pPage->IsPresObj(pPickObj))
2000-09-18 11:07:07 -05:00
{
2001-03-08 04:28:38 -06:00
// Neues PresObj in die Liste eintragen
2010-02-22 17:23:09 -06:00
pPage->InsertPresObj( pNewGrafObj, PRESOBJ_GRAPHIC );
2001-03-08 04:28:38 -06:00
pNewGrafObj->SetUserCall(pPickObj->GetUserCall());
2000-09-18 11:07:07 -05:00
}
2001-03-08 04:28:38 -06:00
if (pImageMap)
pNewGrafObj->InsertUserData(new SdIMapInfo(*pImageMap));
ReplaceObjectAtView(pPickObj, *pPV, pNewGrafObj); // maybe ReplaceObjectAtView
if( IsUndoEnabled() )
EndUndo();
2001-03-08 04:28:38 -06:00
}
else if (pPickObj->IsClosedObj() && !pPickObj->ISA(SdrOle2Obj))
{
/******************************************************************
* Das Objekt wird mit der Graphik gefuellt
******************************************************************/
if( IsUndoEnabled() )
{
BegUndo(String(SdResId(STR_UNDO_DRAGDROP)));
AddUndo(GetModel()->GetSdrUndoFactory().CreateUndoAttrObject(*pPickObj));
EndUndo();
}
2001-03-08 04:28:38 -06:00
XOBitmap aXOBitmap( rGraphic.GetBitmap() );
SfxItemSet aSet(mpDocSh->GetPool(), XATTR_FILLSTYLE, XATTR_FILLBITMAP);
2001-03-08 04:28:38 -06:00
aSet.Put(XFillStyleItem(XFILL_BITMAP));
aSet.Put(XFillBitmapItem(&mpDocSh->GetPool(), aXOBitmap));
pPickObj->SetMergedItemSetAndBroadcast(aSet);
2000-09-18 11:07:07 -05:00
}
2001-03-08 04:28:38 -06:00
}
else if ( pPV )
{
// create new object
Size aSize;
2000-09-18 11:07:07 -05:00
2001-03-08 04:28:38 -06:00
if ( rGraphic.GetPrefMapMode().GetMapUnit() == MAP_PIXEL )
{
::OutputDevice* pOutDev = 0;
if( mpViewSh )
pOutDev = mpViewSh->GetActiveWindow();
if( !pOutDev )
pOutDev = Application::GetDefaultDevice();
if( pOutDev )
aSize = pOutDev->PixelToLogic( rGraphic.GetPrefSize(), MAP_100TH_MM );
}
2001-03-08 04:28:38 -06:00
else
2000-09-18 11:07:07 -05:00
{
2001-03-08 04:28:38 -06:00
aSize = OutputDevice::LogicToLogic( rGraphic.GetPrefSize(),
rGraphic.GetPrefMapMode(),
MapMode( MAP_100TH_MM ) );
}
2000-09-18 11:07:07 -05:00
2001-03-08 04:28:38 -06:00
pNewGrafObj = new SdrGrafObj( rGraphic, Rectangle( rPos, aSize ) );
SdrPage* pPage = pPV->GetPage();
Size aPageSize( pPage->GetSize() );
aPageSize.Width() -= pPage->GetLftBorder() + pPage->GetRgtBorder();
aPageSize.Height() -= pPage->GetUppBorder() + pPage->GetLwrBorder();
pNewGrafObj->AdjustToMaxRect( Rectangle( Point(), aPageSize ), TRUE );
// pNewGrafObj->AdjustToMaxRect( Rectangle( pPV->GetOffset(), aPageSize ), TRUE );
2000-09-18 11:07:07 -05:00
2001-03-08 04:28:38 -06:00
ULONG nOptions = SDRINSERT_SETDEFLAYER;
BOOL bIsPresTarget = FALSE;
2000-09-18 11:07:07 -05:00
if ((mpViewSh
&& mpViewSh->GetViewShell()!=NULL
&& mpViewSh->GetViewShell()->GetIPClient()
&& mpViewSh->GetViewShell()->GetIPClient()->IsObjectInPlaceActive())
|| this->ISA(::sd::slidesorter::view::SlideSorterView))
2001-03-08 04:28:38 -06:00
nOptions |= SDRINSERT_DONTMARK;
2000-09-18 11:07:07 -05:00
if( ( mnAction & DND_ACTION_MOVE ) && pPickObj && (pPickObj->IsEmptyPresObj() || pPickObj->GetUserCall()) )
2001-03-08 04:28:38 -06:00
{
SdPage* pP = static_cast< SdPage* >( pPickObj->GetPage() );
2001-03-08 04:28:38 -06:00
if ( pP && pP->IsMasterPage() )
bIsPresTarget = pP->IsPresObj(pPickObj);
2001-03-08 04:28:38 -06:00
}
if( ( mnAction & DND_ACTION_MOVE ) && pPickObj && !bIsPresTarget )
2001-03-08 04:28:38 -06:00
{
// replace object
if (pImageMap)
pNewGrafObj->InsertUserData(new SdIMapInfo(*pImageMap));
Rectangle aPickObjRect(pPickObj->GetCurrentBoundRect());
2001-03-08 04:28:38 -06:00
Size aPickObjSize(aPickObjRect.GetSize());
Rectangle aObjRect(pNewGrafObj->GetCurrentBoundRect());
2001-03-08 04:28:38 -06:00
Size aObjSize(aObjRect.GetSize());
Fraction aScaleWidth(aPickObjSize.Width(), aObjSize.Width());
Fraction aScaleHeight(aPickObjSize.Height(), aObjSize.Height());
pNewGrafObj->NbcResize(aObjRect.TopLeft(), aScaleWidth, aScaleHeight);
Point aVec = aPickObjRect.TopLeft() - aObjRect.TopLeft();
pNewGrafObj->NbcMove(Size(aVec.X(), aVec.Y()));
const bool bUndo = IsUndoEnabled();
if( bUndo )
BegUndo(String(SdResId(STR_UNDO_DRAGDROP)));
2001-03-08 04:28:38 -06:00
pNewGrafObj->NbcSetLayer(pPickObj->GetLayer());
SdrPage* pP = pPV->GetPage();
pP->InsertObject(pNewGrafObj);
if( bUndo )
{
AddUndo(mpDoc->GetSdrUndoFactory().CreateUndoNewObject(*pNewGrafObj));
AddUndo(mpDoc->GetSdrUndoFactory().CreateUndoDeleteObject(*pPickObj));
}
pP->RemoveObject(pPickObj->GetOrdNum());
if( bUndo )
{
EndUndo();
}
else
{
SdrObject::Free(pPickObj);
}
mnAction = DND_ACTION_COPY;
2001-03-08 04:28:38 -06:00
}
else
{
InsertObjectAtView(pNewGrafObj, *pPV, nOptions);
2001-03-08 04:28:38 -06:00
if( pImageMap )
pNewGrafObj->InsertUserData(new SdIMapInfo(*pImageMap));
}
}
rAction = mnAction;
2001-03-08 04:28:38 -06:00
return pNewGrafObj;
}
2000-09-18 11:07:07 -05:00
// -----------------------------------------------------------------------------
SdrMediaObj* View::InsertMediaURL( const rtl::OUString& rMediaURL, sal_Int8& rAction,
const Point& rPos, const Size& rSize )
{
SdrEndTextEdit();
mnAction = rAction;
SdrMediaObj* pNewMediaObj = NULL;
SdrPageView* pPV = GetSdrPageView();
2010-02-22 17:23:09 -06:00
SdrObject* pPickObj = GetEmptyPresentationObject( PRESOBJ_MEDIA );
if(pPV && this->ISA(::sd::slidesorter::view::SlideSorterView ))
{
if(!pPV->GetPageRect().IsInside(rPos))
pPV = 0L;
}
if( !pPickObj && pPV )
{
SdrPageView* pPageView = pPV;
CWS-TOOLING: integrate CWS aw065 2009-06-17 13:48:12 +0200 aw r273068 : #99385# corrected small error in SCs selection visualisation 2009-06-16 15:45:28 +0200 wg r273021 : i102838 2009-06-16 12:46:07 +0200 wg r273016 : i102833 2009-06-11 17:40:29 +0200 aw r272895 : #i98870# added implementation for getPageCount helper 2009-06-11 16:39:54 +0200 aw r272885 : #i102663#, #i102667#, #i98870# incluide file typo corrected 2009-06-11 16:24:07 +0200 aw r272881 : #i102663#, #i102667#, #i98870# changes to SdrText, it's usage in SdrTextPrimitive2D and to OverlayObject base implementation. Also support for PageCountField added 2009-06-11 16:23:52 +0200 aw r272880 : #i102663#, #i102667#, #i98870# changes to SdrText, it's usage in SdrTextPrimitive2D and to OverlayObject base implementation. Also support for PageCountField added 2009-06-09 13:50:29 +0200 aw r272769 : #i98917# added support for the OverlayHatchRectanglePrimitive to follow rotation with it's hatch; simplified OverlayHatchRect 2009-06-09 13:04:06 +0200 aw r272766 : #i98870# re-added PageNumber identification in SdrTextPrimitive2D::get2DDecomposition 2009-06-08 18:56:05 +0200 aw r272744 : #i99385# added some last corrections to OverlayObjects in SD (had to do some merges on resync, needed to optically check and correct) 2009-06-08 11:17:57 +0200 aw r272725 : cws aw065: corrections after resync 2009-06-08 11:02:25 +0200 aw r272723 : cws aw065: corrections after resync 2009-06-08 10:36:22 +0200 aw r272722 : cws aw065: corrections after resync 2009-06-05 18:57:06 +0200 aw r272712 : CWS-TOOLING: rebase CWS aw065 to trunk@272291 (milestone: DEV300:m49) 2009-06-05 14:56:34 +0200 aw r272690 : #i89784# stripped old stuff no longer needed due to text-to-polygon conversion using primitives 2009-06-05 14:50:07 +0200 aw r272688 : #102091# removed on-model-lock suppression for SdrObject::ActionChanged() 2009-06-05 14:47:29 +0200 aw r272687 : #102091# corrected local value buffering in ScenePrimitive2D::get2DDecomposition 2009-06-03 17:53:32 +0200 aw r272599 : #i89784# version before stripping 2009-06-03 17:52:18 +0200 aw r272598 : #i89784# version before stripping 2009-05-28 17:15:47 +0200 aw r272420 : #i101872# old stuff removed/stripped 2009-05-28 17:15:32 +0200 aw r272419 : #i101872# old stuff removed/stripped 2009-05-28 17:15:15 +0200 aw r272418 : #i101872# old stuff removed/stripped 2009-05-28 17:14:45 +0200 aw r272417 : #i101872# old stuff removed/stripped 2009-05-28 12:13:56 +0200 aw r272396 : #i101872# stable hybrid state 2009-05-28 12:13:46 +0200 aw r272395 : #i101872# stable hybrid state 2009-05-28 12:13:35 +0200 aw r272394 : #i101872# stable hybrid state 2009-05-28 12:13:20 +0200 aw r272393 : #i101872# stable hybrid state 2009-05-28 12:13:05 +0200 aw r272392 : #i101872# stable hybrid state 2009-05-28 12:12:51 +0200 aw r272391 : #i101872# stable hybrid state 2009-05-15 16:56:02 +0200 aw r271952 : #i101872# HitTest unifications 2009-05-15 16:55:22 +0200 aw r271951 : #i101872# HitTest unifications 2009-05-15 16:55:12 +0200 aw r271950 : #i101872# HitTest unifications 2009-05-15 16:55:01 +0200 aw r271949 : #i101872# HitTest unifications 2009-05-15 16:54:51 +0200 aw r271948 : #i101872# HitTest unifications 2009-05-15 16:54:35 +0200 aw r271947 : #i101872# HitTest unifications 2009-05-15 16:54:22 +0200 aw r271946 : #i101872# HitTest unifications 2009-05-12 19:08:38 +0200 aw r271834 : #i101684# corrected AutoShape's preparation of text transformation due to different definitions in TextBounds 2009-05-12 15:44:49 +0200 aw r271827 : #i89784# expanded TextLayouterDevice::getTextOutlines() to support DXArray and X-Font scaling 2009-05-11 19:40:40 +0200 aw r271790 : #i99385# extended HitTest primitive usage, removed IsHdlHit implementations; prepared further HitTest simplifications 2009-05-11 19:40:25 +0200 aw r271789 : #i99385# extended HitTest primitive usage, removed IsHdlHit implementations; prepared further HitTest simplifications 2009-05-11 19:40:12 +0200 aw r271788 : #i99385# extended HitTest primitive usage, removed IsHdlHit implementations; prepared further HitTest simplifications 2009-05-11 13:01:53 +0200 aw r271765 : #i99385# corrections and optimizations 2009-05-08 14:48:40 +0200 aw r271718 : #i1016180# added optimizations in model operations when model is locked 2009-05-08 14:11:45 +0200 aw r271716 : #i101679# added flush() calls to OverlayManager when interaction step is prepared 2009-05-07 17:44:03 +0200 aw r271689 : #i99385# last corrections/changes 2009-05-07 17:43:47 +0200 aw r271688 : #i99385# last corrections/changes 2009-05-07 13:20:09 +0200 aw r271654 : #i99385# added changes from WFH 2009-05-07 13:19:38 +0200 aw r271653 : #i99385# added changes from WFH 2009-05-07 13:19:11 +0200 aw r271652 : #i99385# added changes from WFH 2009-05-07 11:33:17 +0200 aw r271643 : #i99385# corrections after resync 2009-05-07 11:17:31 +0200 aw r271642 : #i99385# corrections after resync 2009-05-06 18:46:53 +0200 aw r271609 : CWS-TOOLING: rebase CWS aw065 to trunk@271427 (milestone: DEV300:m47) 2009-05-05 18:24:03 +0200 aw r271548 : #i101443# force new text decomposition when TextBackgroundColor has changed 2009-05-05 17:44:42 +0200 aw r271542 : #i99385# 3rd round, simplifications and corrections done 2009-05-05 17:44:32 +0200 aw r271541 : #i99385# 3rd round, simplifications and corrections done 2009-05-05 17:44:20 +0200 aw r271540 : #i99385# 3rd round, simplifications and corrections done 2009-05-05 17:44:09 +0200 aw r271539 : #i99385# 3rd round, simplifications and corrections done 2009-05-05 15:48:38 +0200 aw r271527 : #i99385# 2nd round, usages checked and corrected 2009-05-05 15:48:15 +0200 aw r271526 : #i99385# 2nd round, usages checked and corrected 2009-05-05 15:48:03 +0200 aw r271525 : #i99385# 2nd round, usages checked and corrected 2009-05-05 15:47:51 +0200 aw r271524 : #i99385# 2nd round, usages checked and corrected 2009-04-27 18:33:10 +0200 aw r271300 : #i99385# state commit after all implementations are done 2009-04-27 15:36:53 +0200 aw r271283 : #i99385# state commit after all implementations are done 2009-04-27 15:27:49 +0200 aw r271280 : #i99385# state commit after all implementations are done 2009-04-27 15:27:33 +0200 aw r271279 : #i99385# state commit after all implementations are done 2009-04-27 15:27:00 +0200 aw r271278 : #i99385# state commit after all implementations are done 2009-04-27 15:26:15 +0200 aw r271277 : #i99385# state commit after all implementations are done 2009-04-27 15:25:40 +0200 aw r271275 : #i99385# state commit after all implementations are done 2009-04-27 15:25:19 +0200 aw r271274 : #i99385# state commit after all implementations are done 2009-04-27 15:24:00 +0200 aw r271272 : #i99385# state commit after all implementations are done 2009-03-19 17:12:00 +0100 aw r269757 : #i100360# corrected bitmap's PefSize calculation for bitmap filled objects when Bitmap is Pixel-based on it's mapping 2009-02-19 17:09:47 +0100 aw r268298 : #i98917# corrected attributes 2009-02-19 17:09:30 +0100 aw r268297 : #i98917# corrected attributes 2009-02-19 17:08:22 +0100 aw r268296 : #i98917# corrected attributes 2009-02-19 11:56:25 +0100 aw r268268 : #i98870# added extra code to react on PageNumber change 2009-02-18 16:57:24 +0100 aw r268243 : #i98917# in OverlayHatchRect::getGeometry the rotation was not applied to the TopLeft of the centered rectangle, but to the already extended one, thus the visualisation was rotating around the wrong edge
2009-07-02 09:28:15 -05:00
PickObj(rPos, getHitTolLog(), pPickObj, pPageView);
}
if( mnAction == DND_ACTION_LINK && pPickObj && pPV && pPickObj->ISA( SdrMediaObj ) )
{
pNewMediaObj = static_cast< SdrMediaObj* >( pPickObj->Clone() );
pNewMediaObj->setURL( rMediaURL );
BegUndo(String(SdResId(STR_UNDO_DRAGDROP)));
ReplaceObjectAtView(pPickObj, *pPV, pNewMediaObj);
EndUndo();
}
else if( pPV )
{
2010-02-22 17:23:09 -06:00
Rectangle aRect( rPos, rSize );
if( pPickObj )
aRect = pPickObj->GetLogicRect();
pNewMediaObj = new SdrMediaObj( aRect );
bool bIsPres = false;
2010-02-22 17:23:09 -06:00
if( pPickObj )
{
SdPage* pPage = static_cast< SdPage* >(pPickObj->GetPage());
bIsPres = pPage && pPage->IsPresObj(pPickObj);
if( bIsPres )
2010-02-22 17:23:09 -06:00
{
pPage->InsertPresObj( pNewMediaObj, PRESOBJ_MEDIA );
}
}
if( pPickObj )
ReplaceObjectAtView(pPickObj, *pPV, pNewMediaObj);
else
InsertObjectAtView( pNewMediaObj, *pPV, SDRINSERT_SETDEFLAYER );
pNewMediaObj->setURL( rMediaURL );
if( pPickObj )
{
2010-02-22 17:23:09 -06:00
pNewMediaObj->AdjustToMaxRect( pPickObj->GetLogicRect() );
if( bIsPres )
pNewMediaObj->SetUserCall(pPickObj->GetUserCall());
}
}
rAction = mnAction;
return pNewMediaObj;
}
2001-03-08 04:28:38 -06:00
/*************************************************************************
|*
|* Timer-Handler fuer InsertFile beim Drop()
|*
\************************************************************************/
IMPL_LINK( View, DropInsertFileHdl, Timer*, EMPTYARG )
2001-03-08 04:28:38 -06:00
{
DBG_ASSERT( mpViewSh, "sd::View::DropInsertFileHdl(), I need a view shell to work!" );
if( !mpViewSh )
return 0;
SfxErrorContext aEc( ERRCTX_ERROR, mpViewSh->GetActiveWindow(), RID_SO_ERRCTX );
ErrCode nError = 0;
::std::vector< String >::const_iterator aIter( maDropFileVector.begin() );
while( (aIter != maDropFileVector.end()) && !nError )
{
String aCurrentDropFile( *aIter );
INetURLObject aURL( aCurrentDropFile );
BOOL bOK = FALSE;
if( aURL.GetProtocol() == INET_PROT_NOT_VALID )
{
String aURLStr;
::utl::LocalFileHelper::ConvertPhysicalNameToURL( aCurrentDropFile, aURLStr );
aURL = INetURLObject( aURLStr );
}
2001-03-08 04:28:38 -06:00
GraphicFilter* pGraphicFilter = GraphicFilter::GetGraphicFilter();
Graphic aGraphic;
2001-03-08 04:28:38 -06:00
aCurrentDropFile = aURL.GetMainURL( INetURLObject::NO_DECODE );
2001-03-08 04:28:38 -06:00
if( !::avmedia::MediaWindow::isMediaURL( aCurrentDropFile ) )
{
if( !pGraphicFilter->ImportGraphic( aGraphic, aURL ) )
{
sal_Int8 nTempAction = ( aIter == maDropFileVector.begin() ) ? mnAction : 0;
const bool bLink = ( ( nTempAction & DND_ACTION_LINK ) != 0 );
SdrGrafObj* pGrafObj = InsertGraphic( aGraphic, nTempAction, maDropPos, NULL, NULL );
2001-03-08 04:28:38 -06:00
if( pGrafObj && bLink )
pGrafObj->SetGraphicLink( aCurrentDropFile, String() );
// return action from first inserted graphic
if( aIter == maDropFileVector.begin() )
mnAction = nTempAction;
2000-09-18 11:07:07 -05:00
bOK = TRUE;
}
if( !bOK )
{
const SfxFilter* pFoundFilter = NULL;
SfxMedium aSfxMedium( aCurrentDropFile, STREAM_READ | STREAM_SHARE_DENYNONE, FALSE );
ErrCode nErr = SFX_APP()->GetFilterMatcher().GuessFilter( aSfxMedium, &pFoundFilter, SFX_FILTER_IMPORT, SFX_FILTER_NOTINSTALLED | SFX_FILTER_EXECUTABLE );
if( pFoundFilter && !nErr )
{
::std::vector< String > aFilterVector;
const String aFilterName( pFoundFilter->GetFilterName() );
String aLowerAsciiFileName( aCurrentDropFile );
aLowerAsciiFileName.ToLowerAscii();
FuInsertFile::GetSupportedFilterVector( aFilterVector );
if( ( ::std::find( aFilterVector.begin(), aFilterVector.end(), pFoundFilter->GetMimeType() ) != aFilterVector.end() ) ||
aFilterName.SearchAscii( "Text" ) != STRING_NOTFOUND ||
aFilterName.SearchAscii( "Rich" ) != STRING_NOTFOUND ||
aFilterName.SearchAscii( "RTF" ) != STRING_NOTFOUND ||
aFilterName.SearchAscii( "HTML" ) != STRING_NOTFOUND ||
aLowerAsciiFileName.SearchAscii(".sdd") != STRING_NOTFOUND ||
aLowerAsciiFileName.SearchAscii(".sda") != STRING_NOTFOUND ||
aLowerAsciiFileName.SearchAscii(".sxd") != STRING_NOTFOUND ||
aLowerAsciiFileName.SearchAscii(".sxi") != STRING_NOTFOUND ||
aLowerAsciiFileName.SearchAscii(".std") != STRING_NOTFOUND ||
aLowerAsciiFileName.SearchAscii(".sti") != STRING_NOTFOUND )
{
::sd::Window* pWin = mpViewSh->GetActiveWindow();
SfxRequest aReq(SID_INSERTFILE, 0, mpDoc->GetItemPool());
SfxStringItem aItem1( ID_VAL_DUMMY0, aCurrentDropFile ), aItem2( ID_VAL_DUMMY1, pFoundFilter->GetFilterName() );
aReq.AppendItem( aItem1 );
aReq.AppendItem( aItem2 );
FuInsertFile::Create( mpViewSh, pWin, this, mpDoc, aReq );
bOK = TRUE;
}
}
2001-03-08 04:28:38 -06:00
}
}
2000-09-18 11:07:07 -05:00
if( !bOK )
2001-03-08 04:28:38 -06:00
{
Size aPrefSize;
if( ::avmedia::MediaWindow::isMediaURL( aCurrentDropFile ) &&
::avmedia::MediaWindow::isMediaURL( aCurrentDropFile, true, &aPrefSize ) )
{
if( aPrefSize.Width() && aPrefSize.Height() )
{
::sd::Window* pWin = mpViewSh->GetActiveWindow();
if( pWin )
aPrefSize = pWin->PixelToLogic( aPrefSize, MAP_100TH_MM );
else
aPrefSize = Application::GetDefaultDevice()->PixelToLogic( aPrefSize, MAP_100TH_MM );
}
else
aPrefSize = Size( 5000, 5000 );
InsertMediaURL( aCurrentDropFile, mnAction, maDropPos, aPrefSize ) ;
}
else if( mnAction & DND_ACTION_LINK )
static_cast< DrawViewShell* >( mpViewSh )->InsertURLButton( aCurrentDropFile, aCurrentDropFile, String(), &maDropPos );
else
2001-03-08 04:28:38 -06:00
{
if( mpViewSh )
2001-03-08 04:28:38 -06:00
{
try
2000-09-18 11:07:07 -05:00
{
//TODO/MBA: testing
::rtl::OUString aName;
uno::Sequence < beans::PropertyValue > aMedium(1);
aMedium[0].Name = ::rtl::OUString( RTL_CONSTASCII_USTRINGPARAM( "URL" ) );
aMedium[0].Value <<= ::rtl::OUString( aCurrentDropFile );
uno::Reference < embed::XEmbeddedObject > xObj = mpDocSh->GetEmbeddedObjectContainer().
InsertEmbeddedObject( aMedium, aName );
2001-03-08 04:28:38 -06:00
uno::Reference < embed::XEmbedPersist > xPersist( xObj, uno::UNO_QUERY );
if ( xPersist.is())
{
// TODO/LEAN: VisualArea access can switch the object to running state
sal_Int64 nAspect = embed::Aspects::MSOLE_CONTENT;
xPersist->storeOwn();
awt::Size aSz;
try
{
aSz = xObj->getVisualAreaSize( nAspect );
}
catch( embed::NoVisualAreaSizeException& )
{
// the default size will be set later
}
Size aSize( aSz.Width, aSz.Height );
Rectangle aRect;
if (!aSize.Width() || !aSize.Height())
{
aSize.Width() = 1410;
aSize.Height() = 1000;
}
aRect = Rectangle( maDropPos, aSize );
SdrOle2Obj* pOleObj = new SdrOle2Obj( svt::EmbeddedObjectRef( xObj, nAspect ), aName, aRect );
ULONG nOptions = SDRINSERT_SETDEFLAYER;
if (mpViewSh != NULL)
{
OSL_ASSERT (mpViewSh->GetViewShell()!=NULL);
SfxInPlaceClient* pIpClient =
mpViewSh->GetViewShell()->GetIPClient();
if (pIpClient!=NULL && pIpClient->IsObjectInPlaceActive())
nOptions |= SDRINSERT_DONTMARK;
}
InsertObjectAtView( pOleObj, *GetSdrPageView(), nOptions );
pOleObj->SetLogicRect( aRect );
aSz.Width = aRect.GetWidth();
aSz.Height = aRect.GetHeight();
xObj->setVisualAreaSize( nAspect,aSz );
}
}
catch( uno::Exception& )
{
nError = ERRCODE_IO_GENERAL;
// TODO/LATER: better error handling
2000-09-18 11:07:07 -05:00
}
}
}
}
++aIter;
2000-09-18 11:07:07 -05:00
}
if( nError )
ErrorHandler::HandleError( nError );
return nError;
2000-09-18 11:07:07 -05:00
}
/*************************************************************************
|*
2001-03-08 04:28:38 -06:00
|* Timer-Handler fuer Errorhandling beim Drop()
2000-09-18 11:07:07 -05:00
|*
\************************************************************************/
IMPL_LINK( View, DropErrorHdl, Timer*, EMPTYARG )
2000-09-18 11:07:07 -05:00
{
InfoBox( mpViewSh ? mpViewSh->GetActiveWindow() : 0, String(SdResId(STR_ACTION_NOTPOSSIBLE) ) ).Execute();
2001-03-08 04:28:38 -06:00
return 0;
}
2000-09-18 11:07:07 -05:00
#ifdef _MSC_VER
2001-03-08 04:28:38 -06:00
#pragma optimize ( "", on )
#endif
2000-09-18 11:07:07 -05:00
2001-03-08 04:28:38 -06:00
/*************************************************************************
|*
|* Redraw sperren oder erlauben
|*
\************************************************************************/
2000-09-18 11:07:07 -05:00
void View::LockRedraw(BOOL bLock)
2001-03-08 04:28:38 -06:00
{
if (bLock)
{
mnLockRedrawSmph++;
DBG_ASSERT(mnLockRedrawSmph, "Ueberlauf im LockRedraw");
2000-09-18 11:07:07 -05:00
}
2001-03-08 04:28:38 -06:00
else
2000-09-18 11:07:07 -05:00
{
DBG_ASSERT(mnLockRedrawSmph, "Unterlauf im LockRedraw");
mnLockRedrawSmph--;
2001-03-08 04:28:38 -06:00
// alle gespeicherten Redraws ausfuehren
if (!mnLockRedrawSmph)
2000-09-18 11:07:07 -05:00
{
while (mpLockedRedraws && mpLockedRedraws->Count())
2001-03-08 04:28:38 -06:00
{
SdViewRedrawRec* pRec = (SdViewRedrawRec*)mpLockedRedraws->First();
OutputDevice* pCurrentOut = pRec->mpOut;
2001-03-08 04:28:38 -06:00
Rectangle aBoundRect(pRec->aRect);
mpLockedRedraws->Remove(pRec);
2001-03-08 04:28:38 -06:00
delete pRec;
pRec = (SdViewRedrawRec*)mpLockedRedraws->First();
2001-03-08 04:28:38 -06:00
while (pRec)
{
if (pRec->mpOut == pCurrentOut)
2001-03-08 04:28:38 -06:00
{
aBoundRect.Union(pRec->aRect);
mpLockedRedraws->Remove(pRec);
2001-03-08 04:28:38 -06:00
delete pRec;
pRec = (SdViewRedrawRec*)mpLockedRedraws->GetCurObject();
2001-03-08 04:28:38 -06:00
}
else
{
pRec = (SdViewRedrawRec*)mpLockedRedraws->Next();
2001-03-08 04:28:38 -06:00
}
}
CompleteRedraw(pCurrentOut, Region(aBoundRect));
2001-03-08 04:28:38 -06:00
}
delete mpLockedRedraws;
mpLockedRedraws = NULL;
2000-09-18 11:07:07 -05:00
}
}
}
2001-03-08 04:28:38 -06:00
/*************************************************************************
|*
|* StyleSheet aus der Sleketion besorgen
|*
\************************************************************************/
2000-09-18 11:07:07 -05:00
SfxStyleSheet* View::GetStyleSheet() const
2001-03-08 04:28:38 -06:00
{
return SdrView::GetStyleSheet();
}
} // end of namespace sd