2000-09-18 23:08:29 +00:00
|
|
|
/*************************************************************************
|
|
|
|
*
|
2005-09-09 04:33:08 +00:00
|
|
|
* OpenOffice.org - a multi-platform office productivity suite
|
2000-09-18 23:08:29 +00:00
|
|
|
*
|
2005-09-09 04:33:08 +00:00
|
|
|
* $RCSfile: vnew.cxx,v $
|
2000-09-18 23:08:29 +00:00
|
|
|
*
|
2007-06-26 10:58:26 +00:00
|
|
|
* $Revision: 1.27 $
|
2000-09-18 23:08:29 +00:00
|
|
|
*
|
2007-06-26 10:58:26 +00:00
|
|
|
* last change: $Author: hr $ $Date: 2007-06-26 11:58:26 $
|
2000-09-18 23:08:29 +00:00
|
|
|
*
|
2005-09-09 04:33:08 +00:00
|
|
|
* The Contents of this file are made available subject to
|
|
|
|
* the terms of GNU Lesser General Public License Version 2.1.
|
2000-09-18 23:08:29 +00:00
|
|
|
*
|
|
|
|
*
|
2005-09-09 04:33:08 +00:00
|
|
|
* GNU Lesser General Public License Version 2.1
|
|
|
|
* =============================================
|
|
|
|
* Copyright 2005 by Sun Microsystems, Inc.
|
|
|
|
* 901 San Antonio Road, Palo Alto, CA 94303, USA
|
2000-09-18 23:08:29 +00:00
|
|
|
*
|
2005-09-09 04:33:08 +00:00
|
|
|
* 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.
|
2000-09-18 23:08:29 +00:00
|
|
|
*
|
2005-09-09 04:33:08 +00:00
|
|
|
* 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.
|
2000-09-18 23:08:29 +00:00
|
|
|
*
|
2005-09-09 04:33:08 +00:00
|
|
|
* 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
|
2000-09-18 23:08:29 +00:00
|
|
|
*
|
|
|
|
************************************************************************/
|
|
|
|
|
2006-09-16 21:03:29 +00:00
|
|
|
// MARKER(update_precomp.py): autogen include statement, do not remove
|
|
|
|
#include "precompiled_sw.hxx"
|
|
|
|
|
2000-09-18 23:08:29 +00:00
|
|
|
|
|
|
|
#ifndef _SFX_PRINTER_HXX //autogen
|
|
|
|
#include <sfx2/printer.hxx>
|
|
|
|
#endif
|
2001-07-23 16:20:51 +00:00
|
|
|
#ifndef _RTL_LOGFILE_HXX_
|
|
|
|
#include <rtl/logfile.hxx>
|
|
|
|
#endif
|
2000-09-18 23:08:29 +00:00
|
|
|
#ifndef _DOC_HXX
|
|
|
|
#include <doc.hxx>
|
|
|
|
#endif
|
|
|
|
#ifndef _DOCSH_HXX
|
|
|
|
#include <docsh.hxx>
|
|
|
|
#endif
|
|
|
|
#ifndef _VIEWSH_HXX
|
|
|
|
#include <viewsh.hxx>
|
|
|
|
#endif
|
|
|
|
#ifndef _ROOTFRM_HXX
|
|
|
|
#include <rootfrm.hxx>
|
|
|
|
#endif
|
|
|
|
#ifndef _VIEWIMP_HXX
|
|
|
|
#include <viewimp.hxx>
|
|
|
|
#endif
|
|
|
|
#ifndef _VIEWOPT_HXX
|
|
|
|
#include <viewopt.hxx>
|
|
|
|
#endif
|
|
|
|
#ifndef _TXTFRM_HXX
|
|
|
|
#include <txtfrm.hxx> // Zugriff auf TxtCache
|
|
|
|
#endif
|
|
|
|
#ifndef _NOTXTFRM_HXX
|
|
|
|
#include <notxtfrm.hxx>
|
|
|
|
#endif
|
|
|
|
#ifndef _FNTCACHE_HXX
|
|
|
|
#include <fntcache.hxx>
|
|
|
|
#endif
|
|
|
|
#ifndef _DOCUFLD_HXX
|
|
|
|
#include <docufld.hxx>
|
|
|
|
#endif
|
|
|
|
#ifndef _PTQUEUE_HXX
|
|
|
|
#include <ptqueue.hxx>
|
|
|
|
#endif
|
|
|
|
#ifndef _DVIEW_HXX
|
|
|
|
#include <dview.hxx> // SdrView
|
|
|
|
#endif
|
|
|
|
#ifndef _NDGRF_HXX
|
|
|
|
#include <ndgrf.hxx>
|
|
|
|
#endif
|
|
|
|
#ifndef _NDINDEX_HXX
|
|
|
|
#include <ndindex.hxx>
|
|
|
|
#endif
|
2002-11-01 12:23:37 +00:00
|
|
|
#ifndef _ACCESSIBILITYOPTIONS_HXX
|
|
|
|
#include <accessibilityoptions.hxx>
|
|
|
|
#endif
|
2000-09-18 23:08:29 +00:00
|
|
|
|
2005-03-01 14:11:10 +00:00
|
|
|
|
2000-09-18 23:08:29 +00:00
|
|
|
/*************************************************************************
|
|
|
|
|*
|
|
|
|
|* ViewShell::Init()
|
|
|
|
|*
|
|
|
|
|* Letzte Aenderung MA 14. Jun. 96
|
|
|
|
|*
|
|
|
|
|*************************************************************************/
|
|
|
|
|
|
|
|
void ViewShell::Init( const SwViewOption *pNewOpt )
|
|
|
|
{
|
2001-07-31 15:51:57 +00:00
|
|
|
RTL_LOGFILE_CONTEXT_AUTHOR( aLog, "SW", "JP93722", "ViewShell::Init" );
|
2001-07-23 16:20:51 +00:00
|
|
|
|
2000-09-18 23:08:29 +00:00
|
|
|
bDocSizeChgd = FALSE;
|
|
|
|
|
|
|
|
// Wir gehen auf Nummer sicher:
|
|
|
|
// Wir muessen die alten Fontinformationen wegschmeissen,
|
|
|
|
// wenn die Druckeraufloesung oder der Zoomfaktor sich aendert.
|
|
|
|
// Init() und Reformat() sind die sichersten Stellen.
|
|
|
|
pFntCache->Flush( );
|
|
|
|
|
|
|
|
// ViewOptions werden dynamisch angelegt
|
|
|
|
if( !pOpt )
|
|
|
|
{
|
|
|
|
pOpt = new SwViewOption;
|
|
|
|
|
|
|
|
// Ein ApplyViewOptions braucht nicht gerufen zu werden
|
|
|
|
if( pNewOpt )
|
|
|
|
{
|
|
|
|
*pOpt = *pNewOpt;
|
|
|
|
// Der Zoomfaktor muss eingestellt werden, weil in der CTOR-
|
|
|
|
// phase aus Performancegruenden kein ApplyViewOptions gerufen wird.
|
|
|
|
if( GetWin() && 100 != pOpt->GetZoom() )
|
|
|
|
{
|
|
|
|
MapMode aMode( pWin->GetMapMode() );
|
|
|
|
const Fraction aNewFactor( pOpt->GetZoom(), 100 );
|
|
|
|
aMode.SetScaleX( aNewFactor );
|
|
|
|
aMode.SetScaleY( aNewFactor );
|
|
|
|
pWin->SetMapMode( aMode );
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
SwDocShell* pDShell = pDoc->GetDocShell();
|
2006-08-14 15:59:30 +00:00
|
|
|
pDoc->set(IDocumentSettingAccess::HTML_MODE, 0 != ::GetHtmlMode( pDShell ) );
|
2000-09-18 23:08:29 +00:00
|
|
|
|
|
|
|
// JP 02.02.99: Bug 61335 - Readonly-Flag an den ViewOptions setzen,
|
|
|
|
// bevor das Layout angelegt wird. Ansonsten muesste man
|
|
|
|
// nochmals durchformatieren!!
|
|
|
|
if( pDShell && pDShell->IsReadOnly() )
|
|
|
|
pOpt->SetReadonly( TRUE );
|
|
|
|
|
2001-07-23 16:20:51 +00:00
|
|
|
RTL_LOGFILE_CONTEXT_TRACE( aLog, "View::Init - before InitPrt" );
|
2003-04-01 08:59:44 +00:00
|
|
|
|
2005-03-01 14:11:10 +00:00
|
|
|
// --> FME 2005-01-21 #i41075#
|
|
|
|
// Only setup the printer if we need one:
|
2006-08-14 15:59:30 +00:00
|
|
|
const IDocumentSettingAccess* pIDSA = getIDocumentSettingAccess();
|
|
|
|
const bool bBrowseMode = pIDSA->get(IDocumentSettingAccess::BROWSE_MODE);
|
|
|
|
const bool bCreatePrinter = !bBrowseMode &&
|
|
|
|
!pIDSA->get(IDocumentSettingAccess::USE_VIRTUAL_DEVICE);
|
|
|
|
SfxPrinter* pPrinter = getIDocumentDeviceAccess()->getPrinter( bCreatePrinter );
|
|
|
|
if( pPrinter )
|
|
|
|
InitPrt( pPrinter );
|
2005-03-01 14:11:10 +00:00
|
|
|
// <--
|
2003-04-01 08:59:44 +00:00
|
|
|
|
2005-03-30 09:53:57 +00:00
|
|
|
// --> FME 2005-03-16 #i44963# Good occasion to check if page sizes in
|
|
|
|
// page descriptions are still set to (LONG_MAX, LONG_MAX) (html import)
|
2006-08-14 15:59:30 +00:00
|
|
|
if ( !bBrowseMode )
|
2005-03-30 09:53:57 +00:00
|
|
|
{
|
|
|
|
pDoc->CheckDefaultPageFmt();
|
|
|
|
}
|
|
|
|
// <--
|
|
|
|
|
2001-07-23 16:20:51 +00:00
|
|
|
RTL_LOGFILE_CONTEXT_TRACE( aLog, "View::Init - after InitPrt" );
|
2000-09-18 23:08:29 +00:00
|
|
|
|
|
|
|
if( GetWin() )
|
|
|
|
{
|
|
|
|
pOpt->Init( GetWin() );
|
|
|
|
GetWin()->SetFillColor();
|
|
|
|
GetWin()->SetBackground();
|
|
|
|
GetWin()->SetLineColor();
|
|
|
|
}
|
|
|
|
|
|
|
|
//Layout erzeugen wenn es noch nicht vorhanden ist.
|
|
|
|
SwRootFrm* pRoot = GetDoc()->GetRootFrm();
|
|
|
|
if( !pRoot )
|
|
|
|
GetDoc()->SetRootFrm( pRoot = new SwRootFrm( pDoc->GetDfltFrmFmt(), this ) );
|
|
|
|
|
|
|
|
SizeChgNotify( pRoot->Frm().SSize() );
|
2004-11-16 09:24:29 +00:00
|
|
|
|
|
|
|
// --> #i31958#
|
|
|
|
// XForms mode: initialize XForms mode, based on design mode (draw view)
|
|
|
|
// MakeDrawView() requires layout
|
|
|
|
if( GetDoc()->isXForms() )
|
|
|
|
{
|
|
|
|
if( ! HasDrawView() )
|
|
|
|
MakeDrawView();
|
|
|
|
pOpt->SetFormView( ! GetDrawView()->IsDesignMode() );
|
|
|
|
}
|
|
|
|
// <-- #i31958#
|
2000-09-18 23:08:29 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/*************************************************************************
|
|
|
|
|*
|
|
|
|
|* ViewShell::ViewShell() CTor fuer die erste Shell.
|
|
|
|
|*
|
|
|
|
|* Letzte Aenderung MA 29. Aug. 95
|
|
|
|
|*
|
|
|
|
|*************************************************************************/
|
|
|
|
|
2000-10-25 11:07:02 +00:00
|
|
|
ViewShell::ViewShell( SwDoc& rDocument, Window *pWindow,
|
|
|
|
const SwViewOption *pNewOpt, OutputDevice *pOutput,
|
|
|
|
long nFlags )
|
|
|
|
: pDoc( &rDocument ),
|
2000-09-18 23:08:29 +00:00
|
|
|
pOpt( 0 ),
|
2002-11-01 12:23:37 +00:00
|
|
|
pAccOptions( new SwAccessibilityOptions ),
|
2000-09-18 23:08:29 +00:00
|
|
|
pWin( pWindow ),
|
|
|
|
pOut( pOutput ? pOutput
|
|
|
|
: pWindow ? (OutputDevice*)pWindow
|
2006-08-14 15:59:30 +00:00
|
|
|
: (OutputDevice*)rDocument.getPrinter( true )),
|
2003-06-12 06:40:11 +00:00
|
|
|
mpTmpRef( 0 ),
|
2000-09-18 23:08:29 +00:00
|
|
|
nStartAction( 0 ),
|
|
|
|
nLockPaint( 0 ),
|
2007-01-22 14:11:25 +00:00
|
|
|
mnPrePostPaintCount(0L), // #i72754#
|
|
|
|
mpPrePostOutDev(0), // #i72754#
|
2000-09-18 23:08:29 +00:00
|
|
|
pSfxViewShell( 0 ),
|
|
|
|
pImp( new SwViewImp( this ) ),
|
2007-06-26 10:58:26 +00:00
|
|
|
aBrowseBorder(),
|
|
|
|
mpTargetPaintWindow(0), // #i74769#
|
|
|
|
mpBufferedOut(0) // #i74769#
|
2000-09-18 23:08:29 +00:00
|
|
|
{
|
2001-07-31 15:51:57 +00:00
|
|
|
RTL_LOGFILE_CONTEXT_AUTHOR( aLog, "SW", "JP93722", "ViewShell::SwViewShell" );
|
2001-07-23 16:20:51 +00:00
|
|
|
|
2004-06-28 12:46:47 +00:00
|
|
|
// OD 2004-06-01 #i26791# - in order to suppress event handling in
|
|
|
|
// <SwDrawContact::Changed> during contruction of <ViewShell> instance
|
|
|
|
mbInConstructor = true;
|
|
|
|
|
2000-09-18 23:08:29 +00:00
|
|
|
bPaintInProgress = bViewLocked = bInEndAction = bFrameView =
|
|
|
|
bEndActionByVirDev = FALSE;
|
|
|
|
bPaintWorks = bEnableSmooth = TRUE;
|
|
|
|
bPreView = 0 !=( VSHELLFLAG_ISPREVIEW & nFlags );
|
|
|
|
|
2005-03-10 16:46:45 +00:00
|
|
|
// --> OD 2005-02-11 #i38810# - Do not reset modified state of document,
|
|
|
|
// if it's already been modified.
|
|
|
|
const bool bIsDocModified( pDoc->IsModified() );
|
|
|
|
// <--
|
2006-08-14 15:59:30 +00:00
|
|
|
pDoc->acquire();
|
2000-09-18 23:08:29 +00:00
|
|
|
pOutput = pOut;
|
|
|
|
Init( pNewOpt ); //verstellt ggf. das Outdev (InitPrt())
|
|
|
|
pOut = pOutput;
|
|
|
|
|
2003-04-17 09:14:33 +00:00
|
|
|
// OD 28.03.2003 #108470# - initialize print preview layout after layout
|
|
|
|
// is created in <ViewShell::Init(..)> - called above.
|
|
|
|
if ( bPreView )
|
|
|
|
{
|
|
|
|
// OD 12.12.2002 #103492# - init page preview layout
|
|
|
|
pImp->InitPagePreviewLayout();
|
|
|
|
}
|
|
|
|
|
2000-09-18 23:08:29 +00:00
|
|
|
SET_CURR_SHELL( this );
|
|
|
|
|
|
|
|
((SwHiddenTxtFieldType*)pDoc->GetSysFldType( RES_HIDDENTXTFLD ))->
|
2004-02-26 14:37:17 +00:00
|
|
|
SetHiddenFlag( !pOpt->IsShowHiddenField() );
|
2000-09-18 23:08:29 +00:00
|
|
|
|
|
|
|
//In Init wird ein Standard-FrmFmt angelegt.
|
2005-03-10 16:46:45 +00:00
|
|
|
// --> OD 2005-02-11 #i38810#
|
|
|
|
if ( !pDoc->IsUndoNoResetModified() && !bIsDocModified )
|
|
|
|
// <--
|
|
|
|
{
|
2000-09-18 23:08:29 +00:00
|
|
|
pDoc->ResetModified();
|
2005-03-10 16:46:45 +00:00
|
|
|
}
|
2000-09-18 23:08:29 +00:00
|
|
|
|
|
|
|
//Format-Cache erweitern.
|
|
|
|
if ( SwTxtFrm::GetTxtCache()->GetCurMax() < 2550 )
|
|
|
|
SwTxtFrm::GetTxtCache()->IncreaseMax( 100 );
|
2006-08-14 15:59:30 +00:00
|
|
|
if( pOpt->IsGridVisible() || getIDocumentDrawModelAccess()->GetDrawModel() )
|
2000-09-18 23:08:29 +00:00
|
|
|
Imp()->MakeDrawView();
|
2004-06-28 12:46:47 +00:00
|
|
|
|
|
|
|
// OD 2004-06-01 #i26791#
|
|
|
|
mbInConstructor = false;
|
2000-09-18 23:08:29 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/*************************************************************************
|
|
|
|
|*
|
|
|
|
|* ViewShell::ViewShell() CTor fuer weitere Shells auf ein Dokument.
|
|
|
|
|*
|
|
|
|
|* Letzte Aenderung MA 29. Aug. 95
|
|
|
|
|*
|
|
|
|
|*************************************************************************/
|
|
|
|
|
2000-10-25 11:07:02 +00:00
|
|
|
ViewShell::ViewShell( ViewShell& rShell, Window *pWindow,
|
|
|
|
OutputDevice *pOutput, long nFlags ) :
|
|
|
|
Ring( &rShell ),
|
|
|
|
pDoc( rShell.GetDoc() ),
|
2000-09-18 23:08:29 +00:00
|
|
|
pWin( pWindow ),
|
|
|
|
pOut( pOutput ? pOutput
|
|
|
|
: pWindow ? (OutputDevice*)pWindow
|
2006-08-14 15:59:30 +00:00
|
|
|
: (OutputDevice*)rShell.GetDoc()->getPrinter( true )),
|
2003-06-12 06:40:11 +00:00
|
|
|
mpTmpRef( 0 ),
|
2000-09-18 23:08:29 +00:00
|
|
|
pOpt( 0 ),
|
2002-11-01 12:23:37 +00:00
|
|
|
pAccOptions( new SwAccessibilityOptions ),
|
2000-09-18 23:08:29 +00:00
|
|
|
nStartAction( 0 ),
|
|
|
|
nLockPaint( 0 ),
|
2007-01-22 14:11:25 +00:00
|
|
|
mnPrePostPaintCount(0L), // #i72754#
|
|
|
|
mpPrePostOutDev(0), // #i72754#
|
2000-09-18 23:08:29 +00:00
|
|
|
pSfxViewShell( 0 ),
|
|
|
|
pImp( new SwViewImp( this ) ),
|
2007-06-26 10:58:26 +00:00
|
|
|
aBrowseBorder( rShell.GetBrowseBorder() ),
|
|
|
|
mpTargetPaintWindow(0), // #i74769#
|
|
|
|
mpBufferedOut(0) // #i74769#
|
2000-09-18 23:08:29 +00:00
|
|
|
{
|
2001-07-31 15:51:57 +00:00
|
|
|
RTL_LOGFILE_CONTEXT_AUTHOR( aLog, "SW", "JP93722", "ViewShell::SwViewShell" );
|
2004-06-28 12:46:47 +00:00
|
|
|
|
|
|
|
// OD 2004-06-01 #i26791# - in order to suppress event handling in
|
|
|
|
// <SwDrawContact::Changed> during contruction of <ViewShell> instance
|
|
|
|
mbInConstructor = true;
|
|
|
|
|
2000-09-18 23:08:29 +00:00
|
|
|
bPaintWorks = bEnableSmooth = TRUE;
|
|
|
|
bPaintInProgress = bViewLocked = bInEndAction = bFrameView =
|
|
|
|
bEndActionByVirDev = FALSE;
|
|
|
|
bPreView = 0 !=( VSHELLFLAG_ISPREVIEW & nFlags );
|
2003-03-27 14:45:43 +00:00
|
|
|
// OD 12.12.2002 #103492#
|
2002-12-06 15:25:21 +00:00
|
|
|
if ( bPreView )
|
2003-03-27 14:45:43 +00:00
|
|
|
pImp->InitPagePreviewLayout();
|
2000-09-18 23:08:29 +00:00
|
|
|
|
|
|
|
SET_CURR_SHELL( this );
|
|
|
|
|
2006-08-14 15:59:30 +00:00
|
|
|
pDoc->acquire();
|
2000-09-18 23:08:29 +00:00
|
|
|
BOOL bModified = pDoc->IsModified();
|
|
|
|
|
|
|
|
pOutput = pOut;
|
2000-10-25 11:07:02 +00:00
|
|
|
Init( rShell.GetViewOptions() ); //verstellt ggf. das Outdev (InitPrt())
|
2000-09-18 23:08:29 +00:00
|
|
|
pOut = pOutput;
|
|
|
|
|
|
|
|
((SwHiddenTxtFieldType*)pDoc->GetSysFldType( RES_HIDDENTXTFLD ))->
|
2004-02-26 14:37:17 +00:00
|
|
|
SetHiddenFlag( !pOpt->IsShowHiddenField() );
|
2000-09-18 23:08:29 +00:00
|
|
|
|
|
|
|
// in Init wird ein Standard-FrmFmt angelegt
|
|
|
|
if( !bModified && !pDoc->IsUndoNoResetModified() )
|
|
|
|
pDoc->ResetModified();
|
|
|
|
|
|
|
|
//Format-Cache erweitern.
|
|
|
|
if ( SwTxtFrm::GetTxtCache()->GetCurMax() < 2550 )
|
|
|
|
SwTxtFrm::GetTxtCache()->IncreaseMax( 100 );
|
2006-08-14 15:59:30 +00:00
|
|
|
if( pOpt->IsGridVisible() || getIDocumentDrawModelAccess()->GetDrawModel() )
|
2000-09-18 23:08:29 +00:00
|
|
|
Imp()->MakeDrawView();
|
2004-06-28 12:46:47 +00:00
|
|
|
|
|
|
|
// OD 2004-06-01 #i26791#
|
|
|
|
mbInConstructor = false;
|
|
|
|
|
2000-09-18 23:08:29 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/******************************************************************************
|
|
|
|
|*
|
|
|
|
|* ViewShell::~ViewShell()
|
|
|
|
|*
|
|
|
|
|* Ersterstellung MA ??
|
|
|
|
|* Letzte Aenderung MA 10. May. 95
|
|
|
|
|*
|
|
|
|
******************************************************************************/
|
|
|
|
|
|
|
|
ViewShell::~ViewShell()
|
|
|
|
{
|
|
|
|
{
|
|
|
|
SET_CURR_SHELL( this );
|
|
|
|
bPaintWorks = FALSE;
|
|
|
|
|
2004-09-08 15:13:58 +00:00
|
|
|
// FME 2004-06-21 #i9684# Stopping the animated graphics is not
|
|
|
|
// necessary during printing or pdf export, because the animation
|
|
|
|
// has not been started in this case.
|
|
|
|
if( pDoc && GetWin() )
|
2000-09-18 23:08:29 +00:00
|
|
|
{
|
|
|
|
SwNodes& rNds = pDoc->GetNodes();
|
|
|
|
SwGrfNode *pGNd;
|
|
|
|
|
|
|
|
SwStartNode *pStNd;
|
|
|
|
SwNodeIndex aIdx( *rNds.GetEndOfAutotext().StartOfSectionNode(), 1 );
|
|
|
|
while ( 0 != (pStNd = aIdx.GetNode().GetStartNode()) )
|
|
|
|
{
|
|
|
|
aIdx++;
|
|
|
|
if ( 0 != ( pGNd = aIdx.GetNode().GetGrfNode() ) )
|
|
|
|
{
|
|
|
|
if( pGNd->IsAnimated() )
|
|
|
|
{
|
|
|
|
SwClientIter aIter( *pGNd );
|
|
|
|
for( SwFrm* pFrm = (SwFrm*)aIter.First( TYPE(SwFrm) );
|
|
|
|
pFrm; pFrm = (SwFrm*)aIter.Next() )
|
|
|
|
{
|
|
|
|
ASSERT( pFrm->IsNoTxtFrm(), "GraphicNode with Text?" );
|
|
|
|
((SwNoTxtFrm*)pFrm)->StopAnimation( pOut );
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
aIdx.Assign( *pStNd->EndOfSectionNode(), +1 );
|
|
|
|
}
|
|
|
|
|
|
|
|
GetDoc()->StopNumRuleAnimations( pOut );
|
|
|
|
}
|
|
|
|
|
|
|
|
delete pImp; //Erst loeschen, damit die LayoutViews vernichtet werden.
|
2002-04-11 13:03:47 +00:00
|
|
|
pImp = 0; // Set to zero, because ~SwFrm relies on it.
|
2000-09-18 23:08:29 +00:00
|
|
|
|
|
|
|
if ( pDoc )
|
|
|
|
{
|
2006-08-14 15:59:30 +00:00
|
|
|
if( !pDoc->release() )
|
2000-09-18 23:08:29 +00:00
|
|
|
delete pDoc, pDoc = 0;
|
|
|
|
else
|
|
|
|
pDoc->GetRootFrm()->ResetNewLayout();
|
|
|
|
}
|
|
|
|
|
|
|
|
delete pOpt;
|
|
|
|
|
|
|
|
//Format-Cache zurueckschrauben.
|
|
|
|
if ( SwTxtFrm::GetTxtCache()->GetCurMax() > 250 )
|
|
|
|
SwTxtFrm::GetTxtCache()->DecreaseMax( 100 );
|
|
|
|
|
|
|
|
//Ggf. aus der PaintQueue entfernen lassen
|
|
|
|
SwPaintQueue::Remove( this );
|
|
|
|
|
|
|
|
ASSERT( !nStartAction, "EndAction() pending." );
|
|
|
|
}
|
|
|
|
|
|
|
|
if ( pDoc )
|
|
|
|
GetLayout()->DeRegisterShell( this );
|
|
|
|
|
2003-06-12 06:40:11 +00:00
|
|
|
delete mpTmpRef;
|
2002-11-01 12:23:37 +00:00
|
|
|
delete pAccOptions;
|
2000-09-18 23:08:29 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
const BOOL ViewShell::HasDrawView() const
|
|
|
|
{
|
|
|
|
return Imp()->HasDrawView();
|
|
|
|
}
|
|
|
|
|
|
|
|
void ViewShell::MakeDrawView()
|
|
|
|
{
|
|
|
|
Imp()->MakeDrawView( );
|
|
|
|
}
|
|
|
|
|
|
|
|
SdrView* ViewShell::GetDrawView()
|
|
|
|
{
|
|
|
|
return Imp()->GetDrawView();
|
|
|
|
}
|
|
|
|
|
|
|
|
SdrView* ViewShell::GetDrawViewWithValidMarkList()
|
|
|
|
{
|
|
|
|
SwDrawView* pDView = Imp()->GetDrawView();
|
|
|
|
pDView->ValidateMarkList();
|
|
|
|
return pDView;
|
|
|
|
}
|