office-gobmx/sc/source/ui/view/drawvie3.cxx
Noel Grandin b4824c8915 convert includes/sfx2/frame.hxx from String to OUString
Change-Id: Ia69548250beb2896cab8c19fe2e635fdc9162f4d
2013-08-29 09:30:07 +02:00

228 lines
6.8 KiB
C++

/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
/*
* This file is part of the LibreOffice project.
*
* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/.
*
* This file incorporates work covered by the following license notice:
*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed
* with this work for additional information regarding copyright
* ownership. The ASF licenses this file to you under the Apache
* License, Version 2.0 (the "License"); you may not use this file
* except in compliance with the License. You may obtain a copy of
* the License at http://www.apache.org/licenses/LICENSE-2.0 .
*/
#include <svx/svdograf.hxx>
#include <svx/svdoole2.hxx>
#include <sfx2/app.hxx>
#include <sfx2/viewfrm.hxx>
#include "drawview.hxx"
#include "drwlayer.hxx"
#include "viewdata.hxx"
#include "dbfunc.hxx"
#include "document.hxx"
#include "userdat.hxx"
#include "tabvwsh.hxx"
#include "docsh.hxx"
void ScIMapDlgSet( const Graphic& rGraphic, const ImageMap* pImageMap,
const TargetList* pTargetList, void* pEditingObj ); // imapwrap
sal_uInt16 ScIMapChildWindowId();
// STATIC DATA -----------------------------------------------------------
ScDrawView::ScDrawView( OutputDevice* pOut, ScViewData* pData ) :
FmFormView( pData->GetDocument()->GetDrawLayer(), pOut ),
pViewData( pData ),
pDev( pOut ),
pDoc( pData->GetDocument() ),
nTab( pData->GetTabNo() ),
pDropMarker( NULL ),
pDropMarkObj( NULL ),
bInConstruct( true )
{
// #i73602# Use default from the configuration
SetBufferedOverlayAllowed(getOptionsDrawinglayer().IsOverlayBuffer_Calc());
// #i74769#, #i75172# Use default from the configuration
SetBufferedOutputAllowed(getOptionsDrawinglayer().IsPaintBuffer_Calc());
Construct();
}
// Verankerung setzen
void ScDrawView::SetPageAnchored()
{
if( AreObjectsMarked() )
{
SdrObject* pObj = NULL;
const SdrMarkList* pMark = &GetMarkedObjectList();
sal_uLong nCount = pMark->GetMarkCount();
for( sal_uLong i=0; i<nCount; i++ )
{
pObj = pMark->GetMark(i)->GetMarkedSdrObj();
ScDrawLayer::SetPageAnchored( *pObj );
}
if ( pViewData )
pViewData->GetDocShell()->SetDrawModified();
// Remove the anchor object.
aHdl.RemoveAllByKind(HDL_ANCHOR);
aHdl.RemoveAllByKind(HDL_ANCHOR_TR);
}
}
void ScDrawView::SetCellAnchored()
{
if (!pDoc)
return;
if( AreObjectsMarked() )
{
SdrObject* pObj = NULL;
const SdrMarkList* pMark = &GetMarkedObjectList();
sal_uLong nCount = pMark->GetMarkCount();
for( sal_uLong i=0; i<nCount; i++ )
{
pObj = pMark->GetMark(i)->GetMarkedSdrObj();
ScDrawLayer::SetCellAnchoredFromPosition(*pObj, *pDoc, nTab);
}
if ( pViewData )
pViewData->GetDocShell()->SetDrawModified();
// Set the anchor object.
AddCustomHdl();
}
}
ScAnchorType ScDrawView::GetAnchorType() const
{
sal_Bool bPage = false;
sal_Bool bCell = false;
if( AreObjectsMarked() )
{
const SdrMarkList* pMark = &GetMarkedObjectList();
sal_uLong nCount = pMark->GetMarkCount();
const SdrObject* pObj = NULL;
for( sal_uLong i=0; i<nCount; i++ )
{
pObj = pMark->GetMark(i)->GetMarkedSdrObj();
if( ScDrawLayer::GetAnchorType( *pObj ) == SCA_CELL )
bCell =true;
else
bPage = sal_True;
}
}
if( bPage && !bCell )
return SCA_PAGE;
if( !bPage && bCell )
return SCA_CELL;
return SCA_DONTKNOW;
}
namespace {
/**
* Updated the anchors of any non-note object that is cell anchored which
* has been moved since the last anchors for its position was calculated.
*/
void adjustAnchoredPosition(const SdrHint& rHint, const ScDocument& rDoc, SCTAB nTab)
{
if (rHint.GetKind() != HINT_OBJCHG && rHint.GetKind() != HINT_OBJINSERTED)
return;
SdrObject* pObj = const_cast<SdrObject*>(rHint.GetObject());
if (!pObj)
return;
ScDrawObjData *pAnchor = ScDrawLayer::GetObjData(pObj);
if (!pAnchor)
return;
if (pAnchor->meType == ScDrawObjData::CellNote)
return;
if (pAnchor->maLastRect == pObj->GetSnapRect())
return;
if (pAnchor->maStart.Tab() != nTab)
// The object is not anchored on the current sheet. Skip it.
// TODO: In the future, we may want to adjust objects that are
// anchored on all selected sheets.
return;
ScDrawLayer::SetCellAnchoredFromPosition(*pObj, rDoc, pAnchor->maStart.Tab());
}
}
void ScDrawView::Notify( SfxBroadcaster& rBC, const SfxHint& rHint )
{
if (rHint.ISA(ScTabDeletedHint)) // Tabelle geloescht
{
SCTAB nDelTab = ((ScTabDeletedHint&)rHint).GetTab();
if (ValidTab(nDelTab))
{
// used to be: HidePagePgNum(nDelTab) - hide only if the deleted sheet is shown here
if ( nDelTab == nTab )
HideSdrPage();
}
}
else if (rHint.ISA(ScTabSizeChangedHint)) // Groesse geaendert
{
if ( nTab == ((ScTabSizeChangedHint&)rHint).GetTab() )
UpdateWorkArea();
}
else if ( rHint.ISA( SdrHint ) )
{
if (const SdrHint* pSdrHint = PTR_CAST( SdrHint, &rHint ))
adjustAnchoredPosition(*pSdrHint, *pDoc, nTab);
FmFormView::Notify( rBC,rHint );
}
else
FmFormView::Notify( rBC,rHint );
}
void ScDrawView::UpdateIMap( SdrObject* pObj )
{
if ( pViewData &&
pViewData->GetViewShell()->GetViewFrame()->HasChildWindow( ScIMapChildWindowId() ) &&
pObj && ( pObj->ISA(SdrGrafObj) || pObj->ISA(SdrOle2Obj) ) )
{
Graphic aGraphic;
TargetList aTargetList;
ScIMapInfo* pIMapInfo = ScDrawLayer::GetIMapInfo( pObj );
const ImageMap* pImageMap = NULL;
if ( pIMapInfo )
pImageMap = &pIMapInfo->GetImageMap();
// Target-Liste besorgen
pViewData->GetViewShell()->GetViewFrame()->GetTargetList( aTargetList );
// Grafik vom Objekt besorgen
if ( pObj->ISA( SdrGrafObj ) )
aGraphic = ( (SdrGrafObj*) pObj )->GetGraphic();
else
{
const Graphic* pGraphic = static_cast<const SdrOle2Obj*>(pObj)->GetGraphic();
if ( pGraphic )
aGraphic = *pGraphic;
}
ScIMapDlgSet( aGraphic, pImageMap, &aTargetList, pObj ); // aus imapwrap
}
}
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */