03f7b689c0
Removed TakeAttributes() and SetAttributes(), new ItemSet modification methods (GetItem[Set], SetItem[Set], ClearItem,...)
1385 lines
49 KiB
C++
1385 lines
49 KiB
C++
/*************************************************************************
|
|
*
|
|
* $RCSfile: drawview.cxx,v $
|
|
*
|
|
* $Revision: 1.5 $
|
|
*
|
|
* last change: $Author: aw $ $Date: 2000-10-30 11:50:43 $
|
|
*
|
|
* The Contents of this file are made available subject to the terms of
|
|
* either of the following licenses
|
|
*
|
|
* - GNU Lesser General Public License Version 2.1
|
|
* - Sun Industry Standards Source License Version 1.1
|
|
*
|
|
* Sun Microsystems Inc., October, 2000
|
|
*
|
|
* GNU Lesser General Public License Version 2.1
|
|
* =============================================
|
|
* Copyright 2000 by Sun Microsystems, Inc.
|
|
* 901 San Antonio Road, Palo Alto, CA 94303, USA
|
|
*
|
|
* This library is free software; you can redistribute it and/or
|
|
* modify it under the terms of the GNU Lesser General Public
|
|
* License version 2.1, as published by the Free Software Foundation.
|
|
*
|
|
* This library 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 for more details.
|
|
*
|
|
* You should have received a copy of the GNU Lesser General Public
|
|
* License along with this library; if not, write to the Free Software
|
|
* Foundation, Inc., 59 Temple Place, Suite 330, Boston,
|
|
* MA 02111-1307 USA
|
|
*
|
|
*
|
|
* Sun Industry Standards Source License Version 1.1
|
|
* =================================================
|
|
* The contents of this file are subject to the Sun Industry Standards
|
|
* Source License Version 1.1 (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.openoffice.org/license.html.
|
|
*
|
|
* Software provided under this License is provided on an "AS IS" basis,
|
|
* WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING,
|
|
* WITHOUT LIMITATION, WARRANTIES THAT THE SOFTWARE IS FREE OF DEFECTS,
|
|
* MERCHANTABLE, FIT FOR A PARTICULAR PURPOSE, OR NON-INFRINGING.
|
|
* See the License for the specific provisions governing your rights and
|
|
* obligations concerning the Software.
|
|
*
|
|
* The Initial Developer of the Original Code is: Sun Microsystems, Inc.
|
|
*
|
|
* Copyright: 2000 by Sun Microsystems, Inc.
|
|
*
|
|
* All Rights Reserved.
|
|
*
|
|
* Contributor(s): _______________________________________
|
|
*
|
|
*
|
|
************************************************************************/
|
|
|
|
#ifndef _SFXDISPATCH_HXX //autogen
|
|
#include <sfx2/dispatch.hxx>
|
|
#endif
|
|
#ifndef _MSGBOX_HXX //autogen
|
|
#include <vcl/msgbox.hxx>
|
|
#endif
|
|
|
|
#ifndef _SVDPAGV_HXX //autogen
|
|
#include <svx/svdpagv.hxx>
|
|
#endif
|
|
#ifndef _SFXREQUEST_HXX //autogen
|
|
#include <sfx2/request.hxx>
|
|
#endif
|
|
#ifndef _SFXSTYLE_HXX //autogen
|
|
#include <svtools/style.hxx>
|
|
#endif
|
|
#ifndef _OUTLINER_HXX //autogen
|
|
#include <svx/outliner.hxx>
|
|
#endif
|
|
#ifndef _VIEW3D_HXX //autogen
|
|
#include <svx/view3d.hxx>
|
|
#endif
|
|
#ifndef _SVXIDS_HRC //autogen
|
|
#include <svx/svxids.hrc>
|
|
#endif
|
|
#ifndef _XOUTX_HXX
|
|
#include <svx/xoutx.hxx>
|
|
#endif
|
|
#ifndef _SVDOTEXT_HXX //autogen
|
|
#include <svx/svdotext.hxx>
|
|
#endif
|
|
#ifndef _SVDOGRAF_HXX //autogen
|
|
#include <svx/svdograf.hxx>
|
|
#endif
|
|
#ifndef _SVDOGRP_HXX //autogen
|
|
#include <svx/svdogrp.hxx>
|
|
#endif
|
|
#ifndef _SVDORECT_HXX //autogen
|
|
#include <svx/svdorect.hxx>
|
|
#endif
|
|
#ifndef _SFXPOOLITEM_HXX //autogen
|
|
#include <svtools/poolitem.hxx>
|
|
#endif
|
|
#ifndef _EEITEM_HXX //autogen
|
|
#include <svx/eeitem.hxx>
|
|
#endif
|
|
#ifndef _SVX_BULITEM_HXX //autogen
|
|
#include <svx/bulitem.hxx>
|
|
#endif
|
|
#ifndef _SFXITEMPOOL_HXX //autogen
|
|
#include <svtools/itempool.hxx>
|
|
#endif
|
|
|
|
#ifndef _SVX_NUMITEM_HXX //autogen
|
|
#include <svx/numitem.hxx>
|
|
#endif
|
|
|
|
#ifndef _SD_STLSHEET_HXX
|
|
#include "stlsheet.hxx"
|
|
#endif
|
|
|
|
#include "glob.hrc"
|
|
#include "strings.hrc"
|
|
|
|
#include "sdview.hxx"
|
|
#include "sdattr.hxx"
|
|
#include "drawview.hxx"
|
|
#include "drawdoc.hxx"
|
|
#include "docshell.hxx"
|
|
#include "sdpage.hxx"
|
|
#include "drviewsh.hxx"
|
|
#include "pres.hxx"
|
|
#include "sdresid.hxx"
|
|
#include "sdwindow.hxx"
|
|
#include "unchss.hxx"
|
|
#include "frmview.hxx"
|
|
#include "anminfo.hxx"
|
|
#include "fuslshow.hxx"
|
|
#include "preview.hxx"
|
|
#include "prevchld.hxx"
|
|
|
|
TYPEINIT1( SdDrawView, SdView );
|
|
|
|
/*************************************************************************
|
|
|*
|
|
|* Konstruktor
|
|
|* zeigt die erste Seite des Dokuments auf Position 0,0 an;
|
|
|* falls noch keine Seite vorhanden ist, wird eine erzeugt
|
|
|*
|
|
\************************************************************************/
|
|
|
|
SdDrawView::SdDrawView(SdDrawDocShell* pDocSh, OutputDevice* pOutDev,
|
|
SdDrawViewShell* pShell) :
|
|
SdView(pDocSh->GetDoc(), pOutDev, pShell),
|
|
pDrawViewShell(pShell),
|
|
pDocShell(pDocSh),
|
|
nPOCHSmph(0),
|
|
nPresPaintSmph(0),
|
|
pVDev(NULL),
|
|
bPixelMode(FALSE),
|
|
pSlideShow(NULL),
|
|
nMagic(SDDRAWVIEW_MAGIC),
|
|
bInAnimation(FALSE),
|
|
bActionMode(TRUE)
|
|
{
|
|
SetCurrentObj(OBJ_RECT, SdrInventor);
|
|
}
|
|
|
|
/*************************************************************************
|
|
|*
|
|
|* Destruktor
|
|
|*
|
|
\************************************************************************/
|
|
|
|
__EXPORT SdDrawView::~SdDrawView()
|
|
{
|
|
nMagic = 0;
|
|
delete pVDev;
|
|
|
|
if( pSlideShow )
|
|
pSlideShow->Destroy();
|
|
}
|
|
|
|
/*************************************************************************
|
|
|*
|
|
|* virtuelle Methode von SdrView, wird bei Selektionsaenderung gerufen
|
|
|*
|
|
\************************************************************************/
|
|
|
|
void __EXPORT SdDrawView::MarkListHasChanged()
|
|
{
|
|
SdView::MarkListHasChanged();
|
|
|
|
if (pDrawViewShell)
|
|
pDrawViewShell->SelectionHasChanged();
|
|
}
|
|
|
|
/*************************************************************************
|
|
|*
|
|
|* virtuelle Methode von SdrView, wird bei Modelaenderung gerufen
|
|
|*
|
|
\************************************************************************/
|
|
|
|
void __EXPORT SdDrawView::ModelHasChanged()
|
|
{
|
|
SdView::ModelHasChanged();
|
|
|
|
// den Gestalter zur Neudarstellung zwingen
|
|
SfxStyleSheetBasePool* pSSPool = pDoc->GetStyleSheetPool();
|
|
pSSPool->Broadcast(SfxStyleSheetPoolHint(SFX_STYLESHEETPOOL_CHANGES));
|
|
|
|
if (pViewSh)
|
|
{
|
|
// falls wir in der Diashow sind und das Gliederungstextobjekt selektiert
|
|
// ist wird der Gliederungsclone der Diashow aktualisiert
|
|
FuSlideShow* pFuSlideShow = pSlideShow;
|
|
|
|
if (!pFuSlideShow)
|
|
{
|
|
pFuSlideShow = pViewSh->GetSlideShow();
|
|
}
|
|
|
|
if (pFuSlideShow)
|
|
{
|
|
SdrRectObj* pLayoutText = pFuSlideShow->GetLayoutText();
|
|
if (pLayoutText)
|
|
{
|
|
const SdrMarkList& rMarkList = GetMarkList();
|
|
ULONG nMarkCount = rMarkList.GetMarkCount();
|
|
ULONG nMark;
|
|
|
|
for (nMark = 0; nMark < nMarkCount; nMark++ )
|
|
{
|
|
SdrObject* pObject = rMarkList.GetMark(nMark)->GetObj();
|
|
if (pObject == pLayoutText)
|
|
break;
|
|
}
|
|
|
|
if (nMark < nMarkCount) // gefunden?
|
|
{
|
|
pFuSlideShow->CreateLayoutClone();
|
|
}
|
|
}
|
|
}
|
|
|
|
pDrawViewShell->ModelHasChanged();
|
|
}
|
|
}
|
|
|
|
/*************************************************************************
|
|
|*
|
|
|* Attribute auf Titel- und Gliederungtext und Hintergrundrechteck einer
|
|
|* Masterpage in Vorlagen umlenken, sonst an Basisklasse weitergeben
|
|
|*
|
|
\************************************************************************/
|
|
|
|
BOOL __EXPORT SdDrawView::SetAttributes(const SfxItemSet& rSet,
|
|
BOOL bReplaceAll)
|
|
{
|
|
BOOL bOk = FALSE;
|
|
|
|
// wird eine Masterpage bearbeitet?
|
|
if ( pDrawViewShell && pDrawViewShell->GetEditMode() == EM_MASTERPAGE )
|
|
{
|
|
SfxStyleSheetBasePool* pStShPool = pDoc->GetStyleSheetPool();
|
|
|
|
SdPage* pPage = (SdPage*)pDrawViewShell->GetActualPage()->
|
|
GetMasterPage(0);
|
|
String aLayoutName = pPage->GetName();
|
|
|
|
SdrTextObj* pObject = (SdrTextObj*)GetTextEditObject();
|
|
|
|
/*********************************************************************
|
|
|* ein Textobjekt wird editiert
|
|
\********************************************************************/
|
|
if (pObject)
|
|
{
|
|
String aTemplateName(aLayoutName);
|
|
|
|
UINT32 nInv = pObject->GetObjInventor();
|
|
|
|
if (nInv == SdrInventor)
|
|
{
|
|
UINT16 eObjKind = pObject->GetObjIdentifier();
|
|
|
|
/*****************************************************************
|
|
|* Titeltext wird editiert
|
|
\****************************************************************/
|
|
if (eObjKind == OBJ_TITLETEXT)
|
|
{
|
|
SfxStyleSheet* pSheet = pPage->GetStyleSheetForPresObj(
|
|
PRESOBJ_TITLE);
|
|
DBG_ASSERT(pSheet, "StyleSheet nicht gefunden");
|
|
|
|
// Undo-Action
|
|
StyleSheetUndoAction* pAction = new StyleSheetUndoAction
|
|
(pDoc, pSheet, &rSet);
|
|
pDocSh->GetUndoManager()->AddUndoAction(pAction);
|
|
|
|
// temp. Set anlegen, in dem die INVALIDS auf NULL-Pointer
|
|
// zurueckgesetzt werden koennen (sonst landen INVALIDs
|
|
// oder Pointer auf die DefaultItems in der Vorlage)
|
|
SfxItemSet aTempSet(rSet);
|
|
aTempSet.ClearInvalidItems();
|
|
|
|
pSheet->GetItemSet().Put(aTempSet);
|
|
pSheet->Broadcast(SfxSimpleHint(SFX_HINT_DATACHANGED));
|
|
bOk = TRUE;
|
|
}
|
|
/*****************************************************************
|
|
|* Gliederungstext wird editiert
|
|
\****************************************************************/
|
|
else if (eObjKind == OBJ_OUTLINETEXT)
|
|
{
|
|
OutlinerView* pOV = GetTextEditOutlinerView();
|
|
Outliner* pOutliner = pOV->GetOutliner();
|
|
List* pList = (List*)pOV->CreateSelectionList();
|
|
aTemplateName += String(SdResId(STR_LAYOUT_OUTLINE));
|
|
|
|
pOutliner->SetUpdateMode(FALSE);
|
|
pDocSh->SetWaitCursor( TRUE );
|
|
|
|
// Platzhalter durch Vorlagennamen ersetzen
|
|
String aComment(SdResId(STR_UNDO_CHANGE_PRES_OBJECT));
|
|
xub_StrLen nPos = aComment.Search( (sal_Unicode)'$' );
|
|
aComment.Erase(nPos, 1);
|
|
aComment.Insert( String((SdResId(STR_PSEUDOSHEET_OUTLINE))), nPos);
|
|
pDocSh->GetUndoManager()->EnterListAction( aComment, String() );
|
|
|
|
Paragraph* pPara = (Paragraph*)pList->First();
|
|
while (pPara)
|
|
{
|
|
ULONG nParaPos = pOutliner->GetAbsPos( pPara );
|
|
USHORT nDepth = pOutliner->GetDepth( nParaPos );
|
|
String aName(pPage->GetLayoutName());
|
|
aName += (sal_Unicode)(' ');
|
|
aName += String::CreateFromInt32( (sal_Int32)nDepth );
|
|
SfxStyleSheet* pSheet = (SfxStyleSheet*)pStShPool->
|
|
Find(aName, SD_LT_FAMILY);
|
|
DBG_ASSERT(pSheet, "StyleSheet nicht gefunden");
|
|
|
|
SfxItemSet aTempSet( rSet );
|
|
if( nDepth > 1 && aTempSet.GetItemState( EE_PARA_NUMBULLET ) == SFX_ITEM_ON )
|
|
{
|
|
SvxNumRule aRule(*((SvxNumBulletItem*)aTempSet.GetItem(EE_PARA_NUMBULLET))->GetNumRule());
|
|
|
|
String aStyleName((SdResId(STR_PSEUDOSHEET_OUTLINE)));
|
|
aStyleName.AppendAscii( RTL_CONSTASCII_STRINGPARAM( " 1" ));
|
|
SfxStyleSheetBase* pFirstStyleSheet = pStShPool->Find( aStyleName, SFX_STYLE_FAMILY_PSEUDO);
|
|
|
|
DBG_ASSERT(pFirstStyleSheet, "Ich brauche die Vorlage Gliederung 1!" );
|
|
if(pFirstStyleSheet)
|
|
{
|
|
pFirstStyleSheet->GetItemSet().Put( SvxNumBulletItem( aRule, EE_PARA_NUMBULLET ));
|
|
SdStyleSheet* pRealSheet = ((SdStyleSheet*)pFirstStyleSheet)->GetRealStyleSheet();
|
|
pRealSheet->Broadcast(SfxSimpleHint(SFX_HINT_DATACHANGED));
|
|
}
|
|
|
|
// Kein SvxNumBulletItem in Gliederungsebenen 2 bis 9!
|
|
aTempSet.ClearItem( EE_PARA_NUMBULLET );
|
|
}
|
|
|
|
// Undo-Action
|
|
StyleSheetUndoAction* pAction = new StyleSheetUndoAction(pDoc, pSheet, &aTempSet);
|
|
pDocSh->GetUndoManager()->AddUndoAction(pAction);
|
|
|
|
// aTempSet: in dem die INVALIDS auf NULL-Pointer
|
|
// zurueckgesetzt werden koennen (sonst landen INVALIDs
|
|
// oder Pointer auf die DefaultItems in der Vorlage; beides
|
|
// wuerde die Attribut-Vererbung unterbinden)
|
|
aTempSet.ClearInvalidItems();
|
|
|
|
// nur die gueltigen Anteile des BulletItems
|
|
if (aTempSet.GetItemState(EE_PARA_BULLET) == SFX_ITEM_SET)
|
|
{
|
|
SvxBulletItem aOldBulItem((SvxBulletItem&)pSheet->GetItemSet().Get(EE_PARA_BULLET));
|
|
SvxBulletItem& rNewBulItem = (SvxBulletItem&)aTempSet.Get(EE_PARA_BULLET);
|
|
aOldBulItem.CopyValidProperties(rNewBulItem);
|
|
aTempSet.Put(aOldBulItem);
|
|
}
|
|
|
|
pSheet->GetItemSet().Put(aTempSet);
|
|
pSheet->Broadcast(SfxSimpleHint(SFX_HINT_DATACHANGED));
|
|
|
|
pPara = (Paragraph*)pList->Next();
|
|
}
|
|
|
|
pDocSh->SetWaitCursor( FALSE );
|
|
pOV->GetOutliner()->SetUpdateMode(TRUE);
|
|
|
|
pDocSh->GetUndoManager()->LeaveListAction();
|
|
|
|
delete pList;
|
|
bOk = TRUE;
|
|
}
|
|
/*****************************************************************
|
|
|* Notizentext wird editiert
|
|
\****************************************************************/
|
|
else if (pPage->GetPresObjKind(pObject) == PRESOBJ_NOTES)
|
|
{
|
|
SfxStyleSheet* pSheet = pPage->GetStyleSheetForPresObj(
|
|
PRESOBJ_NOTES);
|
|
DBG_ASSERT(pSheet, "StyleSheet nicht gefunden");
|
|
|
|
// Undo-Action
|
|
StyleSheetUndoAction* pAction = new StyleSheetUndoAction
|
|
(pDoc, pSheet, &rSet);
|
|
pDocSh->GetUndoManager()->AddUndoAction(pAction);
|
|
|
|
// temp. Set anlegen, in dem die INVALIDS auf NULL-Pointer
|
|
// zurueckgesetzt werden koennen (sonst landen INVALIDs
|
|
// oder Pointer auf die DefaultItems in der Vorlage)
|
|
SfxItemSet aTempSet(rSet);
|
|
aTempSet.ClearInvalidItems();
|
|
|
|
pSheet->GetItemSet().Put(aTempSet);
|
|
pSheet->Broadcast(SfxSimpleHint(SFX_HINT_DATACHANGED));
|
|
bOk = TRUE;
|
|
|
|
}
|
|
/*****************************************************************
|
|
|* irgendwas anderes: ab in die Basisklasse
|
|
\****************************************************************/
|
|
else
|
|
{
|
|
bOk = SdView::SetAttributes(rSet, bReplaceAll);
|
|
}
|
|
}
|
|
}
|
|
|
|
/*********************************************************************
|
|
|* ein oder mehrere Objekte sind selektiert
|
|
\********************************************************************/
|
|
else
|
|
{
|
|
const SdrMarkList& rList = GetMarkList();
|
|
ULONG nMarkCount = rList.GetMarkCount();
|
|
SdrObject* pObject = NULL;
|
|
for (ULONG nMark = 0; nMark < nMarkCount; nMark++)
|
|
{
|
|
pObject = rList.GetMark(nMark)->GetObj();
|
|
UINT32 nInv = pObject->GetObjInventor();
|
|
|
|
if (nInv == SdrInventor)
|
|
{
|
|
UINT16 eObjKind = pObject->GetObjIdentifier();
|
|
|
|
String aTemplateName(aLayoutName);
|
|
|
|
/*****************************************************************
|
|
|* Titeltext
|
|
\****************************************************************/
|
|
if (eObjKind == OBJ_TITLETEXT)
|
|
{
|
|
SfxStyleSheet* pSheet = pPage->GetStyleSheetForPresObj(
|
|
PRESOBJ_TITLE);
|
|
DBG_ASSERT(pSheet, "StyleSheet nicht gefunden");
|
|
|
|
// Undo-Action
|
|
StyleSheetUndoAction* pAction = new StyleSheetUndoAction
|
|
(pDoc, pSheet, &rSet);
|
|
pDocSh->GetUndoManager()->AddUndoAction(pAction);
|
|
|
|
// temp. Set anlegen, in dem die INVALIDS auf NULL-Pointer
|
|
// zurueckgesetzt werden koennen (sonst landen INVALIDs
|
|
// oder Pointer auf die DefaultItems in der Vorlage)
|
|
SfxItemSet aTempSet(rSet);
|
|
aTempSet.ClearInvalidItems();
|
|
|
|
pSheet->GetItemSet().Put(aTempSet);
|
|
pSheet->Broadcast(SfxSimpleHint(SFX_HINT_DATACHANGED));
|
|
bOk = TRUE;
|
|
}
|
|
/*****************************************************************
|
|
|* Gliederungstext
|
|
\****************************************************************/
|
|
else if (eObjKind == OBJ_OUTLINETEXT)
|
|
{
|
|
SfxItemSet aTempSet(rSet);
|
|
aTemplateName += String(SdResId(STR_LAYOUT_OUTLINE));
|
|
for (USHORT nLevel = 1; nLevel < 10; nLevel++)
|
|
{
|
|
String aName(pPage->GetLayoutName());
|
|
aName += (sal_Unicode)(' ');
|
|
aName += String::CreateFromInt32( (sal_Int32)nLevel );
|
|
SfxStyleSheet* pSheet = (SfxStyleSheet*)pStShPool->
|
|
Find(aName, SD_LT_FAMILY);
|
|
DBG_ASSERT(pSheet, "StyleSheet nicht gefunden");
|
|
|
|
if( nLevel > 1 && aTempSet.GetItemState( EE_PARA_NUMBULLET ) == SFX_ITEM_ON )
|
|
// Kein SvxNumBulletItem in Gliederungsebenen 2 bis 9!
|
|
aTempSet.ClearItem( EE_PARA_NUMBULLET );
|
|
|
|
// Undo-Action
|
|
StyleSheetUndoAction* pAction = new StyleSheetUndoAction(pDoc, pSheet, &aTempSet);
|
|
pDocSh->GetUndoManager()->AddUndoAction(pAction);
|
|
|
|
// aTempSet: in dem die INVALIDS auf NULL-Pointer
|
|
// zurueckgesetzt werden koennen (sonst landen INVALIDs
|
|
// oder Pointer auf die DefaultItems in der Vorlage)
|
|
aTempSet.ClearInvalidItems();
|
|
|
|
pSheet->GetItemSet().Put(aTempSet);
|
|
pSheet->Broadcast(SfxSimpleHint(SFX_HINT_DATACHANGED));
|
|
}
|
|
bOk = TRUE;
|
|
}
|
|
/*****************************************************************
|
|
|* Hintergrundobjekt
|
|
\****************************************************************/
|
|
else if (pPage->GetPresObjKind(pObject) == PRESOBJ_BACKGROUND)
|
|
{
|
|
SfxStyleSheet* pSheet = pPage->GetStyleSheetForPresObj(
|
|
PRESOBJ_BACKGROUND);
|
|
DBG_ASSERT(pSheet, "StyleSheet nicht gefunden");
|
|
|
|
// Undo-Action
|
|
StyleSheetUndoAction* pAction = new StyleSheetUndoAction
|
|
(pDoc, pSheet, &rSet);
|
|
pDocSh->GetUndoManager()->AddUndoAction(pAction);
|
|
|
|
// temp. Set anlegen, in dem die INVALIDS auf NULL-Pointer
|
|
// zurueckgesetzt werden koennen (sonst landen INVALIDs
|
|
// oder Pointer auf die DefaultItems in der Vorlage)
|
|
SfxItemSet aTempSet(rSet);
|
|
aTempSet.ClearInvalidItems();
|
|
|
|
pSheet->GetItemSet().Put(aTempSet);
|
|
pSheet->Broadcast(SfxSimpleHint(SFX_HINT_DATACHANGED));
|
|
bOk = TRUE;
|
|
}
|
|
/*****************************************************************
|
|
|* Notizentext
|
|
\****************************************************************/
|
|
else if (pPage->GetPresObjKind(pObject) == PRESOBJ_NOTES)
|
|
{
|
|
SfxStyleSheet* pSheet = pPage->GetStyleSheetForPresObj(
|
|
PRESOBJ_NOTES);
|
|
DBG_ASSERT(pSheet, "StyleSheet nicht gefunden");
|
|
|
|
// Undo-Action
|
|
StyleSheetUndoAction* pAction = new StyleSheetUndoAction
|
|
(pDoc, pSheet, &rSet);
|
|
pDocSh->GetUndoManager()->AddUndoAction(pAction);
|
|
|
|
// temp. Set anlegen, in dem die INVALIDS auf NULL-Pointer
|
|
// zurueckgesetzt werden koennen (sonst landen INVALIDs
|
|
// oder Pointer auf die DefaultItems in der Vorlage)
|
|
SfxItemSet aTempSet(rSet);
|
|
aTempSet.ClearInvalidItems();
|
|
|
|
pSheet->GetItemSet().Put(aTempSet);
|
|
pSheet->Broadcast(SfxSimpleHint(SFX_HINT_DATACHANGED));
|
|
bOk = TRUE;
|
|
|
|
}
|
|
}
|
|
}
|
|
|
|
bOk = SdView::SetAttributes(rSet, bReplaceAll);
|
|
}
|
|
}
|
|
else // nicht auf der Masterpage
|
|
{
|
|
bOk = SdView::SetAttributes(rSet, bReplaceAll);
|
|
}
|
|
|
|
return (bOk);
|
|
}
|
|
|
|
/*************************************************************************
|
|
|*
|
|
|* Notify fuer Aenderung der Seitenanordnung
|
|
|*
|
|
\************************************************************************/
|
|
|
|
void __EXPORT SdDrawView::SFX_NOTIFY(SfxBroadcaster& rBC, const TypeId& rBCType,
|
|
const SfxHint& rHint, const TypeId& rHintType)
|
|
{
|
|
if ( pDrawViewShell && rHint.ISA(SdrHint) )
|
|
{
|
|
SdrHintKind eHintKind = ( (SdrHint&) rHint).GetKind();
|
|
|
|
if ( nPOCHSmph == 0 && eHintKind == HINT_PAGEORDERCHG )
|
|
{
|
|
pDrawViewShell->ResetActualPage();
|
|
}
|
|
else if ( eHintKind == HINT_LAYERCHG || eHintKind == HINT_LAYERORDERCHG )
|
|
{
|
|
pDrawViewShell->ResetActualLayer();
|
|
}
|
|
}
|
|
|
|
FmFormView::SFX_NOTIFY(rBC, rBCType, rHint, rHintType);
|
|
}
|
|
|
|
/*************************************************************************
|
|
|*
|
|
|* PageOrderChangedHint blockieren/freigeben
|
|
|*
|
|
\************************************************************************/
|
|
|
|
void SdDrawView::BlockPageOrderChangedHint(BOOL bBlock)
|
|
{
|
|
if (bBlock)
|
|
nPOCHSmph++;
|
|
else
|
|
{
|
|
DBG_ASSERT(nPOCHSmph, "Zaehlerunterlauf");
|
|
nPOCHSmph--;
|
|
}
|
|
}
|
|
|
|
/*************************************************************************
|
|
|*
|
|
|* StyleSheet-Setzen auf der Masterpage abfangen, wenn Praesentationsobjekte
|
|
|* selektiert sind
|
|
|*
|
|
\************************************************************************/
|
|
|
|
BOOL SdDrawView::SetStyleSheet(SfxStyleSheet* pStyleSheet, BOOL bDontRemoveHardAttr)
|
|
{
|
|
BOOL bResult = TRUE;
|
|
|
|
// wird eine Masterpage bearbeitet?
|
|
if (pDrawViewShell && pDrawViewShell->GetEditMode() == EM_MASTERPAGE)
|
|
{
|
|
if (IsPresObjSelected(FALSE, TRUE))
|
|
{
|
|
|
|
InfoBox(pDrawViewShell->GetActiveWindow(),
|
|
String(SdResId(STR_ACTION_NOTPOSSIBLE))).Execute();
|
|
bResult = FALSE;
|
|
}
|
|
else
|
|
{
|
|
bResult = SdView::SetStyleSheet(pStyleSheet, bDontRemoveHardAttr);
|
|
}
|
|
}
|
|
else
|
|
{
|
|
bResult = SdView::SetStyleSheet(pStyleSheet, bDontRemoveHardAttr);
|
|
}
|
|
return bResult;
|
|
}
|
|
|
|
/*************************************************************************
|
|
|*
|
|
|* Paint-Methode: das Ereignis wird an die View weitergeleitet
|
|
|*
|
|
\************************************************************************/
|
|
|
|
void __EXPORT SdDrawView::InitRedraw(OutputDevice* pOutDev, const Region& rReg)
|
|
{
|
|
|
|
BOOL bMPCache = FALSE;
|
|
|
|
if (pViewSh && pViewSh == (SdViewShell*) SfxViewShell::Current() &&
|
|
pViewSh->GetFrameView()->IsMasterPagePaintCaching() &&
|
|
pOutDev->GetOutDevType() != OUTDEV_PRINTER)
|
|
{
|
|
// Aktive ViewShell
|
|
bMPCache = TRUE;
|
|
}
|
|
|
|
if( bMPCache )
|
|
{
|
|
if( !IsMasterPagePaintCaching() )
|
|
{
|
|
SetMasterPagePaintCaching( TRUE );
|
|
}
|
|
}
|
|
else
|
|
{
|
|
if( IsMasterPagePaintCaching() )
|
|
{
|
|
ReleaseMasterPagePaintCache();
|
|
SetMasterPagePaintCaching( FALSE );
|
|
}
|
|
}
|
|
|
|
if (bPixelMode)
|
|
{
|
|
if (!pVDev)
|
|
{
|
|
/******************************************************************
|
|
* VDev erzeugen
|
|
******************************************************************/
|
|
delete pVDev;
|
|
pVDev = new VirtualDevice(*pOutDev);
|
|
MapMode aMM(pOutDev->GetMapMode().GetMapUnit());
|
|
aMM.SetOrigin(Point(0, 0));
|
|
pVDev->SetMapMode(aMM);
|
|
}
|
|
|
|
/**********************************************************************
|
|
* Groesse des VDevs auf Seitengroesse setzen
|
|
**********************************************************************/
|
|
SdPage* pPage = pDrawViewShell->GetActualPage();
|
|
Size aPgSize(pPage->GetSize());
|
|
aPgSize.Width() -= pPage->GetLftBorder();
|
|
aPgSize.Width() -= pPage->GetRgtBorder();
|
|
aPgSize.Height() -= pPage->GetUppBorder();
|
|
aPgSize.Height() -= pPage->GetLwrBorder();
|
|
|
|
if (aPgSize != pVDev->GetOutputSize())
|
|
{
|
|
BOOL bAbort = !pVDev->SetOutputSize(aPgSize);
|
|
DBG_ASSERT(!bAbort, "VDev nicht korrekt erzeugt");
|
|
|
|
if (bAbort)
|
|
{
|
|
delete pVDev;
|
|
pVDev = NULL;
|
|
SetPixelMode(FALSE);
|
|
}
|
|
}
|
|
}
|
|
else if (!bPixelMode && pVDev)
|
|
{
|
|
delete pVDev;
|
|
pVDev = NULL;
|
|
}
|
|
|
|
BOOL bStandardPaint = TRUE;
|
|
|
|
SdDrawDocument* pDoc = pDocShell->GetDoc();
|
|
if(pDoc && pDoc->GetDocumentType() == DOCUMENT_TYPE_IMPRESS)
|
|
{
|
|
/*******************************************************************
|
|
|* Paint-Event fuer eine Praesentation?
|
|
\******************************************************************/
|
|
FuSlideShow* pFuSlideShow = pSlideShow;
|
|
|
|
// Paint-Event fuer eine Praesentation im Vollbildmodus oder Fenster?
|
|
if (!pFuSlideShow && pViewSh)
|
|
{
|
|
pFuSlideShow = pViewSh->GetSlideShow();
|
|
}
|
|
// Paint-Event fuer das Preview-Fenster?
|
|
else
|
|
{
|
|
SfxViewFrame* pViewFrm = pDrawViewShell ? pDrawViewShell->GetViewFrame() : NULL;
|
|
SfxChildWindow* pPreviewChildWindow = pViewFrm ?
|
|
pViewFrm->GetChildWindow(SdPreviewChildWindow::GetChildWindowId()) : NULL;
|
|
if (pPreviewChildWindow)
|
|
{
|
|
SdPreviewWin* pPreviewWin =
|
|
(SdPreviewWin*)pPreviewChildWindow->GetWindow();
|
|
if (pPreviewWin && pPreviewWin->GetDoc() == pDoc)
|
|
pFuSlideShow = pPreviewWin->GetSlideShow();
|
|
}
|
|
}
|
|
|
|
if (pFuSlideShow)
|
|
{
|
|
OutputDevice* pShowWindow = (OutputDevice*)pFuSlideShow->GetShowWindow();
|
|
if (pShowWindow == pOutDev ||
|
|
pFuSlideShow->GetAnimationMode() == ANIMATIONMODE_VIEW)
|
|
{
|
|
PresPaint(rReg);
|
|
bStandardPaint = FALSE;
|
|
}
|
|
}
|
|
}
|
|
|
|
|
|
if (bStandardPaint)
|
|
{
|
|
if (!bPixelMode)
|
|
{
|
|
SdView::InitRedraw(pOutDev, rReg);
|
|
}
|
|
else
|
|
{
|
|
/******************************************************************
|
|
* Pixelmodus
|
|
******************************************************************/
|
|
// Objekte ins VDev zeichnen
|
|
SdView::InitRedraw(pVDev, rReg);
|
|
|
|
// VDev auf Window ausgeben
|
|
pOutDev->DrawOutDev(Point(), pVDev->GetOutputSize(),
|
|
Point(), pVDev->GetOutputSize(), *pVDev);
|
|
|
|
if (IsShownXorVisible(pOutDev))
|
|
{
|
|
// Handles auf Window ausgeben
|
|
ToggleShownXor(pOutDev, &rReg);
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
|
|
/*************************************************************************
|
|
|*
|
|
|* PaintEvents waehrend der Praesentation erlauben oder auch nicht.
|
|
|*
|
|
\************************************************************************/
|
|
|
|
void SdDrawView::AllowPresPaint(BOOL bAllowed)
|
|
{
|
|
if (bAllowed)
|
|
{
|
|
DBG_ASSERT(nPresPaintSmph != 0, "Unterlauf im PaintSemaphor");
|
|
nPresPaintSmph--;
|
|
}
|
|
else
|
|
{
|
|
DBG_ASSERT(nPresPaintSmph + 1 != 0, "Ueberlauf im PaintSemaphor");
|
|
nPresPaintSmph++;
|
|
}
|
|
}
|
|
|
|
/*************************************************************************
|
|
|*
|
|
|* Paint-Event waehrend der Praesenation
|
|
|*
|
|
\************************************************************************/
|
|
|
|
void SdDrawView::PresPaint(const Region& rRegion)
|
|
{
|
|
if (nPresPaintSmph == 0)
|
|
{
|
|
FuSlideShow* pFuSlideShow = pSlideShow;
|
|
|
|
// Paint-Event fuer eine Praesentation im Vollbildmodus oder Fenster?
|
|
if (!pFuSlideShow && pViewSh)
|
|
{
|
|
pFuSlideShow = pViewSh->GetSlideShow();
|
|
}
|
|
// Paint-Event fuer das Preview-Fenster?
|
|
else
|
|
{
|
|
SfxViewFrame* pViewFrm = pDrawViewShell ? pDrawViewShell->GetViewFrame() : NULL;
|
|
SfxChildWindow* pPreviewChildWindow = pViewFrm ?
|
|
pViewFrm->GetChildWindow(SdPreviewChildWindow::GetChildWindowId()) : NULL;
|
|
if (pPreviewChildWindow)
|
|
{
|
|
SdPreviewWin* pPreviewWin =
|
|
(SdPreviewWin*)pPreviewChildWindow->GetWindow();
|
|
if (pPreviewWin && pPreviewWin->GetDoc() == pDoc )
|
|
pFuSlideShow = pPreviewWin->GetSlideShow();
|
|
}
|
|
}
|
|
|
|
SdWindow* pWindow = (SdWindow*)GetWin(0);
|
|
|
|
BOOL bLivePresentation = FALSE;
|
|
|
|
if (pFuSlideShow)
|
|
{
|
|
const ULONG nFuslCacheMode = pFuSlideShow->GetMasterPageCacheMode();
|
|
|
|
bLivePresentation = pFuSlideShow->IsLivePresentation();
|
|
|
|
if( IsMasterPagePaintCaching() && ( nFuslCacheMode != GetMasterPagePaintCacheMode() ) )
|
|
{
|
|
if( nFuslCacheMode == SDR_MASTERPAGECACHE_NONE )
|
|
{
|
|
ReleaseMasterPagePaintCache();
|
|
SetMasterPagePaintCaching( FALSE );
|
|
}
|
|
else
|
|
SetMasterPagePaintCaching( TRUE, nFuslCacheMode );
|
|
}
|
|
}
|
|
|
|
if (!bLivePresentation || IsShownXorVisible(pWindow))
|
|
{
|
|
// Selektionsdarstellung ausblenden
|
|
HideShownXor(pWindow);
|
|
}
|
|
|
|
if (pFuSlideShow &&
|
|
(pFuSlideShow->GetAnimationMode() == ANIMATIONMODE_SHOW ||
|
|
pFuSlideShow->GetAnimationMode() == ANIMATIONMODE_PREVIEW))
|
|
{
|
|
// Schwarzer Hintergrund
|
|
Point aPos(pWindow->PixelToLogic(Point(0,0)));
|
|
Size aSize(pWindow->GetOutputSize());
|
|
Rectangle aRect(aPos, aSize);
|
|
|
|
const Color aBlack(COL_BLACK);
|
|
const Color& rOldColor = pWindow->GetFillColor();
|
|
ULONG nOldDrawMode( pWindow->GetDrawMode() );
|
|
|
|
pWindow->SetDrawMode( DRAWMODE_DEFAULT );
|
|
pWindow->SetFillColor( aBlack );
|
|
pWindow->DrawRect(aRect);
|
|
pWindow->SetFillColor( rOldColor );
|
|
pWindow->SetDrawMode( nOldDrawMode );
|
|
}
|
|
|
|
// Clipping auf angezeigten Seitenbereich
|
|
SdPage* pPage = pDoc->GetSdPage(0, PK_STANDARD);
|
|
BOOL bIsClipRegion = pWindow->IsClipRegion();
|
|
Region aOldClipRegion(pWindow->GetClipRegion());
|
|
|
|
Point aUpperLeft(pPage->GetLftBorder(),
|
|
pPage->GetUppBorder());
|
|
Point aLowerRight(pPage->GetSize().Width() -
|
|
pPage->GetRgtBorder(),
|
|
pPage->GetSize().Height() -
|
|
pPage->GetLwrBorder());
|
|
Rectangle aClipRect(aUpperLeft, aLowerRight);
|
|
|
|
// untere und rechte Pixelreihe nicht darstellen
|
|
Size aPixelSize(pWindow->PixelToLogic(Size(1,1)));
|
|
aClipRect.Bottom() -= aPixelSize.Height();
|
|
aClipRect.Right() -= aPixelSize.Width();
|
|
|
|
Region aClipRegion(aClipRect);
|
|
pWindow->SetClipRegion(aClipRegion);
|
|
|
|
Link aPaintProcLink = LINK(this, SdDrawView, PaintProc);
|
|
SdrPageView* pPageView = GetPageViewPvNum(0);
|
|
|
|
if (pPageView)
|
|
pPageView->InitRedraw((USHORT)0, rRegion, 0, &aPaintProcLink);
|
|
|
|
// altes Clipping restaurieren
|
|
if (bIsClipRegion)
|
|
pWindow->SetClipRegion(aOldClipRegion);
|
|
else
|
|
pWindow->SetClipRegion();
|
|
|
|
if ((bLivePresentation && !IsShownXorVisible(pWindow)) ||
|
|
pSlideShow)
|
|
{
|
|
// Selektionsdarstellung einblenden
|
|
ShowShownXor(pWindow);
|
|
}
|
|
}
|
|
}
|
|
|
|
/*************************************************************************
|
|
|*
|
|
|* Paint-Proc filtert fuer die Praesentation Objekte heraus, die unsichtbar
|
|
|* sind oder anders dargestellt werden muessen.
|
|
|*
|
|
\************************************************************************/
|
|
|
|
IMPL_LINK( SdDrawView, PaintProc, SdrPaintProcRec *, pRecord )
|
|
{
|
|
SdAnimationInfo* pInfo = pDoc->GetAnimationInfo(pRecord->pObj);
|
|
|
|
if( !pRecord->pObj->IsEmptyPresObj() )
|
|
{
|
|
FuSlideShow* pFuSlideShow = pSlideShow;
|
|
|
|
// Paint-Event fuer eine Praesentation im Vollbildmodus oder Fenster?
|
|
if( !pFuSlideShow && pViewSh )
|
|
pFuSlideShow = pViewSh->GetSlideShow();
|
|
else
|
|
{
|
|
// Paint-Event fuer das Preview-Fenster?
|
|
SfxViewFrame* pViewFrm = pDrawViewShell ? pDrawViewShell->GetViewFrame() : NULL;
|
|
SfxChildWindow* pPreviewChildWindow = pViewFrm ?
|
|
pViewFrm->GetChildWindow(SdPreviewChildWindow::GetChildWindowId()) : NULL;
|
|
if (pPreviewChildWindow)
|
|
{
|
|
SdPreviewWin* pPreviewWin =
|
|
(SdPreviewWin*)pPreviewChildWindow->GetWindow();
|
|
if (pPreviewWin && pPreviewWin->GetDoc() == pDoc)
|
|
pFuSlideShow = pPreviewWin->GetSlideShow();
|
|
}
|
|
}
|
|
|
|
const BOOL bPreview = pFuSlideShow->GetAnimationMode() == ANIMATIONMODE_PREVIEW;
|
|
BOOL bDrawn = FALSE;
|
|
|
|
if( bPreview && ( !pInfo || pInfo->bIsShown ) )
|
|
pFuSlideShow->StopTextOrGraphicAnimation( pRecord->pObj, TRUE );
|
|
|
|
if( pInfo && pInfo->bIsShown )
|
|
{
|
|
const BOOL bLive = pFuSlideShow->IsLivePresentation();
|
|
const BOOL bDimmed = pInfo->bDimmed;
|
|
|
|
if( pRecord->pObj == pFuSlideShow->GetLayoutText() )
|
|
{
|
|
pFuSlideShow->PaintLayoutClone(pRecord->rOut.GetOutDev());
|
|
bDrawn = TRUE;
|
|
}
|
|
else if( pInfo->bIsMovie )
|
|
{
|
|
if( bDimmed )
|
|
{
|
|
if( !bLive )
|
|
pFuSlideShow->PaintDimmedObject(((SdrAttrObj*) pRecord->pObj), pRecord->rOut.GetOutDev(), pInfo->aDimColor, TRUE );
|
|
else
|
|
pRecord->pObj->Paint(pRecord->rOut, pRecord->rInfoRec);
|
|
}
|
|
else if( bLive )
|
|
pRecord->pObj->Paint(pRecord->rOut, pRecord->rInfoRec);
|
|
else
|
|
{
|
|
// nur das letzte Bild
|
|
SdrObjList* pObjList = ((SdrObjGroup*)pRecord->pObj)->GetSubList();
|
|
SdrObject* pLast = (SdrObject*)pObjList->GetObj(pObjList->GetObjCount() - 1);
|
|
pLast->Paint(pRecord->rOut, pRecord->rInfoRec);
|
|
}
|
|
|
|
bDrawn = TRUE;
|
|
}
|
|
else if( bDimmed )
|
|
{
|
|
pFuSlideShow->PaintDimmedObject(((SdrAttrObj*)pRecord->pObj), pRecord->rOut.GetOutDev(), pInfo->aDimColor, TRUE );
|
|
bDrawn = TRUE;
|
|
}
|
|
}
|
|
else if( pInfo && !pInfo->bIsShown )
|
|
bDrawn = TRUE;
|
|
|
|
if( !bDrawn )
|
|
{
|
|
const BOOL bGrafAnim = OBJIS_GRAFANIM( pRecord->pObj );
|
|
const BOOL bTextAnim = OBJIS_TEXTANIM( pRecord->pObj );
|
|
|
|
// falls es sich um ein animiertes Objekt handelt,
|
|
// das nicht animiert dargestellt werden soll, muessen
|
|
// wir ein nicht animiertes Clone-Objekt ausgeben
|
|
if( !pFuSlideShow->IsAnimationAllowed() && ( bGrafAnim || bTextAnim ) )
|
|
{
|
|
SdrObject* pClone = pRecord->pObj->Clone();
|
|
|
|
if( bGrafAnim )
|
|
( (SdrGrafObj*) pClone )->SetGraphic( ( (SdrGrafObj*) pRecord->pObj )->GetTransformedGraphic().GetBitmapEx() );
|
|
|
|
if( bTextAnim )
|
|
{
|
|
SfxItemSet aTempAttr( pDoc->GetPool(), SDRATTR_TEXT_ANIKIND, SDRATTR_TEXT_ANIKIND );
|
|
aTempAttr.InvalidateItem( SDRATTR_TEXT_ANIKIND );
|
|
aTempAttr.Put( SdrTextAniKindItem() );
|
|
|
|
//-/ pClone->NbcSetAttributes( aTempAttr, FALSE );
|
|
pClone->SetItemSet(aTempAttr);
|
|
}
|
|
|
|
pClone->Paint( pRecord->rOut, pRecord->rInfoRec );
|
|
delete pClone;
|
|
}
|
|
else
|
|
pRecord->pObj->Paint( pRecord->rOut, pRecord->rInfoRec );
|
|
}
|
|
}
|
|
// das Hintergrundrechteck gibt sich faelschlicherweise als EmptyPresObj
|
|
// aus, das kann auch nicht geaendert werden, da es sonst von anderen
|
|
// Methoden nicht erkannt wird und neue Hintergrundrechtecke erzeugt
|
|
// werden --> sieht aus wie n-faches Redraw des Hintergrunds
|
|
// (siehe auch FuSlideShow::PaintProc)
|
|
else
|
|
{
|
|
SdPage* pPage = (SdPage*)pRecord->pObj->GetPage();
|
|
if (pPage->GetPresObj(PRESOBJ_BACKGROUND) == pRecord->pObj)
|
|
pRecord->pObj->Paint(pRecord->rOut, pRecord->rInfoRec);
|
|
}
|
|
|
|
|
|
return 0;
|
|
}
|
|
|
|
/*************************************************************************
|
|
|* entscheidet, ob ein Objekt markiert werden kann (z. B. noch nicht
|
|
|* erschienene Animationsobjekte in der Diashow)
|
|
\************************************************************************/
|
|
|
|
BOOL SdDrawView::IsObjMarkable(SdrObject* pObj, SdrPageView* pPV) const
|
|
{
|
|
// erstmal die DrawingEngine pruefen lassen (gesperrter oder unsichtbarer
|
|
// Layer usw.)
|
|
BOOL bResult = FmFormView::IsObjMarkable(pObj, pPV);
|
|
|
|
// wenn die DrawingEngine ihr OK gibt, pruefen wir noch nach weiteren
|
|
// Kriterien, die sie nicht kennen kann;
|
|
// dies ist nur fuer die Praesentation interessant (pViewSh != NULL);
|
|
// in der Preview kann sowieso niemand selektieren
|
|
if (bResult && pViewSh)
|
|
{
|
|
FuSlideShow* pFuSlideShow = pSlideShow;
|
|
|
|
// Paint-Event fuer eine Praesentation im Vollbildmodus oder Fenster?
|
|
if (!pFuSlideShow && pViewSh)
|
|
{
|
|
pFuSlideShow = pViewSh->GetSlideShow();
|
|
}
|
|
|
|
if (pFuSlideShow)
|
|
{
|
|
SdAnimationInfo* pInfo = pDoc->GetAnimationInfo(pObj);
|
|
if (pInfo)
|
|
{
|
|
if (!pInfo->bIsShown)
|
|
bResult = FALSE;
|
|
}
|
|
else
|
|
{
|
|
if (pObj->IsEmptyPresObj())
|
|
bResult = FALSE;
|
|
}
|
|
}
|
|
}
|
|
return bResult;
|
|
}
|
|
|
|
/*************************************************************************
|
|
|*
|
|
|* Pixelmodus ein- oder ausschalten
|
|
|*
|
|
\************************************************************************/
|
|
|
|
void SdDrawView::SetPixelMode(BOOL bOn)
|
|
{
|
|
if (bPixelMode != bOn)
|
|
{
|
|
bPixelMode = bOn;
|
|
|
|
// Sollte der Pixelmode mal aktiv werden, sollte die FieldUnit nicht
|
|
// mehr von der SFX_APP sondern mit SD_MOD()->GetOptions()->GetMetric()
|
|
// besorgt werden (SOLL 364 i) !!!
|
|
|
|
/**********************************************************************
|
|
* Default-Units
|
|
**********************************************************************/
|
|
MapUnit eMapUnit = MAP_100TH_MM;
|
|
FieldUnit eFieldUnit = FUNIT_100TH_MM;
|
|
SfxMapUnit eSfxMapUnit = SFX_MAPUNIT_100TH_MM;
|
|
|
|
if (bPixelMode)
|
|
{
|
|
/******************************************************************
|
|
* Units fuer Pixelmodus
|
|
******************************************************************/
|
|
eMapUnit = MAP_PIXEL;
|
|
eFieldUnit = FUNIT_CUSTOM; // Pixel gibt es noch nicht
|
|
eSfxMapUnit = SFX_MAPUNIT_PIXEL;
|
|
}
|
|
|
|
/**********************************************************************
|
|
* Units setzen
|
|
**********************************************************************/
|
|
pDoc->SetScaleUnit(eMapUnit);
|
|
pDoc->SetUIUnit(eFieldUnit);
|
|
pDoc->GetItemPool().SetDefaultMetric(eSfxMapUnit);
|
|
|
|
MapMode aMapMode = pDocSh->GetFrame()->GetWindow().GetMapMode();
|
|
aMapMode.SetMapUnit(eMapUnit);
|
|
pDocSh->GetFrame()->GetWindow().SetMapMode(aMapMode);
|
|
|
|
for (USHORT nWin = 0; nWin < GetWinCount(); nWin++)
|
|
{
|
|
OutputDevice* pOutDev = GetWin(nWin);
|
|
|
|
if (pOutDev && pOutDev->GetOutDevType() == OUTDEV_WINDOW)
|
|
{
|
|
MapMode aSrcMapMode = pOutDev->GetMapMode();
|
|
// MapUnit aSrcMapUnit = aSrcMapMode.GetMapUnit();
|
|
//
|
|
// Point aOrigin = pOutDev->LogicToLogic(aSrcMapMode.GetOrigin(),
|
|
// aSrcMapUnit, eMapUnit);
|
|
// Fraction aScaleX = pOutDev->LogicToLogic(aSrcMapMode.GetScaleX(),
|
|
// aSrcMapUnit, eMapUnit);
|
|
// Fraction aScaleY = pOutDev->LogicToLogic(aSrcMapMode.GetScaleY(),
|
|
// aSrcMapUnit, eMapUnit);
|
|
// aSrcMapMode.SetOrigin(aOrigin);
|
|
// aSrcMapMode.SetScaleX(aScaleX);
|
|
// aSrcMapMode.SetScaleY(aScaleY);
|
|
|
|
aSrcMapMode.SetMapUnit(eMapUnit);
|
|
pOutDev->SetMapMode(aSrcMapMode);
|
|
}
|
|
}
|
|
|
|
/**********************************************************************
|
|
* Windows initialisieren und auf Seitengoesse zoomen
|
|
**********************************************************************/
|
|
Size aPageSize = pDrawViewShell->GetActualPage()->GetSize();
|
|
Point aPageOrg = Point(aPageSize.Width(), aPageSize.Height() / 2);
|
|
Size aViewSize = Size(aPageSize.Width() * 3, aPageSize.Height() * 2);
|
|
pViewSh->InitWindows(aPageOrg, aViewSize, Point(-1, -1));
|
|
pViewSh->GetViewFrame()->GetDispatcher()->Execute(SID_SIZE_PAGE);
|
|
}
|
|
}
|
|
|
|
|
|
|
|
/*************************************************************************
|
|
|*
|
|
|* Uebergebenen Bereich sichtbar machen (es wird ggf. gescrollt)
|
|
|*
|
|
\************************************************************************/
|
|
|
|
void SdDrawView::MakeVisible(const Rectangle& rRect, Window& rWin)
|
|
{
|
|
if (!rRect.IsEmpty())
|
|
{
|
|
pDrawViewShell->MakeVisible(rRect, rWin);
|
|
}
|
|
}
|
|
|
|
|
|
/*************************************************************************
|
|
|*
|
|
|* Animations-Modus starten
|
|
|*
|
|
\************************************************************************/
|
|
|
|
void SdDrawView::SetAnimationMode(BOOL bStart)
|
|
{
|
|
if (!pSlideShow || !bStart || pDrawViewShell->GetEditMode() != EM_MASTERPAGE)
|
|
{
|
|
// Verhindern, dass im EM_MASTERPAGE die Show mehrfach gestartet wird
|
|
|
|
if( pSlideShow )
|
|
{
|
|
pSlideShow->Destroy();
|
|
pSlideShow = NULL;
|
|
}
|
|
|
|
if (bStart)
|
|
{
|
|
// Aktuelle Einstellungen merken
|
|
pViewSh->WriteFrameViewData();
|
|
|
|
// SlideShow erzeugen
|
|
SfxAllItemSet aSet(pDoc->GetItemPool());
|
|
{
|
|
SfxBoolItem aBitem(ATTR_PRESENT_ALL, FALSE);
|
|
aSet.Put(aBitem, aBitem.Which());
|
|
}
|
|
SdPage* pPage = (SdPage*) GetPageViewPvNum(0)->GetPage();
|
|
SfxStringItem aSitem(ATTR_PRESENT_DIANAME, pPage->GetName());
|
|
aSet.Put(aSitem, aSitem.Which());
|
|
{
|
|
SfxBoolItem aBitem(ATTR_PRESENT_ENDLESS, FALSE);
|
|
aSet.Put(aBitem, aBitem.Which());
|
|
}
|
|
{
|
|
SfxBoolItem aBitem(ATTR_PRESENT_MANUEL, TRUE);
|
|
aSet.Put(aBitem, aBitem.Which());
|
|
}
|
|
{
|
|
SfxBoolItem aBitem(ATTR_PRESENT_MOUSE, TRUE);
|
|
aSet.Put(aBitem, aBitem.Which());
|
|
}
|
|
{
|
|
SfxBoolItem aBitem(ATTR_PRESENT_PEN, FALSE);
|
|
aSet.Put(aBitem, aBitem.Which());
|
|
}
|
|
{
|
|
SfxBoolItem aBitem(ATTR_PRESENT_NAVIGATOR, FALSE);
|
|
aSet.Put(aBitem, aBitem.Which());
|
|
}
|
|
{
|
|
SfxBoolItem aBitem(ATTR_PRESENT_CHANGE_PAGE, TRUE);
|
|
aSet.Put(aBitem, aBitem.Which());
|
|
}
|
|
{
|
|
SfxBoolItem aBitem(ATTR_PRESENT_ALWAYS_ON_TOP, FALSE);
|
|
aSet.Put(aBitem, aBitem.Which());
|
|
}
|
|
{
|
|
SfxBoolItem aBitem(ATTR_PRESENT_FULLSCREEN, FALSE);
|
|
aSet.Put(aBitem, aBitem.Which());
|
|
}
|
|
{
|
|
SfxBoolItem aBitem(ATTR_PRESENT_ANIMATION_ALLOWED, TRUE);
|
|
aSet.Put(aBitem, aBitem.Which());
|
|
}
|
|
{
|
|
SfxUInt32Item aUInt32Item(ATTR_PRESENT_PAUSE_TIMEOUT, 0);
|
|
aSet.Put(aUInt32Item, aUInt32Item.Which());
|
|
}
|
|
{
|
|
SfxBoolItem aBitem(ATTR_PRESENT_SHOW_PAUSELOGO, FALSE);
|
|
aSet.Put(aBitem, aBitem.Which());
|
|
}
|
|
|
|
SfxRequest aReq(SID_PRESENTATION, 0, aSet);
|
|
pSlideShow = new FuSlideShow(NULL, NULL, this, pDoc, aReq);
|
|
|
|
// SlideShow starten und aktuellen MapMode setzen
|
|
SdWindow* pWindow = (SdWindow*) GetWin(0);
|
|
MapMode aMapMode = pWindow->GetMapMode();
|
|
pSlideShow->SetAnimationMode(ANIMATIONMODE_VIEW, (SdShowWindow*) pWindow); // CAST IST FALSCH!
|
|
pSlideShow->StartShow();
|
|
pWindow->SetMapMode(aMapMode);
|
|
}
|
|
else if (pViewSh)
|
|
{
|
|
// Einstellungen restaurieren
|
|
pViewSh->ReadFrameViewData(pViewSh->GetFrameView());
|
|
}
|
|
|
|
SdWindow* pWindow = (SdWindow*) GetWin(0);
|
|
pWindow->Invalidate();
|
|
pWindow->Update();
|
|
}
|
|
}
|
|
|
|
|
|
/*************************************************************************
|
|
|*
|
|
|* Objekt animieren
|
|
|*
|
|
\************************************************************************/
|
|
|
|
void SdDrawView::HideAndAnimateObject(SdrObject* pObj)
|
|
{
|
|
if (pSlideShow && !bInAnimation)
|
|
{
|
|
bInAnimation = TRUE;
|
|
SetAnimationEnabled(FALSE);
|
|
|
|
pSlideShow->HideAndAnimateObject(pObj);
|
|
|
|
// im Reschedule des Effekts zerstoert?
|
|
if (nMagic != SDDRAWVIEW_MAGIC)
|
|
{
|
|
return;
|
|
}
|
|
|
|
SetAnimationEnabled(TRUE);
|
|
bInAnimation = FALSE;
|
|
}
|
|
}
|
|
|
|
|
|
/*************************************************************************
|
|
|*
|
|
|* Seite animieren
|
|
|*
|
|
\************************************************************************/
|
|
|
|
void SdDrawView::AnimatePage()
|
|
{
|
|
if (pSlideShow && !bInAnimation)
|
|
{
|
|
bInAnimation = TRUE;
|
|
SetAnimationEnabled(FALSE);
|
|
|
|
pSlideShow->AnimatePage();
|
|
|
|
// im Reschedule des Effekts zerstoert?
|
|
if (nMagic != SDDRAWVIEW_MAGIC)
|
|
{
|
|
return;
|
|
}
|
|
|
|
SetAnimationEnabled(TRUE);
|
|
bInAnimation = FALSE;
|
|
}
|
|
}
|
|
|
|
/*************************************************************************
|
|
|*
|
|
|* Seite wird gehided
|
|
|*
|
|
\************************************************************************/
|
|
|
|
void SdDrawView::HidePage(SdrPageView* pPV)
|
|
{
|
|
if (pDrawViewShell)
|
|
{
|
|
pDrawViewShell->HidePage(pPV);
|
|
}
|
|
|
|
SdView::HidePage(pPV);
|
|
}
|
|
|
|
SdrObject* SdDrawView::GetMaxToBtmObj(SdrObject* pObj) const
|
|
{
|
|
if( pObj )
|
|
{
|
|
SdPage* pPage = (SdPage*)pObj->GetPage();
|
|
if( pPage && pPage->IsMasterPage() )
|
|
return pPage->GetPresObj( PRESOBJ_BACKGROUND ) ;
|
|
}
|
|
return NULL;
|
|
}
|
|
|
|
|